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

Unified Diff: net/ssl/ssl_info.h

Issue 949633002: Include both certificate chains in invalid cert reporting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add a comment to cert logger pb Created 5 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: net/ssl/ssl_info.h
diff --git a/net/ssl/ssl_info.h b/net/ssl/ssl_info.h
index 154c4a0e901bbfd8b60e73b99e35e6297c8f8e96..43ae22c3d0c290a3be777d6d9ce417694768a8c4 100644
--- a/net/ssl/ssl_info.h
+++ b/net/ssl/ssl_info.h
@@ -48,6 +48,10 @@ class NET_EXPORT SSLInfo {
// The SSL certificate.
scoped_refptr<X509Certificate> cert;
+ // The SSL certificate with unverified certificate chain as sent by
+ // the server.
+ scoped_refptr<X509Certificate> unverified_server_cert;
Ryan Sleevi 2015/02/25 23:15:41 the _server_ seems redundant here.
Ryan Sleevi 2015/02/25 23:15:41 There's a problem here, which is that HttpResponse
+
// Bitmask of status info of |cert|, representing, for example, known errors
// and extended validation (EV) status.
// See cert_status_flags.h for values.

Powered by Google App Engine
This is Rietveld 408576698