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

Unified 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: Address wez feedback 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 side-by-side diff with in-line comments
Download patch
Index: blimp/net/exact_match_cert_verifier.h
diff --git a/blimp/net/exact_match_cert_verifier.h b/blimp/net/exact_match_cert_verifier.h
new file mode 100644
index 0000000000000000000000000000000000000000..9e48aba634572337e99d4d0f2b4c895661742599
--- /dev/null
+++ b/blimp/net/exact_match_cert_verifier.h
@@ -0,0 +1,46 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef BLIMP_NET_EXACT_MATCH_CERT_VERIFIER_H_
+#define BLIMP_NET_EXACT_MATCH_CERT_VERIFIER_H_
+
+#include <string>
+
+#include "blimp/net/blimp_net_export.h"
+#include "net/cert/cert_verifier.h"
+
+namespace blimp {
+
+// Checks if the peer certificate is an exact match to the X509 certificate
+// supplied out-of-band by the Blimp Assigner.
+// Rejects all certificates other than the |engine_cert| specified at
+// construction time.
+class BLIMP_NET_EXPORT ExactMatchCertVerifier : public net::CertVerifier {
+ public:
+ // |engine_cert|: The one allowable certificate.
+ explicit ExactMatchCertVerifier(
+ scoped_refptr<net::X509Certificate> engine_cert);
+
+ ~ExactMatchCertVerifier() override;
+
+ // net::CertVerifier implementation.
+ int Verify(net::X509Certificate* cert,
+ const std::string&,
+ const std::string&,
+ int,
+ net::CRLSet*,
+ net::CertVerifyResult* verify_result,
+ const net::CompletionCallback&,
+ scoped_ptr<net::CertVerifier::Request>*,
+ const net::BoundNetLog&) override;
Ryan Sleevi 2016/02/19 22:56:08 STYLE: https://google.github.io/styleguide/cppguid
Kevin M 2016/02/22 22:53:32 Done.
+
+ private:
+ scoped_refptr<net::X509Certificate> engine_cert_;
+
+ DISALLOW_COPY_AND_ASSIGN(ExactMatchCertVerifier);
+};
+
+} // namespace blimp
+
+#endif // BLIMP_NET_EXACT_MATCH_CERT_VERIFIER_H_

Powered by Google App Engine
This is Rietveld 408576698