| Index: chromeos/login/auth/key.cc
|
| diff --git a/chromeos/login/auth/key.cc b/chromeos/login/auth/key.cc
|
| index 099659b99079fbb7ada342973fbdc381a706b16a..02733531240edae5b8be37d2c03d00658e8540bc 100644
|
| --- a/chromeos/login/auth/key.cc
|
| +++ b/chromeos/login/auth/key.cc
|
| @@ -84,7 +84,7 @@ void Key::Transform(KeyType target_key_type, const std::string& salt) {
|
| // Keep only the first half of the hash for 'weak' hashing so that the
|
| // plain text secret cannot be reconstructed even if the hashing is
|
| // reversed.
|
| - secret_ = StringToLowerASCII(base::HexEncode(
|
| + secret_ = base::StringToLowerASCII(base::HexEncode(
|
| reinterpret_cast<const void*>(hash), sizeof(hash) / 2));
|
| break;
|
| }
|
|
|