Index: components/webcrypto/algorithms/aes_ctr.cc |
diff --git a/components/webcrypto/algorithms/aes_ctr.cc b/components/webcrypto/algorithms/aes_ctr.cc |
index ff3367fd5c22eda8472574964aacc33dbed46425..9c9892c6cccf0222dc8f6f14470c3936ee6141d1 100644 |
--- a/components/webcrypto/algorithms/aes_ctr.cc |
+++ b/components/webcrypto/algorithms/aes_ctr.cc |
@@ -24,7 +24,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_ctr(); |