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

Unified Diff: net/base/multi_threaded_cert_verifier.h

Issue 10825211: Implement SHA-256 fingerprint support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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
Index: net/base/multi_threaded_cert_verifier.h
===================================================================
--- net/base/multi_threaded_cert_verifier.h (revision 150170)
+++ net/base/multi_threaded_cert_verifier.h (working copy)
@@ -66,8 +66,8 @@
// Input parameters of a certificate verification request.
struct RequestParams {
- RequestParams(const SHA1Fingerprint& cert_fingerprint_arg,
- const SHA1Fingerprint& ca_fingerprint_arg,
+ RequestParams(const SHA1HashValue& cert_fingerprint_arg,
+ const SHA1HashValue& ca_fingerprint_arg,
const std::string& hostname_arg,
int flags_arg)
: cert_fingerprint(cert_fingerprint_arg),
@@ -92,8 +92,8 @@
return hostname < other.hostname;
}
- SHA1Fingerprint cert_fingerprint;
- SHA1Fingerprint ca_fingerprint;
+ SHA1HashValue cert_fingerprint;
+ SHA1HashValue ca_fingerprint;
std::string hostname;
int flags;
};

Powered by Google App Engine
This is Rietveld 408576698