diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-06-02 15:23:18 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-07-08 07:30:17 +0100 |
commit | 15ff15982a13ddf3e03b38ff46277ed90c1f36f9 (patch) | |
tree | a03aaf8383de24d52bfc7928c83e55981a80fab2 /host/include/generic | |
parent | 7c58cb972e851c2e96ad5abd98b9c00b3f1c8a95 (diff) | |
download | qemu-15ff15982a13ddf3e03b38ff46277ed90c1f36f9.zip qemu-15ff15982a13ddf3e03b38ff46277ed90c1f36f9.tar.gz qemu-15ff15982a13ddf3e03b38ff46277ed90c1f36f9.tar.bz2 |
crypto: Add aesdec_ISB_ISR_IMC_AK
Add a primitive for InvSubBytes + InvShiftRows +
InvMixColumns + AddRoundKey.
Acked-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'host/include/generic')
-rw-r--r-- | host/include/generic/host/crypto/aes-round.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/host/include/generic/host/crypto/aes-round.h b/host/include/generic/host/crypto/aes-round.h index 9886e81..db8cfe1 100644 --- a/host/include/generic/host/crypto/aes-round.h +++ b/host/include/generic/host/crypto/aes-round.h @@ -23,5 +23,8 @@ void aesdec_IMC_accel(AESState *, const AESState *, bool) void aesdec_ISB_ISR_AK_accel(AESState *, const AESState *, const AESState *, bool) QEMU_ERROR("unsupported accel"); +void aesdec_ISB_ISR_IMC_AK_accel(AESState *, const AESState *, + const AESState *, bool) + QEMU_ERROR("unsupported accel"); #endif /* GENERIC_HOST_CRYPTO_AES_ROUND_H */ |