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

Unified Diff: net/cert/cert_verify_proc.h

Issue 1042973002: Implement the ability to whitelist certs from specific issuers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « no previous file | net/cert/cert_verify_proc.cc » ('j') | net/cert/cert_verify_proc.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/cert_verify_proc.h
diff --git a/net/cert/cert_verify_proc.h b/net/cert/cert_verify_proc.h
index f60ed6d9232631f1ae2e0fcefb27a373bfe20d08..482d771c5b9dcda9b7a746181e3c8e1b09f604a8 100644
--- a/net/cert/cert_verify_proc.h
+++ b/net/cert/cert_verify_proc.h
@@ -112,6 +112,12 @@ class NET_EXPORT CertVerifyProc
// (i.e. by 1 July 2019).
static bool HasTooLongValidity(const X509Certificate& cert);
+ // IsNonWhitelistedCert returns true iff the issuer of |cert| (as contained
+ // in |hashes|) has been constrained to a whitelist of subject certificates,
+ // and |cert| is not in that whitelist.
+ static bool IsNonWhitelistedCert(const X509Certificate& cert,
+ const HashValueVector& hashes);
+
DISALLOW_COPY_AND_ASSIGN(CertVerifyProc);
};
« no previous file with comments | « no previous file | net/cert/cert_verify_proc.cc » ('j') | net/cert/cert_verify_proc.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698