Index: components/webcrypto/algorithms/aes_cbc.cc |
diff --git a/components/webcrypto/algorithms/aes_cbc.cc b/components/webcrypto/algorithms/aes_cbc.cc |
index 5c45c3091d63529d7d258fade06e04ffafcd03ef..849f181716c74a0cdd1adb42efef4e52047c9c5f 100644 |
--- a/components/webcrypto/algorithms/aes_cbc.cc |
+++ b/components/webcrypto/algorithms/aes_cbc.cc |
@@ -23,7 +23,7 @@ namespace webcrypto { |
namespace { |
const EVP_CIPHER* GetAESCipherByKeyLength(size_t key_length_bytes) { |
- // BoringSSL does not support 192-bit AES keys. |
+ // 192-bit AES is intentionally unsupported (http://crbug.com/533699). |
switch (key_length_bytes) { |
case 16: |
return EVP_aes_128_cbc(); |