diff options
author | palmer@chromium.org <palmer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-08 06:32:23 +0000 |
---|---|---|
committer | palmer@chromium.org <palmer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-08 06:32:23 +0000 |
commit | bc0d7b86f1bb6ed7a4e0374a2c1a4c8182de307c (patch) | |
tree | 6f86b2850f0763210ab249fceafbfb28a6013ead /net/base/ssl_info.h | |
parent | 77d555c7a0984ab10edc3d05016246d932cef2e1 (diff) | |
download | chromium_src-bc0d7b86f1bb6ed7a4e0374a2c1a4c8182de307c.zip chromium_src-bc0d7b86f1bb6ed7a4e0374a2c1a4c8182de307c.tar.gz chromium_src-bc0d7b86f1bb6ed7a4e0374a2c1a4c8182de307c.tar.bz2 |
Revert 150375 - Implement SHA-256 fingerprint support
The HTTP-based Public Key Pinning Internet Draft
(tools.ietf.org/html/draft-ietf-websec-key-pinning) requires this.
Per wtc, give the *Fingeprint* types more meaningful *HashValue* names.
Cleaning up lint along the way.
BUG=117914
TEST=net_unittests, unit_tests TransportSecurityPersisterTest
Review URL: https://chromiumcodereview.appspot.com/10825211
TBR=palmer@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10836150
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150507 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/ssl_info.h')
-rw-r--r-- | net/base/ssl_info.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/net/base/ssl_info.h b/net/base/ssl_info.h index e9c6ea5..b3c37d2 100644 --- a/net/base/ssl_info.h +++ b/net/base/ssl_info.h @@ -71,11 +71,8 @@ class NET_EXPORT SSLInfo { HandshakeType handshake_type; - // The hashes of the SubjectPublicKeyInfos from each certificate in the - // chain. This is a vector of vectors: Index the outer vector with - // FingerprintTag, and then the inner HashValueVectors will be - // fingerprints made with the algorithm named by the FingerprintTag. - std::vector<HashValueVector> public_key_hashes; + // The hashes of the SubjectPublicKeyInfos from each certificate in the chain. + std::vector<SHA1Fingerprint> public_key_hashes; }; } // namespace net |