[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 10/37] target/riscv: Use aesenc_SB_SR_AK
From: |
Richard Henderson |
Subject: |
[PATCH v3 10/37] target/riscv: Use aesenc_SB_SR_AK |
Date: |
Tue, 20 Jun 2023 13:07:31 +0200 |
This implements the AES64ES instruction.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/riscv/crypto_helper.c | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/target/riscv/crypto_helper.c b/target/riscv/crypto_helper.c
index 2ef30281b1..b072fed3e2 100644
--- a/target/riscv/crypto_helper.c
+++ b/target/riscv/crypto_helper.c
@@ -22,6 +22,7 @@
#include "exec/exec-all.h"
#include "exec/helper-proto.h"
#include "crypto/aes.h"
+#include "crypto/aes-round.h"
#include "crypto/sm4.h"
#define AES_XTIME(a) \
@@ -136,6 +137,8 @@ target_ulong HELPER(aes32dsi)(target_ulong rs1,
target_ulong rs2,
AES_INVMIXBYTE(COL, 1, 2, 3, 0) << 8 | \
AES_INVMIXBYTE(COL, 0, 1, 2, 3) << 0)
+static const AESState aes_zero = { };
+
static inline target_ulong aes64_operation(target_ulong rs1, target_ulong rs2,
bool enc, bool mix)
{
@@ -200,7 +203,12 @@ target_ulong HELPER(aes64esm)(target_ulong rs1,
target_ulong rs2)
target_ulong HELPER(aes64es)(target_ulong rs1, target_ulong rs2)
{
- return aes64_operation(rs1, rs2, true, false);
+ AESState t;
+
+ t.d[HOST_BIG_ENDIAN] = rs1;
+ t.d[!HOST_BIG_ENDIAN] = rs2;
+ aesenc_SB_SR_AK(&t, &t, &aes_zero, false);
+ return t.d[HOST_BIG_ENDIAN];
}
target_ulong HELPER(aes64ds)(target_ulong rs1, target_ulong rs2)
--
2.34.1
- [PATCH v3 04/37] crypto/aes: Add constants for ShiftRows, InvShiftRows, (continued)
- [PATCH v3 04/37] crypto/aes: Add constants for ShiftRows, InvShiftRows, Richard Henderson, 2023/06/20
- [PATCH v3 05/37] crypto: Add aesenc_SB_SR_AK, Richard Henderson, 2023/06/20
- [PATCH v3 06/37] target/i386: Use aesenc_SB_SR_AK, Richard Henderson, 2023/06/20
- [PATCH v3 07/37] target/arm: Demultiplex AESE and AESMC, Richard Henderson, 2023/06/20
- [PATCH v3 08/37] target/arm: Use aesenc_SB_SR_AK, Richard Henderson, 2023/06/20
- [PATCH v3 09/37] target/ppc: Use aesenc_SB_SR_AK, Richard Henderson, 2023/06/20
- [PATCH v3 14/37] target/ppc: Use aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/20
- [PATCH v3 10/37] target/riscv: Use aesenc_SB_SR_AK,
Richard Henderson <=
- [PATCH v3 11/37] crypto: Add aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/20
- [PATCH v3 12/37] target/i386: Use aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/20
- [PATCH v3 13/37] target/arm: Use aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/20
- [PATCH v3 16/37] crypto: Add aesenc_MC, Richard Henderson, 2023/06/20
- [PATCH v3 15/37] target/riscv: Use aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/20
- [PATCH v3 17/37] target/arm: Use aesenc_MC, Richard Henderson, 2023/06/20
- [PATCH v3 18/37] crypto: Add aesdec_IMC, Richard Henderson, 2023/06/20