Skip to content

Commit

Permalink
wolfssl/wolfcrypt/aes.h: fix stray reference to AES_BLOCK_SIZE in def…
Browse files Browse the repository at this point in the history
… for GHASH_ONE_BLOCK().
  • Loading branch information
douzzer committed Dec 21, 2024
1 parent 33a47c1 commit 4ff73b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wolfssl/wolfcrypt/aes.h
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ WOLFSSL_API int wc_AesEaxFree(AesEax* eax);
*/
#define GHASH_ONE_BLOCK(aes, block) \
do { \
xorbuf(AES_TAG(aes), block, AES_BLOCK_SIZE); \
xorbuf(AES_TAG(aes), block, WC_AES_BLOCK_SIZE); \
GMULT_AARCH64(AES_TAG(aes), aes->gcm.H); \
} \
while (0)
Expand Down

0 comments on commit 4ff73b9

Please sign in to comment.