Home
last modified time | relevance | path

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

/linux-5.19.10/arch/x86/crypto/
Dchacha_glue.c19 unsigned int len, int nrounds);
21 unsigned int len, int nrounds);
22 asmlinkage void hchacha_block_ssse3(const u32 *state, u32 *out, int nrounds);
25 unsigned int len, int nrounds);
27 unsigned int len, int nrounds);
29 unsigned int len, int nrounds);
32 unsigned int len, int nrounds);
34 unsigned int len, int nrounds);
36 unsigned int len, int nrounds);
49 unsigned int bytes, int nrounds) in chacha_dosimd() argument
[all …]
Dchacha-ssse3-x86_64.S119 # %r8d: nrounds
205 # %edx: nrounds
228 # %r8d: nrounds
Dchacha-avx512vl-x86_64.S32 # %r8d: nrounds
197 # %r8d: nrounds
463 # %r8d: nrounds
Dchacha-avx2-x86_64.S42 # %r8d: nrounds
234 # %r8d: nrounds
539 # %r8d: nrounds
/linux-5.19.10/include/crypto/
Dchacha.h33 void chacha_block_generic(u32 *state, u8 *stream, int nrounds);
39 void hchacha_block_arch(const u32 *state, u32 *out, int nrounds);
40 void hchacha_block_generic(const u32 *state, u32 *out, int nrounds);
42 static inline void hchacha_block(const u32 *state, u32 *out, int nrounds) in hchacha_block() argument
45 hchacha_block_arch(state, out, nrounds); in hchacha_block()
47 hchacha_block_generic(state, out, nrounds); in hchacha_block()
92 unsigned int bytes, int nrounds);
94 unsigned int bytes, int nrounds);
97 unsigned int bytes, int nrounds) in chacha_crypt() argument
100 chacha_crypt_arch(state, dst, src, bytes, nrounds); in chacha_crypt()
[all …]
/linux-5.19.10/arch/arm64/crypto/
Dchacha-neon-glue.c35 int nrounds);
37 int nrounds, int bytes);
38 asmlinkage void hchacha_block_neon(const u32 *state, u32 *out, int nrounds);
43 int bytes, int nrounds) in chacha_doneon() argument
52 chacha_block_xor_neon(state, buf, buf, nrounds); in chacha_doneon()
57 chacha_4block_xor_neon(state, dst, src, nrounds, l); in chacha_doneon()
65 void hchacha_block_arch(const u32 *state, u32 *stream, int nrounds) in hchacha_block_arch() argument
68 hchacha_block_generic(state, stream, nrounds); in hchacha_block_arch()
71 hchacha_block_neon(state, stream, nrounds); in hchacha_block_arch()
84 int nrounds) in chacha_crypt_arch() argument
[all …]
Dghash-ce-glue.c345 int nrounds = num_rounds(&ctx->aes_key); in gcm_encrypt() local
382 dg, iv, ctx->aes_key.key_enc, nrounds, in gcm_encrypt()
411 int nrounds = num_rounds(&ctx->aes_key); in gcm_decrypt() local
455 nrounds, tag, otag, authsize); in gcm_decrypt()
/linux-5.19.10/arch/arm/crypto/
Dchacha-glue.c24 int nrounds);
26 int nrounds, unsigned int nbytes);
27 asmlinkage void hchacha_block_arm(const u32 *state, u32 *out, int nrounds);
28 asmlinkage void hchacha_block_neon(const u32 *state, u32 *out, int nrounds);
31 const u32 *state, int nrounds);
41 unsigned int bytes, int nrounds) in chacha_doneon() argument
48 chacha_4block_xor_neon(state, dst, src, nrounds, l); in chacha_doneon()
60 chacha_block_xor_neon(state, d, s, nrounds); in chacha_doneon()
67 void hchacha_block_arch(const u32 *state, u32 *stream, int nrounds) in hchacha_block_arch() argument
70 hchacha_block_arm(state, stream, nrounds); in hchacha_block_arch()
[all …]
Dchacha-scalar-core.S132 .macro _chacha_permute nrounds argument
135 .rept \nrounds / 2
140 .macro _chacha nrounds argument
147 _chacha_permute \nrounds
/linux-5.19.10/lib/crypto/
Dchacha.c16 static void chacha_permute(u32 *x, int nrounds) in chacha_permute() argument
21 WARN_ON_ONCE(nrounds != 20 && nrounds != 12); in chacha_permute()
23 for (i = 0; i < nrounds; i += 2) { in chacha_permute()
76 void chacha_block_generic(u32 *state, u8 *stream, int nrounds) in chacha_block_generic() argument
83 chacha_permute(x, nrounds); in chacha_block_generic()
103 void hchacha_block_generic(const u32 *state, u32 *stream, int nrounds) in hchacha_block_generic() argument
109 chacha_permute(x, nrounds); in hchacha_block_generic()
Dlibchacha.c16 unsigned int bytes, int nrounds) in chacha_crypt_generic() argument
22 chacha_block_generic(state, stream, nrounds); in chacha_crypt_generic()
29 chacha_block_generic(state, stream, nrounds); in chacha_crypt_generic()
/linux-5.19.10/include/crypto/internal/
Dchacha.h12 int nrounds; member
16 unsigned int keysize, int nrounds) in chacha_setkey() argument
27 ctx->nrounds = nrounds; in chacha_setkey()
/linux-5.19.10/arch/s390/crypto/
Dchacha-glue.c54 ctx->nrounds); in chacha20_s390()
65 void hchacha_block_arch(const u32 *state, u32 *stream, int nrounds) in hchacha_block_arch() argument
68 hchacha_block_generic(state, stream, nrounds); in hchacha_block_arch()
79 unsigned int bytes, int nrounds) in chacha_crypt_arch() argument
85 if (bytes <= CHACHA_BLOCK_SIZE || nrounds != 20) in chacha_crypt_arch()
86 chacha_crypt_generic(state, dst, src, bytes, nrounds); in chacha_crypt_arch()
/linux-5.19.10/arch/mips/crypto/
Dchacha-glue.c17 unsigned int bytes, int nrounds);
20 asmlinkage void hchacha_block_arch(const u32 *state, u32 *stream, int nrounds);
47 nbytes, ctx->nrounds); in chacha_mips_stream_xor()
72 hchacha_block(state, subctx.key, ctx->nrounds); in xchacha_mips()
73 subctx.nrounds = ctx->nrounds; in xchacha_mips()
/linux-5.19.10/crypto/
Dchacha_generic.c33 walk.src.virt.addr, nbytes, ctx->nrounds); in chacha_stream_xor()
58 hchacha_block_generic(state, subctx.key, ctx->nrounds); in crypto_xchacha_crypt()
59 subctx.nrounds = ctx->nrounds; in crypto_xchacha_crypt()
/linux-5.19.10/drivers/crypto/qat/qat_common/
Dqat_algs.c468 int nrounds; in qat_alg_xts_reverse_key() local
473 nrounds = 10; in qat_alg_xts_reverse_key()
474 key = (u8 *)aes_expanded.key_enc + (AES_BLOCK_SIZE * nrounds); in qat_alg_xts_reverse_key()
478 nrounds = 14; in qat_alg_xts_reverse_key()
479 key = (u8 *)aes_expanded.key_enc + (AES_BLOCK_SIZE * nrounds); in qat_alg_xts_reverse_key()