| Index: crypto/hmac_unittest.cc
|
| diff --git a/crypto/hmac_unittest.cc b/crypto/hmac_unittest.cc
|
| index 1978705934daa1ed563be12387adf8cfab637442..f5d99067ed7d327c8102d628239cf621cecc347f 100644
|
| --- a/crypto/hmac_unittest.cc
|
| +++ b/crypto/hmac_unittest.cc
|
| @@ -221,6 +221,10 @@ TEST(HMACTest, NSSFIPSPowerUpSelfTest) {
|
| message_data,
|
| base::StringPiece(reinterpret_cast<const char*>(kKnownHMACSHA1),
|
| kSHA1DigestSize)));
|
| + EXPECT_TRUE(hmac.VerifyTruncated(
|
| + message_data,
|
| + base::StringPiece(reinterpret_cast<const char*>(kKnownHMACSHA1),
|
| + kSHA1DigestSize / 2)));
|
|
|
| crypto::HMAC hmac2(crypto::HMAC::SHA256);
|
| ASSERT_TRUE(hmac2.Init(kKnownSecretKey, kKnownSecretKeySize));
|
|
|