Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

crypto: arm/aes - Switch to aes_enc_tab[] and aes_dec_tab[]

Instead of crypto_ft_tab and crypto_it_tab from aes_generic.c, use
aes_enc_tab and aes_dec_tab from lib/crypto/aes.c. These contain the
same data in the first 1024 bytes (which is the part that this code
uses), so the result is the same. This will allow aes_generic.c to
eventually be removed.

Acked-by: Ard Biesheuvel <ardb@kernel.org>
Link: https://lore.kernel.org/r/20260112192035.10427-5-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@kernel.org>

+2 -2
+2 -2
arch/arm/crypto/aes-cipher-core.S
··· 192 192 .endm 193 193 194 194 ENTRY(__aes_arm_encrypt) 195 - do_crypt fround, crypto_ft_tab,, 2 195 + do_crypt fround, aes_enc_tab,, 2 196 196 ENDPROC(__aes_arm_encrypt) 197 197 198 198 .align 5 199 199 ENTRY(__aes_arm_decrypt) 200 - do_crypt iround, crypto_it_tab, crypto_aes_inv_sbox, 0 200 + do_crypt iround, aes_dec_tab, crypto_aes_inv_sbox, 0 201 201 ENDPROC(__aes_arm_decrypt)