| Index: net/cert/cert_verify_proc_mac.cc
|
| diff --git a/net/cert/cert_verify_proc_mac.cc b/net/cert/cert_verify_proc_mac.cc
|
| index bd6d819e702af52ece7e926d4fd1d59d2bc3fd44..269316ce69c4a20f6d674a07b6ea952790262b51 100644
|
| --- a/net/cert/cert_verify_proc_mac.cc
|
| +++ b/net/cert/cert_verify_proc_mac.cc
|
| @@ -382,10 +382,6 @@ void AppendPublicKeyHashes(CFArrayRef chain,
|
| if (!asn1::ExtractSPKIFromDERCert(der_bytes, &spki_bytes))
|
| continue;
|
|
|
| - HashValue sha1(HASH_VALUE_SHA1);
|
| - CC_SHA1(spki_bytes.data(), spki_bytes.size(), sha1.data());
|
| - hashes->push_back(sha1);
|
| -
|
| HashValue sha256(HASH_VALUE_SHA256);
|
| CC_SHA256(spki_bytes.data(), spki_bytes.size(), sha256.data());
|
| hashes->push_back(sha256);
|
|
|