aes_decrypt
r = aes_decrypt(output, tmp, &fipsctx);
r = aes_decrypt(in + i, out + i, &dctx);
r = aes_decrypt(in + i, tmp, &dctx);
r = aes_decrypt(cn1, pn, &dctx);
r = aes_decrypt(cn, pn1, &dctx);
AES_RETURN aes_decrypt(const unsigned char *in, unsigned char *out, const aes_decrypt_ctx cx[1]);
if (aes_decrypt(data, data, &CACHE(key)->dec_ctx) != EXIT_SUCCESS)
aes_decrypt,
aes_decrypt,