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

Unified Diff: net/quic/crypto/proof_verifier_chromium.h

Issue 2016143002: Expose when PKP is bypassed in SSLInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make CertVerifyResult Great Again. Created 4 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
« no previous file with comments | « net/http/transport_security_state_unittest.cc ('k') | net/quic/crypto/proof_verifier_chromium.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/proof_verifier_chromium.h
diff --git a/net/quic/crypto/proof_verifier_chromium.h b/net/quic/crypto/proof_verifier_chromium.h
index be50650532df8072f0b6a77e63f443326f35f9ff..fe84992e8663c99b15faed58a7bd1baa8376a8cd 100644
--- a/net/quic/crypto/proof_verifier_chromium.h
+++ b/net/quic/crypto/proof_verifier_chromium.h
@@ -31,6 +31,10 @@ class TransportSecurityState;
class NET_EXPORT_PRIVATE ProofVerifyDetailsChromium
: public ProofVerifyDetails {
public:
+ ProofVerifyDetailsChromium();
+ ProofVerifyDetailsChromium(const ProofVerifyDetailsChromium&);
+ ~ProofVerifyDetailsChromium() override;
+
// ProofVerifyDetails implementation
ProofVerifyDetails* Clone() const override;
@@ -41,6 +45,9 @@ class NET_EXPORT_PRIVATE ProofVerifyDetailsChromium
// TransportSecurityState::PKPState::CheckPublicKeyPins in the event of a
// pinning failure. It is a (somewhat) human-readable string.
std::string pinning_failure_log;
+
+ // True if PKP was bypassed due to a local trust anchor.
+ bool pkp_bypassed;
Ryan Sleevi 2016/06/09 23:32:22 If you added lines 34-36 to default initialize to
davidben 2016/06/10 17:24:23 +1
};
// ProofVerifyContextChromium is the implementation-specific information that a
« no previous file with comments | « net/http/transport_security_state_unittest.cc ('k') | net/quic/crypto/proof_verifier_chromium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698