mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 02:37:28 +02:00
wolfssl/wolfcrypt/aes.h: fix stray reference to AES_BLOCK_SIZE in def for GHASH_ONE_BLOCK().
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user