From 312d1a2aafb1d73992b4e94380bab2d0856c126b Mon Sep 17 00:00:00 2001 From: Jacob Barthelmeh Date: Wed, 21 Feb 2018 15:21:07 -0700 Subject: [PATCH] fix unused function warning with CAAM and AES --- wolfcrypt/src/aes.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/wolfcrypt/src/aes.c b/wolfcrypt/src/aes.c index f0f3c51a8..55808be98 100644 --- a/wolfcrypt/src/aes.c +++ b/wolfcrypt/src/aes.c @@ -793,11 +793,6 @@ wc_AesEncryptDirect(aes, outBlock, inBlock); return 0; } - static int wc_AesDecrypt(Aes* aes, const byte* inBlock, byte* outBlock) - { - wc_AesDecryptDirect(aes, outBlock, inBlock); - return 0; - } #else /* using wolfCrypt software AES implementation */