Chromium Code Reviews| Index: net/base/ssl_info.h |
| =================================================================== |
| --- net/base/ssl_info.h (revision 151057) |
| +++ net/base/ssl_info.h (working copy) |
| @@ -71,8 +71,11 @@ |
| HandshakeType handshake_type; |
| - // The hashes of the SubjectPublicKeyInfos from each certificate in the chain. |
| - std::vector<SHA1Fingerprint> public_key_hashes; |
| + // 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. |
|
Ryan Sleevi
2012/08/11 01:39:55
out of date comment
palmer
2012/08/14 19:40:42
Done.
|
| + std::vector<HashValueVector> public_key_hashes; |
| }; |
| } // namespace net |