Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(413)

Side by Side Diff: blimp/net/exact_match_cert_verifier.h

Issue 1696563002: Blimp: add support for SSL connections. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated "running.md" Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
10 #include "blimp/net/blimp_net_export.h"
11 #include "net/cert/cert_verifier.h"
12
13 namespace blimp {
14
15 // Checks if the peer certificate is an exact match to the X.509 certificate
16 // |engine_cert|, which is specified at class construction time.
17 class BLIMP_NET_EXPORT ExactMatchCertVerifier : public net::CertVerifier {
18 public:
19 // |engine_cert|: The single allowable certificate.
20 explicit ExactMatchCertVerifier(
21 scoped_refptr<net::X509Certificate> engine_cert);
22
23 ~ExactMatchCertVerifier() override;
24
25 // net::CertVerifier implementation.
26 int Verify(net::X509Certificate* cert,
27 const std::string& hostname,
28 const std::string& ocsp_response,
29 int flags,
30 net::CRLSet* crl_set,
31 net::CertVerifyResult* verify_result,
32 const net::CompletionCallback& callback,
33 scoped_ptr<Request>* out_req,
34 const net::BoundNetLog& net_log) override;
35
36 private:
37 scoped_refptr<net::X509Certificate> engine_cert_;
38
39 DISALLOW_COPY_AND_ASSIGN(ExactMatchCertVerifier);
40 };
41
42 } // namespace blimp
43
44 #endif // BLIMP_NET_EXACT_MATCH_CERT_VERIFIER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698