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

Unified Diff: blimp/net/exact_match_cert_verifier.cc

Issue 2000503002: Remove the fingerprint and ca_fingerprint from X509Certificate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_cache
Patch Set: Fix IDN test 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 | « no previous file | chrome/browser/safe_browsing/download_protection_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/net/exact_match_cert_verifier.cc
diff --git a/blimp/net/exact_match_cert_verifier.cc b/blimp/net/exact_match_cert_verifier.cc
index 07a569f47d83be8a0780dd93a1bcfe9217aeee31..f5e635859a3c930074e8bc686a25f12d2e4e6391 100644
--- a/blimp/net/exact_match_cert_verifier.cc
+++ b/blimp/net/exact_match_cert_verifier.cc
@@ -20,11 +20,6 @@ ExactMatchCertVerifier::ExactMatchCertVerifier(
: engine_cert_(std::move(engine_cert)) {
DCHECK(engine_cert_);
- net::SHA1HashValue sha1_hash;
- sha1_hash = net::X509Certificate::CalculateFingerprint(
- engine_cert_->os_cert_handle());
- engine_cert_hashes_.push_back(net::HashValue(sha1_hash));
-
net::SHA256HashValue sha256_hash;
sha256_hash = net::X509Certificate::CalculateFingerprint256(
engine_cert_->os_cert_handle());
« no previous file with comments | « no previous file | chrome/browser/safe_browsing/download_protection_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698