diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-06-02 00:57:02 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-07-08 07:30:17 +0100 |
commit | 192fa84986a6e060f353ed491fe635ccd960876e (patch) | |
tree | d384b407255dbebe1e3b1c7c35ca28ccfda7f2b5 /host/include/generic | |
parent | 6b0a96ce3a405ef4676e1fa853f2c649dc25c2b4 (diff) | |
download | qemu-192fa84986a6e060f353ed491fe635ccd960876e.zip qemu-192fa84986a6e060f353ed491fe635ccd960876e.tar.gz qemu-192fa84986a6e060f353ed491fe635ccd960876e.tar.bz2 |
crypto: Add aesdec_ISB_ISR_AK
Add a primitive for InvSubBytes + InvShiftRows + AddRoundKey.
Reviewed-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 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/host/include/generic/host/crypto/aes-round.h b/host/include/generic/host/crypto/aes-round.h index c5d8066..c9b9d73 100644 --- a/host/include/generic/host/crypto/aes-round.h +++ b/host/include/generic/host/crypto/aes-round.h @@ -13,4 +13,8 @@ void aesenc_SB_SR_AK_accel(AESState *, const AESState *, const AESState *, bool) QEMU_ERROR("unsupported accel"); +void aesdec_ISB_ISR_AK_accel(AESState *, const AESState *, + const AESState *, bool) + QEMU_ERROR("unsupported accel"); + #endif /* GENERIC_HOST_CRYPTO_AES_ROUND_H */ |