[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 30/38] crypto: Add aesdec_ISB_ISR_AK_IMC
From: |
Richard Henderson |
Subject: |
[PATCH v2 30/38] crypto: Add aesdec_ISB_ISR_AK_IMC |
Date: |
Thu, 8 Jun 2023 19:23:53 -0700 |
Add a primitive for InvSubBytes + InvShiftRows +
AddRoundKey + InvMixColumns.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
host/include/generic/host/aes-round.h | 3 +++
include/crypto/aes-round.h | 21 +++++++++++++++++++++
crypto/aes.c | 14 ++++++++++++++
3 files changed, 38 insertions(+)
diff --git a/host/include/generic/host/aes-round.h
b/host/include/generic/host/aes-round.h
index 16b4447831..c52fea936f 100644
--- a/host/include/generic/host/aes-round.h
+++ b/host/include/generic/host/aes-round.h
@@ -23,6 +23,9 @@ 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_AK_IMC_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");
diff --git a/include/crypto/aes-round.h b/include/crypto/aes-round.h
index 31c5f10df6..dd8f49becb 100644
--- a/include/crypto/aes-round.h
+++ b/include/crypto/aes-round.h
@@ -119,6 +119,27 @@ static inline void aesdec_ISB_ISR_AK(AESState *r, const
AESState *st,
}
}
+/*
+ * Perform InvSubBytes + InvShiftRows + AddRoundKey + InvMixColumns.
+ */
+
+void aesdec_ISB_ISR_AK_IMC_gen(AESState *ret, const AESState *st,
+ const AESState *rk);
+void aesdec_ISB_ISR_AK_IMC_genrev(AESState *ret, const AESState *st,
+ const AESState *rk);
+
+static inline void aesdec_ISB_ISR_AK_IMC(AESState *r, const AESState *st,
+ const AESState *rk, bool be)
+{
+ if (HAVE_AES_ACCEL) {
+ aesdec_ISB_ISR_AK_IMC_accel(r, st, rk, be);
+ } else if (HOST_BIG_ENDIAN == be) {
+ aesdec_ISB_ISR_AK_IMC_gen(r, st, rk);
+ } else {
+ aesdec_ISB_ISR_AK_IMC_genrev(r, st, rk);
+ }
+}
+
/*
* Perform InvSubBytes + InvShiftRows + InvMixColumns + AddRoundKey.
*/
diff --git a/crypto/aes.c b/crypto/aes.c
index b671a3a6fb..f0721ad4a2 100644
--- a/crypto/aes.c
+++ b/crypto/aes.c
@@ -1564,6 +1564,20 @@ void aesdec_ISB_ISR_IMC_AK_genrev(AESState *r, const
AESState *st,
aesdec_ISB_ISR_IMC_AK_swap(r, st, rk, true);
}
+void aesdec_ISB_ISR_AK_IMC_gen(AESState *ret, const AESState *st,
+ const AESState *rk)
+{
+ aesdec_ISB_ISR_AK_gen(ret, st, rk);
+ aesdec_IMC_gen(ret, ret);
+}
+
+void aesdec_ISB_ISR_AK_IMC_genrev(AESState *ret, const AESState *st,
+ const AESState *rk)
+{
+ aesdec_ISB_ISR_AK_genrev(ret, st, rk);
+ aesdec_IMC_genrev(ret, ret);
+}
+
/**
* Expand the cipher key into the encryption key schedule.
*/
--
2.34.1
- [PATCH v2 14/38] target/arm: Use aesdec_ISB_ISR_AK, (continued)
- [PATCH v2 14/38] target/arm: Use aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 17/38] crypto: Add aesenc_MC, Richard Henderson, 2023/06/08
- [PATCH v2 12/38] crypto: Add aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 18/38] target/arm: Use aesenc_MC, Richard Henderson, 2023/06/08
- [PATCH v2 21/38] target/arm: Use aesdec_IMC, Richard Henderson, 2023/06/08
- [PATCH v2 26/38] target/riscv: Use aesenc_SB_SR_MC_AK, Richard Henderson, 2023/06/08
- [PATCH v2 29/38] target/riscv: Use aesdec_ISB_ISR_IMC_AK, Richard Henderson, 2023/06/08
- [PATCH v2 20/38] target/i386: Use aesdec_IMC, Richard Henderson, 2023/06/08
- [PATCH v2 23/38] crypto: Add aesenc_SB_SR_MC_AK, Richard Henderson, 2023/06/08
- [PATCH v2 24/38] target/i386: Use aesenc_SB_SR_MC_AK, Richard Henderson, 2023/06/08
- [PATCH v2 30/38] crypto: Add aesdec_ISB_ISR_AK_IMC,
Richard Henderson <=
- [PATCH v2 31/38] target/ppc: Use aesdec_ISB_ISR_AK_IMC, Richard Henderson, 2023/06/08
- [PATCH v2 27/38] crypto: Add aesdec_ISB_ISR_IMC_AK, Richard Henderson, 2023/06/08
- [PATCH v2 22/38] target/riscv: Use aesdec_IMC, Richard Henderson, 2023/06/08
- [PATCH v2 34/38] crypto: Remove AES_imc, Richard Henderson, 2023/06/08
- [PATCH v2 25/38] target/ppc: Use aesenc_SB_SR_MC_AK, Richard Henderson, 2023/06/08