Skip to content

Commit

Permalink
wolfcrypt/src/aes.c: add missing WOLFSSL_ARMASM gate clause around wo…
Browse files Browse the repository at this point in the history
…lfCrypt_FIPS_aes_ro_sanity, necessitated by 514a92d/wolfSSL#8293.
  • Loading branch information
douzzer committed Dec 17, 2024
1 parent 7b57ef4 commit f23a2f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wolfcrypt/src/aes.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ block cipher mechanism that uses n-bit binary string parameter key with 128-bits
#pragma warning(disable: 4127)
#endif

#if FIPS_VERSION3_GE(6,0,0)
#if !defined(WOLFSSL_ARMASM) && FIPS_VERSION3_GE(6,0,0)
const unsigned int wolfCrypt_FIPS_aes_ro_sanity[2] =
{ 0x1a2b3c4d, 0x00000002 };
int wolfCrypt_FIPS_AES_sanity(void)
Expand Down

0 comments on commit f23a2f2

Please sign in to comment.