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

Unified Diff: net/cert/cert_verify_result.h

Issue 2100303002: Add OCSPVerifyResult for tracking stapled OCSP responses cross-platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ocsp-date-check
Patch Set: Remaining nits. Created 4 years, 5 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 | « net/cert/cert_verify_proc.cc ('k') | net/cert/cert_verify_result.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/cert_verify_result.h
diff --git a/net/cert/cert_verify_result.h b/net/cert/cert_verify_result.h
index e93d8b06841c6c965b538bbf5502d82c5eebde96..29c0675af3f3141b79d82f9f16170c4b7cbbca40 100644
--- a/net/cert/cert_verify_result.h
+++ b/net/cert/cert_verify_result.h
@@ -10,6 +10,7 @@
#include "base/memory/ref_counted.h"
#include "net/base/net_export.h"
#include "net/cert/cert_status_flags.h"
+#include "net/cert/ocsp_verify_result.h"
#include "net/cert/x509_cert_types.h"
namespace net {
@@ -66,6 +67,9 @@ class NET_EXPORT CertVerifyResult {
// True if a fallback to the common name was used when matching the host
// name, rather than using the subjectAltName.
bool common_name_fallback_used;
+
+ // Verification of stapled OCSP response, if present.
+ OCSPVerifyResult ocsp_result;
};
} // namespace net
« no previous file with comments | « net/cert/cert_verify_proc.cc ('k') | net/cert/cert_verify_result.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698