Merge pull request #9479 from josepho0918/aes-cbc-mmcau

Prefer ARMASM over MMCAU for AES CBC when both enabled
This commit is contained in:
David Garske
2025-12-02 07:58:17 -08:00
committed by GitHub

View File

@@ -5886,7 +5886,7 @@ int wc_AesSetIV(Aes* aes, const byte* iv)
}
#endif /* HAVE_AES_DECRYPT */
#elif defined(FREESCALE_MMCAU)
#elif defined(FREESCALE_MMCAU) && !defined(WOLFSSL_ARMASM)
int wc_AesCbcEncrypt(Aes* aes, byte* out, const byte* in, word32 sz)
{
int offset = 0;