Skip to content

Commit

Permalink
src: fix typo in crypto_aes.cc
Browse files Browse the repository at this point in the history
concatentated -> concatenated

PR-URL: #36717
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Pooja D P <Pooja.D.P@ibm.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
  • Loading branch information
eltociear authored and danielleadams committed Jan 12, 2021
1 parent 3b64b38 commit d70824f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crypto/crypto_aes.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d70824f

Please sign in to comment.