| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 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 #ifndef BLIMP_NET_EXACT_MATCH_CERT_VERIFIER_H_ | |
| 6 #define BLIMP_NET_EXACT_MATCH_CERT_VERIFIER_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 #include <vector> | |
| 10 | |
| 11 #include "blimp/net/blimp_net_export.h" | |
| 12 #include "net/cert/cert_verifier.h" | |
| 13 | |
| 14 namespace net { | |
| 15 class HashValue; | |
| 16 } // namespace net | |
| 17 | |
| 18 namespace blimp { | |
| 19 | |
| 20 // Checks if the peer certificate is an exact match to the X.509 certificate | |
| 21 // |engine_cert|, which is specified at class construction time. | |
| 22 class BLIMP_NET_EXPORT ExactMatchCertVerifier : public net::CertVerifier { | |
| 23 public: | |
| 24 // |engine_cert|: The single allowable certificate. | |
| 25 explicit ExactMatchCertVerifier( | |
| 26 scoped_refptr<net::X509Certificate> engine_cert); | |
| 27 | |
| 28 ~ExactMatchCertVerifier() override; | |
| 29 | |
| 30 // net::CertVerifier implementation. | |
| 31 int Verify(net::X509Certificate* cert, | |
| 32 const std::string& hostname, | |
| 33 const std::string& ocsp_response, | |
| 34 int flags, | |
| 35 net::CRLSet* crl_set, | |
| 36 net::CertVerifyResult* verify_result, | |
| 37 const net::CompletionCallback& callback, | |
| 38 scoped_ptr<Request>* out_req, | |
| 39 const net::BoundNetLog& net_log) override; | |
| 40 | |
| 41 private: | |
| 42 scoped_refptr<net::X509Certificate> engine_cert_; | |
| 43 std::vector<net::HashValue> engine_cert_hashes_; | |
| 44 | |
| 45 DISALLOW_COPY_AND_ASSIGN(ExactMatchCertVerifier); | |
| 46 }; | |
| 47 | |
| 48 } // namespace blimp | |
| 49 | |
| 50 #endif // BLIMP_NET_EXACT_MATCH_CERT_VERIFIER_H_ | |
| OLD | NEW |