Update SHA1_LENGTH -> kSHA1Length to match previous change to SHA256_LENGTH.

(I didn't try and understand or fix why kSHA1Length is in base:: while kSHA256Length is in crypto::.)

BUG=92247
TEST=compiles
Review URL: http://codereview.chromium.org/7972024

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103179 0039d316-1c4b-4281-b951-d872f2087c98


CrOS-Libchrome-Original-Commit: b13b9bdddf305f4992a97508a757600f40232faa
diff --git a/base/sha1.h b/base/sha1.h
index ade46cd..80195ce 100644
--- a/base/sha1.h
+++ b/base/sha1.h
@@ -12,19 +12,16 @@
 
 namespace base {
 
-// This function performs SHA-1 operations.
+// These functions perform SHA-1 operations.
 
-enum {
-  SHA1_LENGTH = 20  // Length in bytes of a SHA-1 hash.
-};
-static const size_t kSHA1Length = 20;  // TODO(pkasting): Replace above w/this
+static const size_t kSHA1Length = 20;  // Length in bytes of a SHA-1 hash.
 
 // Computes the SHA-1 hash of the input string |str| and returns the full
 // hash.
 BASE_EXPORT std::string SHA1HashString(const std::string& str);
 
 // Computes the SHA-1 hash of the |len| bytes in |data| and puts the hash
-// in |hash|. |hash| must be SHA1_LENGTH bytes long.
+// in |hash|. |hash| must be kSHA1Length bytes long.
 BASE_EXPORT void SHA1HashBytes(const unsigned char* data, size_t len,
                                unsigned char* hash);