Index: components/webcrypto/algorithms/aes_cbc_unittest.cc |
diff --git a/components/webcrypto/algorithms/aes_cbc_unittest.cc b/components/webcrypto/algorithms/aes_cbc_unittest.cc |
index 657c4a4c4325ee5f6c9f1a74464c050f04cff1f3..2aec041799636bcc0f61214ce7c80be9a36ef3b5 100644 |
--- a/components/webcrypto/algorithms/aes_cbc_unittest.cc |
+++ b/components/webcrypto/algorithms/aes_cbc_unittest.cc |
@@ -394,7 +394,7 @@ TEST_F(WebCryptoAesCbcTest, ImportExportJwk) { |
"A256CBC"); |
} |
-// AES 192-bit is not allowed: http://crbug.com/381829 |
+// 192-bit AES is intentionally unsupported (http://crbug.com/533699). |
TEST_F(WebCryptoAesCbcTest, GenerateAesCbc192) { |
blink::WebCryptoKey key; |
Status status = GenerateSecretKey(CreateAesCbcKeyGenAlgorithm(192), true, |
@@ -402,7 +402,7 @@ TEST_F(WebCryptoAesCbcTest, GenerateAesCbc192) { |
ASSERT_EQ(Status::ErrorAes192BitUnsupported(), status); |
} |
-// AES 192-bit is not allowed: http://crbug.com/381829 |
+// 192-bit AES is intentionally unsupported (http://crbug.com/533699). |
TEST_F(WebCryptoAesCbcTest, UnwrapAesCbc192) { |
std::vector<uint8_t> wrapping_key_data(16, 0); |
std::vector<uint8_t> wrapped_key = HexStringToBytes( |