Symbol: dec_key
arch/powerpc/crypto/aes_cbc.c
100
enc ? &ctx->enc_key : &ctx->dec_key,
arch/powerpc/crypto/aes_cbc.c
25
struct p8_aes_key dec_key;
arch/powerpc/crypto/aes_cbc.c
65
ret |= aes_p8_set_decrypt_key(key, keylen * 8, &ctx->dec_key);
arch/powerpc/crypto/aes_xts.c
130
&ctx->dec_key, NULL, tweak);
arch/powerpc/crypto/aes_xts.c
26
struct p8_aes_key dec_key;
arch/powerpc/crypto/aes_xts.c
72
ret |= aes_p8_set_decrypt_key(key, (keylen/2) * 8, &ctx->dec_key);
arch/x86/crypto/aria_aesni_avx2_glue.c
77
return ecb_do_decrypt(req, ctx->dec_key[0]);
arch/x86/crypto/aria_aesni_avx_glue.c
75
return ecb_do_decrypt(req, ctx->dec_key[0]);
arch/x86/crypto/aria_gfni_avx512_glue.c
65
return ecb_do_decrypt(req, ctx->dec_key[0]);
arch/x86/kernel/asm-offsets.c
129
OFFSET(ARIA_CTX_dec_key, aria_ctx, dec_key);
crypto/aria_generic.c
155
ctx->dec_key[0][i] = ctx->enc_key[ctx->rounds][i];
crypto/aria_generic.c
156
ctx->dec_key[ctx->rounds][i] = ctx->enc_key[0][i];
crypto/aria_generic.c
160
ctx->dec_key[i][0] = aria_m(ctx->enc_key[ctx->rounds - i][0]);
crypto/aria_generic.c
161
ctx->dec_key[i][1] = aria_m(ctx->enc_key[ctx->rounds - i][1]);
crypto/aria_generic.c
162
ctx->dec_key[i][2] = aria_m(ctx->enc_key[ctx->rounds - i][2]);
crypto/aria_generic.c
163
ctx->dec_key[i][3] = aria_m(ctx->enc_key[ctx->rounds - i][3]);
crypto/aria_generic.c
165
aria_diff_word(&ctx->dec_key[i][0], &ctx->dec_key[i][1],
crypto/aria_generic.c
166
&ctx->dec_key[i][2], &ctx->dec_key[i][3]);
crypto/aria_generic.c
167
aria_diff_byte(&ctx->dec_key[i][1],
crypto/aria_generic.c
168
&ctx->dec_key[i][2], &ctx->dec_key[i][3]);
crypto/aria_generic.c
169
aria_diff_word(&ctx->dec_key[i][0], &ctx->dec_key[i][1],
crypto/aria_generic.c
170
&ctx->dec_key[i][2], &ctx->dec_key[i][3]);
crypto/aria_generic.c
182
BUILD_BUG_ON(sizeof(ctx->dec_key) != 272);
crypto/aria_generic.c
260
__aria_crypt(ctx, out, in, ctx->dec_key);
crypto/aria_generic.c
275
__aria_crypt(ctx, out, in, ctx->dec_key);
drivers/crypto/chelsio/chcr_algo.c
227
static void get_aes_decrypt_key(unsigned char *dec_key,
drivers/crypto/chelsio/chcr_algo.c
272
put_unaligned_be32(w_ring[j], &dec_key[k * 4]);
include/crypto/aria.h
36
u32 dec_key[ARIA_MAX_RD_KEYS][ARIA_RD_KEY_WORDS];
lib/btree.c
320
dec_key(geo, key);