Re: [PATCH v2 33/38] crypto: Implement aesdec_IMC with AES_imc_rot

2023-06-19 Thread Philippe Mathieu-Daudé
On 9/6/23 04:23, Richard Henderson wrote: This method uses one uint32_t * 256 table instead of 4, which means its data cache overhead is less. Signed-off-by: Richard Henderson --- crypto/aes.c | 42 +- 1 file changed, 21 insertions(+), 21 deletions(-)

[PATCH v2 33/38] crypto: Implement aesdec_IMC with AES_imc_rot

2023-06-08 Thread Richard Henderson
This method uses one uint32_t * 256 table instead of 4, which means its data cache overhead is less. Signed-off-by: Richard Henderson --- crypto/aes.c | 42 +- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/crypto/aes.c b/crypto/aes.c