We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e1f713 + 645da33 commit 1b240e2Copy full SHA for 1b240e2
1 file changed
wolfcrypt/src/aes.c
@@ -233,7 +233,7 @@ block cipher mechanism that uses n-bit binary string parameter key with 128-bits
233
#endif /* WOLFSSL_AES_DIRECT || HAVE_AESGCM || HAVE_AESCCM */
234
235
#ifdef HAVE_AES_DECRYPT
236
- #if defined(WOLFSSL_AES_DIRECT) || defined(HAVE_AESCCM)
+ #if defined(WOLFSSL_AES_DIRECT)
237
static WARN_UNUSED_RESULT int wc_AesDecrypt(
238
Aes* aes, const byte* inBlock, byte* outBlock)
239
{
@@ -340,7 +340,7 @@ block cipher mechanism that uses n-bit binary string parameter key with 128-bits
340
341
return ret;
342
}
343
- #endif /* WOLFSSL_AES_DIRECT || HAVE_AESCCM */
+ #endif /* WOLFSSL_AES_DIRECT */
344
#endif /* HAVE_AES_DECRYPT */
345
346
#elif defined(HAVE_COLDFIRE_SEC)
0 commit comments