Merge pull request #1389 from JacobBarthelmeh/CAAM

fix unused function warning with CAAM and AES
This commit is contained in:
toddouska
2018-02-22 08:51:34 -08:00
committed by GitHub

View File

@ -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 */