From 86884c8e33735abe27885528ade99edd50de8102 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Fri, 1 Jan 2021 17:23:23 +0900 Subject: [PATCH] src: fix typo in crypto_aes.cc concatentated -> concatenated --- src/crypto/crypto_aes.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/crypto_aes.cc b/src/crypto/crypto_aes.cc index 584839e813e570..edca8fbd0dcb5c 100644 --- a/src/crypto/crypto_aes.cc +++ b/src/crypto/crypto_aes.cc @@ -102,7 +102,7 @@ WebCryptoCipherStatus AES_Cipher( // In decrypt mode, we grab the tag length here. We'll use it to // ensure that that allocated buffer has enough room for both the // final block and the auth tag. Unlike our other AES-GCM implementation - // in CipherBase, in WebCrypto, the auth tag is concatentated to the end + // in CipherBase, in WebCrypto, the auth tag is concatenated to the end // of the generated ciphertext and returned in the same ArrayBuffer. tag_len = params.length; break;