aboutsummaryrefslogtreecommitdiff
path: root/include/crypto
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-06-03 01:30:12 +0000
committerRichard Henderson <richard.henderson@linaro.org>2023-07-09 13:48:23 +0100
commit105453544a3b1e7b0f5af23ebeaf2a5cee7a5c34 (patch)
tree022eb2361fa9cf292c897364b35cdd968b321782 /include/crypto
parentc10c559bdf31cac58e77b81ac69d579ee92a8c06 (diff)
downloadqemu-105453544a3b1e7b0f5af23ebeaf2a5cee7a5c34.zip
qemu-105453544a3b1e7b0f5af23ebeaf2a5cee7a5c34.tar.gz
qemu-105453544a3b1e7b0f5af23ebeaf2a5cee7a5c34.tar.bz2
crypto: Remove AES_imc
This array is no longer used. Acked-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/crypto')
-rw-r--r--include/crypto/aes.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/crypto/aes.h b/include/crypto/aes.h
index aa8b540..99209f5 100644
--- a/include/crypto/aes.h
+++ b/include/crypto/aes.h
@@ -36,13 +36,6 @@ extern const uint32_t AES_mc_rot[256];
/* AES InvMixColumns, for use with rot32. */
extern const uint32_t AES_imc_rot[256];
-/* AES InvMixColumns */
-/* AES_imc[x][0] = [x].[0e, 09, 0d, 0b]; */
-/* AES_imc[x][1] = [x].[0b, 0e, 09, 0d]; */
-/* AES_imc[x][2] = [x].[0d, 0b, 0e, 09]; */
-/* AES_imc[x][3] = [x].[09, 0d, 0b, 0e]; */
-extern const uint32_t AES_imc[256][4];
-
/*
AES_Te0[x] = S [x].[02, 01, 01, 03];
AES_Te1[x] = S [x].[03, 02, 01, 01];