| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_QUIC_CRYPTO_PROOF_VERIFIER_CHROMIUM_H_ | 5 #ifndef NET_QUIC_CRYPTO_PROOF_VERIFIER_CHROMIUM_H_ |
| 6 #define NET_QUIC_CRYPTO_PROOF_VERIFIER_CHROMIUM_H_ | 6 #define NET_QUIC_CRYPTO_PROOF_VERIFIER_CHROMIUM_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 class CertPolicyEnforcer; | 24 class CertPolicyEnforcer; |
| 25 class CertVerifier; | 25 class CertVerifier; |
| 26 class CTVerifier; | 26 class CTVerifier; |
| 27 class TransportSecurityState; | 27 class TransportSecurityState; |
| 28 | 28 |
| 29 // ProofVerifyDetailsChromium is the implementation-specific information that a | 29 // ProofVerifyDetailsChromium is the implementation-specific information that a |
| 30 // ProofVerifierChromium returns about a certificate verification. | 30 // ProofVerifierChromium returns about a certificate verification. |
| 31 class NET_EXPORT_PRIVATE ProofVerifyDetailsChromium | 31 class NET_EXPORT_PRIVATE ProofVerifyDetailsChromium |
| 32 : public ProofVerifyDetails { | 32 : public ProofVerifyDetails { |
| 33 public: | 33 public: |
| 34 ProofVerifyDetailsChromium(); |
| 34 | 35 |
| 35 // ProofVerifyDetails implementation | 36 // ProofVerifyDetails implementation |
| 36 ProofVerifyDetails* Clone() const override; | 37 ProofVerifyDetails* Clone() const override; |
| 37 | 38 |
| 38 CertVerifyResult cert_verify_result; | 39 CertVerifyResult cert_verify_result; |
| 39 ct::CTVerifyResult ct_verify_result; | 40 ct::CTVerifyResult ct_verify_result; |
| 40 | 41 |
| 41 // pinning_failure_log contains a message produced by | 42 // pinning_failure_log contains a message produced by |
| 42 // TransportSecurityState::PKPState::CheckPublicKeyPins in the event of a | 43 // TransportSecurityState::PKPState::CheckPublicKeyPins in the event of a |
| 43 // pinning failure. It is a (somewhat) human-readable string. | 44 // pinning failure. It is a (somewhat) human-readable string. |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 92 |
| 92 TransportSecurityState* const transport_security_state_; | 93 TransportSecurityState* const transport_security_state_; |
| 93 CTVerifier* const cert_transparency_verifier_; | 94 CTVerifier* const cert_transparency_verifier_; |
| 94 | 95 |
| 95 DISALLOW_COPY_AND_ASSIGN(ProofVerifierChromium); | 96 DISALLOW_COPY_AND_ASSIGN(ProofVerifierChromium); |
| 96 }; | 97 }; |
| 97 | 98 |
| 98 } // namespace net | 99 } // namespace net |
| 99 | 100 |
| 100 #endif // NET_QUIC_CRYPTO_PROOF_VERIFIER_CHROMIUM_H_ | 101 #endif // NET_QUIC_CRYPTO_PROOF_VERIFIER_CHROMIUM_H_ |
| OLD | NEW |