Home
last modified time | relevance | path

Searched refs:aes_enc_tab (Results 1 – 5 of 5) sorted by relevance

/linux/lib/crypto/
H A Daes.c91 const u32 ____cacheline_aligned aes_enc_tab[256] = { variable
136 EXPORT_SYMBOL(aes_enc_tab);
330 return rk ^ aes_enc_tab[(u8)w[i]] ^ in enc_quarterround()
331 rol32(aes_enc_tab[(u8)(w[(i + 1) % 4] >> 8)], 8) ^ in enc_quarterround()
332 rol32(aes_enc_tab[(u8)(w[(i + 2) % 4] >> 16)], 16) ^ in enc_quarterround()
333 rol32(aes_enc_tab[(u8)(w[(i + 3) % 4] >> 24)], 24); in enc_quarterround()
338 return rk ^ ((aes_enc_tab[(u8)w[i]] & 0x0000ff00) >> 8) ^ in enclast_quarterround()
339 (aes_enc_tab[(u8)(w[(i + 1) % 4] >> 8)] & 0x0000ff00) ^ in enclast_quarterround()
340 ((aes_enc_tab[(u8)(w[(i + 2) % 4] >> 16)] & 0x0000ff00) << 8) ^ in enclast_quarterround()
341 ((aes_enc_tab[(u8)(w[(i + 3) % 4] >> 24)] & 0x0000ff00) << 16); in enclast_quarterround()
[all …]
/linux/lib/crypto/arm64/
H A Daes-cipher-core.S126 do_crypt fround, aes_enc_tab, aes_enc_tab + 1, 2
/linux/crypto/
H A Daegis.h65 const u32 *t = aes_enc_tab; in crypto_aegis_aesenc()
/linux/lib/crypto/arm/
H A Daes-cipher-core.S195 do_crypt fround, aes_enc_tab,, 2
/linux/include/crypto/
H A Daes.h327 extern const u32 aes_enc_tab[256];