OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "net/base/cert_verify_proc_win.h" |
| 6 |
| 7 #include "net/base/x509_certificate.h" |
| 8 |
| 9 namespace net { |
| 10 |
| 11 CertVerifyProcWin::CertVerifyProcWin() {} |
| 12 |
| 13 int CertVerifyProcWin::Verify(X509Certificate* cert, |
| 14 const std::string& hostname, |
| 15 int flags, |
| 16 CRLSet* crl_set, |
| 17 CertVerifyResult* verify_result) { |
| 18 return cert->Verify(hostname, flags, crl_set, verify_result); |
| 19 } |
| 20 |
| 21 CertVerifyProcWin::~CertVerifyProcWin() {} |
| 22 |
| 23 } // namespace net |
OLD | NEW |