| // Copyright 2016 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef NET_TOOLS_CERT_VERIFY_TOOL_VERIFY_USING_CERT_VERIFY_PROC_H_ |
| #define NET_TOOLS_CERT_VERIFY_TOOL_VERIFY_USING_CERT_VERIFY_PROC_H_ |
| |
| #include <string> |
| #include <vector> |
| |
| namespace base { |
| class FilePath; |
| } |
| |
| namespace net { |
| class CertVerifyProc; |
| class CRLSet; |
| class CertVerifyResult; |
| } |
| |
| struct CertInput; |
| |
| void PrintCertVerifyResult(const net::CertVerifyResult& result); |
| |
| // Verifies |target_der_cert| using |cert_verify_proc|. Returns true if the |
| // certificate verified successfully, false if it failed to verify or there was |
| // some other error. |
| // Informational messages will be printed to stdout/stderr as appropriate. |
| bool VerifyUsingCertVerifyProc( |
| net::CertVerifyProc* cert_verify_proc, |
| const CertInput& target_der_cert, |
| const std::string& hostname, |
| const std::vector<CertInput>& intermediate_der_certs, |
| const std::vector<CertInput>& root_der_certs, |
| net::CRLSet* crl_set, |
| const base::FilePath& dump_path); |
| |
| #endif // NET_TOOLS_CERT_VERIFY_TOOL_VERIFY_USING_CERT_VERIFY_PROC_H_ |