fix unused function warning with CAAM and AES

This commit is contained in:
Jacob Barthelmeh
2018-02-21 15:21:07 -07:00
parent 7a2aa6bc13
commit 312d1a2aaf

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