| 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_WIN_H_ | 5 #ifndef NET_CERT_CERT_VERIFY_PROC_WIN_H_ |
| 6 #define NET_CERT_CERT_VERIFY_PROC_WIN_H_ | 6 #define NET_CERT_CERT_VERIFY_PROC_WIN_H_ |
| 7 | 7 |
| 8 #include "net/base/net_export.h" |
| 8 #include "net/cert/cert_verify_proc.h" | 9 #include "net/cert/cert_verify_proc.h" |
| 9 | 10 |
| 10 namespace net { | 11 namespace net { |
| 11 | 12 |
| 12 // Performs certificate path construction and validation using Windows' | 13 // Performs certificate path construction and validation using Windows' |
| 13 // CryptoAPI. | 14 // CryptoAPI. |
| 14 class CertVerifyProcWin : public CertVerifyProc { | 15 class NET_EXPORT_PRIVATE CertVerifyProcWin : public CertVerifyProc { |
| 15 public: | 16 public: |
| 16 CertVerifyProcWin(); | 17 CertVerifyProcWin(); |
| 17 | 18 |
| 18 bool SupportsAdditionalTrustAnchors() const override; | 19 bool SupportsAdditionalTrustAnchors() const override; |
| 19 bool SupportsOCSPStapling() const override; | 20 bool SupportsOCSPStapling() const override; |
| 20 | 21 |
| 21 protected: | 22 protected: |
| 22 ~CertVerifyProcWin() override; | 23 ~CertVerifyProcWin() override; |
| 23 | 24 |
| 24 private: | 25 private: |
| 25 int VerifyInternal(X509Certificate* cert, | 26 int VerifyInternal(X509Certificate* cert, |
| 26 const std::string& hostname, | 27 const std::string& hostname, |
| 27 const std::string& ocsp_response, | 28 const std::string& ocsp_response, |
| 28 int flags, | 29 int flags, |
| 29 CRLSet* crl_set, | 30 CRLSet* crl_set, |
| 30 const CertificateList& additional_trust_anchors, | 31 const CertificateList& additional_trust_anchors, |
| 31 CertVerifyResult* verify_result) override; | 32 CertVerifyResult* verify_result) override; |
| 32 }; | 33 }; |
| 33 | 34 |
| 34 } // namespace net | 35 } // namespace net |
| 35 | 36 |
| 36 #endif // NET_CERT_CERT_VERIFY_PROC_WIN_H_ | 37 #endif // NET_CERT_CERT_VERIFY_PROC_WIN_H_ |
| OLD | NEW |