From 955093110ad64d5ec6f5426991efaa4a680b5d6f Mon Sep 17 00:00:00 2001 From: brettw Date: Thu, 16 Jul 2015 16:57:33 -0700 Subject: Remove legacy StartsWithASCII function. This replaces it with base::StartsWith and the appropriate case flag. Since the existing version only ever did case-insensitive tests in ASCII, there should be no behavior change. BUG=506255 TBR=jam Review URL: https://codereview.chromium.org/1242023005 Cr-Commit-Position: refs/heads/master@{#339175} --- components/proximity_auth/cryptauth/fake_secure_message_delegate.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'components/proximity_auth') diff --git a/components/proximity_auth/cryptauth/fake_secure_message_delegate.cc b/components/proximity_auth/cryptauth/fake_secure_message_delegate.cc index d05361c..4251e19 100644 --- a/components/proximity_auth/cryptauth/fake_secure_message_delegate.cc +++ b/components/proximity_auth/cryptauth/fake_secure_message_delegate.cc @@ -76,7 +76,8 @@ bool Verify(const std::string& signature, signing_key = key; } else { std::string prefix = kPrivateKeyPrefix; - bool is_private_key = base::StartsWithASCII(key, prefix, true); + bool is_private_key = + base::StartsWith(key, prefix, base::CompareCase::SENSITIVE); signing_key = is_private_key ? key.substr(prefix.size()) : prefix + key; } @@ -113,7 +114,7 @@ void FakeSecureMessageDelegate::DeriveKey(const std::string& private_key, // private key so it is equal to its corresponding public key. std::string prefix(kPrivateKeyPrefix); std::string normalized_private_key = - base::StartsWithASCII(private_key, prefix, true) + base::StartsWith(private_key, prefix, base::CompareCase::SENSITIVE) ? private_key.substr(prefix.size()) : private_key; -- cgit v1.1