Searched refs:crypto_ft_tab (Results 1 – 7 of 7) sorted by relevance
/Linux-v4.19/arch/x86/crypto/ |
D | aes-x86_64-asm_64.S | 11 .extern crypto_ft_tab 152 encrypt_round(crypto_ft_tab,-96) 153 encrypt_round(crypto_ft_tab,-80) 154 .Le192: encrypt_round(crypto_ft_tab,-64) 155 encrypt_round(crypto_ft_tab,-48) 156 .Le128: encrypt_round(crypto_ft_tab,-32) 157 encrypt_round(crypto_ft_tab,-16) 158 encrypt_round(crypto_ft_tab, 0) 159 encrypt_round(crypto_ft_tab, 16) 160 encrypt_round(crypto_ft_tab, 32) [all …]
|
D | aes-i586-asm_32.S | 223 .extern crypto_ft_tab 261 2: fwd_rnd1( -64(%ebp), crypto_ft_tab) // 14 rounds for 256-bit key 262 fwd_rnd2( -48(%ebp), crypto_ft_tab) 263 3: fwd_rnd1( -32(%ebp), crypto_ft_tab) // 12 rounds for 192-bit key 264 fwd_rnd2( -16(%ebp), crypto_ft_tab) 265 4: fwd_rnd1( (%ebp), crypto_ft_tab) // 10 rounds for 128-bit key 266 fwd_rnd2( +16(%ebp), crypto_ft_tab) 267 fwd_rnd1( +32(%ebp), crypto_ft_tab) 268 fwd_rnd2( +48(%ebp), crypto_ft_tab) 269 fwd_rnd1( +64(%ebp), crypto_ft_tab) [all …]
|
/Linux-v4.19/crypto/ |
D | aegis.h | 63 const u32 *t0 = crypto_ft_tab[0]; in crypto_aegis_aesenc() 64 const u32 *t1 = crypto_ft_tab[1]; in crypto_aegis_aesenc() 65 const u32 *t2 = crypto_ft_tab[2]; in crypto_aegis_aesenc() 66 const u32 *t3 = crypto_ft_tab[3]; in crypto_aegis_aesenc()
|
D | aes_generic.c | 66 __visible const u32 crypto_ft_tab[4][256] = { variable 1122 EXPORT_SYMBOL_GPL(crypto_ft_tab); 1306 bo[n] = crypto_ft_tab[0][byte(bi[n], 0)] ^ \ 1307 crypto_ft_tab[1][byte(bi[(n + 1) & 3], 1)] ^ \ 1308 crypto_ft_tab[2][byte(bi[(n + 2) & 3], 2)] ^ \ 1309 crypto_ft_tab[3][byte(bi[(n + 3) & 3], 3)] ^ *(k + n); \
|
/Linux-v4.19/include/crypto/ |
D | aes.h | 31 extern const u32 crypto_ft_tab[4][256];
|
/Linux-v4.19/arch/arm64/crypto/ |
D | aes-cipher-core.S | 129 do_crypt fround, crypto_ft_tab, crypto_ft_tab + 1, 2
|
/Linux-v4.19/arch/arm/crypto/ |
D | aes-cipher-core.S | 178 do_crypt fround, crypto_ft_tab, crypto_ft_tab + 1, 2
|