Searched refs:byte (Results 1 – 3 of 3) sorted by relevance
/crypto/ |
D | seed.c | 27 byte(const u32 x, const unsigned n) in byte() function 315 t1 = SS0[byte(t1, 0)] ^ SS1[byte(t1, 1)] ^ \ 316 SS2[byte(t1, 2)] ^ SS3[byte(t1, 3)]; \ 318 t0 = SS0[byte(t0, 0)] ^ SS1[byte(t0, 1)] ^ \ 319 SS2[byte(t0, 2)] ^ SS3[byte(t0, 3)]; \ 321 t1 = SS0[byte(t1, 0)] ^ SS1[byte(t1, 1)] ^ \ 322 SS2[byte(t1, 2)] ^ SS3[byte(t1, 3)]; \ 343 *(keyout++) = SS0[byte(t0, 0)] ^ SS1[byte(t0, 1)] ^ in seed_set_key() 344 SS2[byte(t0, 2)] ^ SS3[byte(t0, 3)]; in seed_set_key() 345 *(keyout++) = SS0[byte(t1, 0)] ^ SS1[byte(t1, 1)] ^ in seed_set_key() [all …]
|
D | aes_generic.c | 59 static inline u8 byte(const u32 x, const unsigned n) in byte() function 1154 bo[n] = crypto_ft_tab[0][byte(bi[n], 0)] ^ \ 1155 crypto_ft_tab[1][byte(bi[(n + 1) & 3], 1)] ^ \ 1156 crypto_ft_tab[2][byte(bi[(n + 2) & 3], 2)] ^ \ 1157 crypto_ft_tab[3][byte(bi[(n + 3) & 3], 3)] ^ *(k + n); \ 1169 bo[n] = crypto_fl_tab[0][byte(bi[n], 0)] ^ \ 1170 crypto_fl_tab[1][byte(bi[(n + 1) & 3], 1)] ^ \ 1171 crypto_fl_tab[2][byte(bi[(n + 2) & 3], 2)] ^ \ 1172 crypto_fl_tab[3][byte(bi[(n + 3) & 3], 3)] ^ *(k + n); \ 1224 bo[n] = crypto_it_tab[0][byte(bi[n], 0)] ^ \ [all …]
|
D | Kconfig | 479 the AES-256 block cipher on a single 16-byte block. On CPUs
|