Home
last modified time | relevance | path

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

/openbmc/linux/arch/x86/crypto/
H A Dchacha_glue.c21 unsigned int len, int nrounds);
32 unsigned int len, int nrounds);
49 unsigned int bytes, int nrounds) in chacha_dosimd() argument
55 nrounds); in chacha_dosimd()
63 nrounds); in chacha_dosimd()
69 nrounds); in chacha_dosimd()
75 nrounds); in chacha_dosimd()
143 int nrounds) in chacha_crypt_arch() argument
184 ctx->nrounds); in chacha_simd_stream_xor()
189 ctx->nrounds); in chacha_simd_stream_xor()
[all …]
H A Dchacha-ssse3-x86_64.S119 # %r8d: nrounds
205 # %edx: nrounds
228 # %r8d: nrounds
H A Dchacha-avx512vl-x86_64.S32 # %r8d: nrounds
197 # %r8d: nrounds
463 # %r8d: nrounds
H A Dchacha-avx2-x86_64.S42 # %r8d: nrounds
234 # %r8d: nrounds
539 # %r8d: nrounds
/openbmc/linux/include/crypto/
H A 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 …]
/openbmc/linux/arch/arm64/crypto/
H A Dchacha-neon-glue.c35 int nrounds);
37 int nrounds, int bytes);
43 int bytes, int nrounds) in chacha_doneon() argument
52 chacha_block_xor_neon(state, buf, buf, nrounds); in chacha_doneon()
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
94 chacha_doneon(state, dst, src, todo, nrounds); in chacha_crypt_arch()
125 ctx->nrounds); in chacha_neon_stream_xor()
129 walk.src.virt.addr, nbytes, ctx->nrounds); in chacha_neon_stream_xor()
[all …]
H A Dghash-ce-glue.c339 int nrounds = num_rounds(&ctx->aes_key); in gcm_encrypt() local
374 dg, iv, ctx->aes_key.key_enc, nrounds, in gcm_encrypt()
403 int nrounds = num_rounds(&ctx->aes_key); in gcm_decrypt() local
445 nrounds, tag, otag, authsize); in gcm_decrypt()
/openbmc/linux/arch/powerpc/crypto/
H A Dchacha-p10-glue.c21 unsigned int len, int nrounds);
38 unsigned int bytes, int nrounds) in chacha_p10_do_8x() argument
43 chacha_p10le_8x(state, dst, src, l, nrounds); in chacha_p10_do_8x()
51 chacha_crypt_generic(state, dst, src, bytes, nrounds); in chacha_p10_do_8x()
56 hchacha_block_generic(state, stream, nrounds); in hchacha_block_arch()
67 int nrounds) in chacha_crypt_arch() argument
77 chacha_p10_do_8x(state, dst, src, todo, nrounds); in chacha_crypt_arch()
109 ctx->nrounds); in chacha_p10_stream_xor()
113 walk.src.virt.addr, nbytes, ctx->nrounds); in chacha_p10_stream_xor()
141 hchacha_block_arch(state, subctx.key, ctx->nrounds); in xchacha_p10()
[all …]
H A Dchacha-p10le-8x.S11 # size_t len, int nrounds);
578 # chacha20_p10le_8x(u32 *state, byte *dst, const byte *src, size_t len, int nrounds);
/openbmc/linux/arch/arm/crypto/
H A Dchacha-glue.c24 int nrounds);
26 int nrounds, unsigned int nbytes);
31 const u32 *state, int nrounds);
41 unsigned int bytes, int nrounds) in chacha_doneon() argument
60 chacha_block_xor_neon(state, d, s, nrounds); in chacha_doneon()
70 hchacha_block_arm(state, stream, nrounds); in hchacha_block_arch()
73 hchacha_block_neon(state, stream, nrounds); in hchacha_block_arch()
86 int nrounds) in chacha_crypt_arch() argument
90 chacha_doarm(dst, src, bytes, state, nrounds); in chacha_crypt_arch()
129 nbytes, state, ctx->nrounds); in chacha_stream_xor()
[all …]
H A Dchacha-scalar-core.S132 .macro _chacha_permute nrounds argument
135 .rept \nrounds / 2
140 .macro _chacha nrounds argument
147 _chacha_permute \nrounds
/openbmc/linux/lib/crypto/
H A 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()
H A 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()
/openbmc/linux/include/crypto/internal/
H A Dchacha.h12 int nrounds; member
16 unsigned int keysize, int nrounds) in chacha_setkey() argument
27 ctx->nrounds = nrounds; in chacha_setkey()
/openbmc/linux/arch/s390/crypto/
H A 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 || !MACHINE_HAS_VX) in chacha_crypt_arch()
86 chacha_crypt_generic(state, dst, src, bytes, nrounds); in chacha_crypt_arch()
/openbmc/linux/arch/mips/crypto/
H A 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()
/openbmc/linux/crypto/
H A 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()
/openbmc/openbmc/poky/meta/recipes-connectivity/openssl/openssl/
H A Dbti.patch47 // nrounds*128-96 bytes: key schedule
55 // nrounds*128-96 bytes: key schedule
/openbmc/linux/drivers/crypto/intel/qat/qat_common/
H A 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()