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

Unified Diff: net/cert/cert_verify_proc_openssl.h

Issue 2862543003: Remove CertVerifyProcOpenSSL. (Closed)
Patch Set: . Created 3 years, 8 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: net/cert/cert_verify_proc_openssl.h
diff --git a/net/cert/cert_verify_proc_openssl.h b/net/cert/cert_verify_proc_openssl.h
deleted file mode 100644
index 5836386c55d85b6084bb1d9fc1e4818b34bb4ae9..0000000000000000000000000000000000000000
--- a/net/cert/cert_verify_proc_openssl.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2012 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 NET_CERT_CERT_VERIFY_PROC_OPENSSL_H_
-#define NET_CERT_CERT_VERIFY_PROC_OPENSSL_H_
-
-#include "net/cert/cert_verify_proc.h"
-
-namespace net {
-
-// Performs certificate path construction and validation using OpenSSL.
-class CertVerifyProcOpenSSL : public CertVerifyProc {
- public:
- CertVerifyProcOpenSSL();
-
- bool SupportsAdditionalTrustAnchors() const override;
- bool SupportsOCSPStapling() const override;
-
- protected:
- ~CertVerifyProcOpenSSL() override;
-
- private:
- int VerifyInternal(X509Certificate* cert,
- const std::string& hostname,
- const std::string& ocsp_response,
- int flags,
- CRLSet* crl_set,
- const CertificateList& additional_trust_anchors,
- CertVerifyResult* verify_result) override;
-};
-
-} // namespace net
-
-#endif // NET_CERT_CERT_VERIFY_PROC_OPENSSL_H_

Powered by Google App Engine
This is Rietveld 408576698