Searched refs:crypto_it_tab (Results 1 – 6 of 6) sorted by relevance
/Linux-v4.19/arch/x86/crypto/ |
D | aes-x86_64-asm_64.S | 12 .extern crypto_it_tab 171 decrypt_round(crypto_it_tab,-96) 172 decrypt_round(crypto_it_tab,-80) 173 .Ld192: decrypt_round(crypto_it_tab,-64) 174 decrypt_round(crypto_it_tab,-48) 175 .Ld128: decrypt_round(crypto_it_tab,-32) 176 decrypt_round(crypto_it_tab,-16) 177 decrypt_round(crypto_it_tab, 0) 178 decrypt_round(crypto_it_tab, 16) 179 decrypt_round(crypto_it_tab, 32) [all …]
|
D | aes-i586-asm_32.S | 295 .extern crypto_it_tab 333 2: inv_rnd1( -64(%ebp), crypto_it_tab) // 14 rounds for 256-bit key 334 inv_rnd2( -48(%ebp), crypto_it_tab) 335 3: inv_rnd1( -32(%ebp), crypto_it_tab) // 12 rounds for 192-bit key 336 inv_rnd2( -16(%ebp), crypto_it_tab) 337 4: inv_rnd1( (%ebp), crypto_it_tab) // 10 rounds for 128-bit key 338 inv_rnd2( +16(%ebp), crypto_it_tab) 339 inv_rnd1( +32(%ebp), crypto_it_tab) 340 inv_rnd2( +48(%ebp), crypto_it_tab) 341 inv_rnd1( +64(%ebp), crypto_it_tab) [all …]
|
/Linux-v4.19/crypto/ |
D | aes_generic.c | 594 __visible const u32 crypto_it_tab[4][256] = { variable 1124 EXPORT_SYMBOL_GPL(crypto_it_tab); 1376 bo[n] = crypto_it_tab[0][byte(bi[n], 0)] ^ \ 1377 crypto_it_tab[1][byte(bi[(n + 3) & 3], 1)] ^ \ 1378 crypto_it_tab[2][byte(bi[(n + 2) & 3], 2)] ^ \ 1379 crypto_it_tab[3][byte(bi[(n + 1) & 3], 3)] ^ *(k + n); \
|
/Linux-v4.19/include/crypto/ |
D | aes.h | 33 extern const u32 crypto_it_tab[4][256];
|
/Linux-v4.19/arch/arm64/crypto/ |
D | aes-cipher-core.S | 134 do_crypt iround, crypto_it_tab, __aes_arm64_inverse_sbox, 0
|
/Linux-v4.19/arch/arm/crypto/ |
D | aes-cipher-core.S | 183 do_crypt iround, crypto_it_tab, __aes_arm_inverse_sbox, 0
|