Index: net/base/x509_certificate.cc |
diff --git a/net/base/x509_certificate.cc b/net/base/x509_certificate.cc |
index 0c52de70ece7aa7bb7e6e44197e1ccd1c6359517..c4a7f5113322d3ba41a1f8fb2b669b5869238b2e 100644 |
--- a/net/base/x509_certificate.cc |
+++ b/net/base/x509_certificate.cc |
@@ -32,16 +32,6 @@ namespace net { |
namespace { |
-// Returns true if this cert fingerprint is the null (all zero) fingerprint. |
-// We use this as a bogus fingerprint value. |
-bool IsNullFingerprint(const SHA1Fingerprint& fingerprint) { |
- for (size_t i = 0; i < arraysize(fingerprint.data); ++i) { |
- if (fingerprint.data[i] != 0) |
- return false; |
- } |
- return true; |
-} |
- |
// Indicates the order to use when trying to decode binary data, which is |
// based on (speculation) as to what will be most common -> least common |
const X509Certificate::Format kFormatDecodePriority[] = { |