OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CERT_CERT_VERIFY_PROC_NSS_H_ | 5 #ifndef NET_CERT_CERT_VERIFY_PROC_NSS_H_ |
6 #define NET_CERT_CERT_VERIFY_PROC_NSS_H_ | 6 #define NET_CERT_CERT_VERIFY_PROC_NSS_H_ |
7 | 7 |
8 #include <certt.h> | |
9 | |
8 #include "net/base/net_export.h" | 10 #include "net/base/net_export.h" |
9 #include "net/cert/cert_verify_proc.h" | 11 #include "net/cert/cert_verify_proc.h" |
10 | 12 |
11 namespace net { | 13 namespace net { |
12 | 14 |
13 // Performs certificate path construction and validation using NSS's libpkix. | 15 // Performs certificate path construction and validation using NSS's libpkix. |
14 class NET_EXPORT_PRIVATE CertVerifyProcNSS : public CertVerifyProc { | 16 class NET_EXPORT_PRIVATE CertVerifyProcNSS : public CertVerifyProc { |
15 public: | 17 public: |
16 CertVerifyProcNSS(); | 18 CertVerifyProcNSS(); |
19 explicit CertVerifyProcNSS(CERTChainVerifyCallback* chain_verify_callback); | |
Ryan Sleevi
2014/01/22 00:46:59
Documentation.
mattm
2014/01/24 04:47:31
Done.
| |
17 | 20 |
18 virtual bool SupportsAdditionalTrustAnchors() const OVERRIDE; | 21 virtual bool SupportsAdditionalTrustAnchors() const OVERRIDE; |
19 | 22 |
20 protected: | 23 protected: |
21 virtual ~CertVerifyProcNSS(); | 24 virtual ~CertVerifyProcNSS(); |
22 | 25 |
23 private: | 26 private: |
24 virtual int VerifyInternal(X509Certificate* cert, | 27 virtual int VerifyInternal(X509Certificate* cert, |
25 const std::string& hostname, | 28 const std::string& hostname, |
26 int flags, | 29 int flags, |
27 CRLSet* crl_set, | 30 CRLSet* crl_set, |
28 const CertificateList& additional_trust_anchors, | 31 const CertificateList& additional_trust_anchors, |
29 CertVerifyResult* verify_result) OVERRIDE; | 32 CertVerifyResult* verify_result) OVERRIDE; |
33 | |
34 CERTChainVerifyCallback* chain_verify_callback_; | |
30 }; | 35 }; |
31 | 36 |
32 } // namespace net | 37 } // namespace net |
33 | 38 |
34 #endif // NET_CERT_CERT_VERIFY_PROC_NSS_H_ | 39 #endif // NET_CERT_CERT_VERIFY_PROC_NSS_H_ |
OLD | NEW |