Searched refs:sbox (Results 1 – 1 of 1) sorted by relevance
29 static const u8 ____cacheline_aligned sbox[256] = { variable66 extern const u8 crypto_sm4_sbox[256] __alias(sbox);76 out = (u32)sbox[x & 0xff]; in sm4_t_non_lin_sub()77 out |= (u32)sbox[(x >> 8) & 0xff] << 8; in sm4_t_non_lin_sub()78 out |= (u32)sbox[(x >> 16) & 0xff] << 16; in sm4_t_non_lin_sub()79 out |= (u32)sbox[(x >> 24) & 0xff] << 24; in sm4_t_non_lin_sub()
Completed in 3 milliseconds