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

Unified Diff: net/ssl/ssl_info.h

Issue 1174073003: Add served cert chain to SSLInfo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update HttpResponseInfo::ssl_info comment Created 5 years, 6 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 fea5e21b834555b6ded5865f31f894417d94ade2..f37b9cc3e508cae03d7b9b219a59b5b569be1034 100644
--- a/net/ssl/ssl_info.h
+++ b/net/ssl/ssl_info.h
@@ -85,6 +85,11 @@ class NET_EXPORT SSLInfo {
// List of SignedCertificateTimestamps and their corresponding validation
// status.
SignedCertificateTimestampAndStatusList signed_certificate_timestamps;
+
+ // The SSL certificate as received by the client. Can be different
+ // from |cert|, which is the chain as built by the client during
+ // validation.
+ scoped_refptr<X509Certificate> unverified_cert;
Ryan Sleevi 2015/06/12 21:14:06 nit: Seems like this might be better up at line 45
estark 2015/06/12 21:20:41 Done.
};
} // namespace net
« net/socket/ssl_client_socket_unittest.cc ('K') | « net/socket/ssl_client_socket_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698