Home
last modified time | relevance | path

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

/Linux-v4.19/crypto/
Daes_ti.c55 static volatile const u8 __cacheline_aligned __aesti_inv_sbox[] = { variable
156 return (__aesti_inv_sbox[in[pos] & 0xff]) ^ in inv_subshift()
157 (__aesti_inv_sbox[(in[(pos + 3) % 4] >> 8) & 0xff] << 8) ^ in inv_subshift()
158 (__aesti_inv_sbox[(in[(pos + 2) % 4] >> 16) & 0xff] << 16) ^ in inv_subshift()
159 (__aesti_inv_sbox[(in[(pos + 1) % 4] >> 24) & 0xff] << 24); in inv_subshift()
258 ctx->key_dec[0] ^= __aesti_inv_sbox[ 0] ^ __aesti_inv_sbox[128]; in aesti_set_key()
259 ctx->key_dec[1] ^= __aesti_inv_sbox[32] ^ __aesti_inv_sbox[160]; in aesti_set_key()
260 ctx->key_dec[2] ^= __aesti_inv_sbox[64] ^ __aesti_inv_sbox[192]; in aesti_set_key()
261 ctx->key_dec[3] ^= __aesti_inv_sbox[96] ^ __aesti_inv_sbox[224]; in aesti_set_key()
318 st0[0] ^= __aesti_inv_sbox[ 0] ^ __aesti_inv_sbox[128]; in aesti_decrypt()
[all …]