Home
last modified time | relevance | path

Searched refs:ChaCha20_ctr32 (Results 1 - 25 of 42) sorted by relevance

12

/third_party/node/deps/openssl/openssl/crypto/evp/
H A De_chacha20_poly1305.c96 * As ChaCha20_ctr32 operates on 32-bit counter, caller in chacha_cipher()
107 ChaCha20_ctr32(out, inp, blocks, key->key.d, key->counter); in chacha_cipher()
118 ChaCha20_ctr32(key->buf, key->buf, CHACHA_BLK_SIZE, in chacha_cipher()
232 ChaCha20_ctr32(buf, zero, buf_len, actx->key.key.d, in chacha20_poly1305_tls_cipher()
257 ChaCha20_ctr32(buf, zero, (buf_len = 2 * CHACHA_BLK_SIZE), in chacha20_poly1305_tls_cipher()
289 ChaCha20_ctr32(buf, zero, (buf_len = CHACHA_BLK_SIZE), in chacha20_poly1305_tls_cipher()
301 ChaCha20_ctr32(out, in, plen, actx->key.key.d, actx->key.counter); in chacha20_poly1305_tls_cipher()
305 ChaCha20_ctr32(out, in, plen, actx->key.key.d, actx->key.counter); in chacha20_poly1305_tls_cipher()
376 ChaCha20_ctr32(actx->key.buf, zero, CHACHA_BLK_SIZE, in chacha20_poly1305_cipher()
/third_party/openssl/crypto/evp/
H A De_chacha20_poly1305.c96 * As ChaCha20_ctr32 operates on 32-bit counter, caller in chacha_cipher()
107 ChaCha20_ctr32(out, inp, blocks, key->key.d, key->counter); in chacha_cipher()
118 ChaCha20_ctr32(key->buf, key->buf, CHACHA_BLK_SIZE, in chacha_cipher()
232 ChaCha20_ctr32(buf, zero, buf_len, actx->key.key.d, in chacha20_poly1305_tls_cipher()
257 ChaCha20_ctr32(buf, zero, (buf_len = 2 * CHACHA_BLK_SIZE), in chacha20_poly1305_tls_cipher()
289 ChaCha20_ctr32(buf, zero, (buf_len = CHACHA_BLK_SIZE), in chacha20_poly1305_tls_cipher()
301 ChaCha20_ctr32(out, in, plen, actx->key.key.d, actx->key.counter); in chacha20_poly1305_tls_cipher()
305 ChaCha20_ctr32(out, in, plen, actx->key.key.d, actx->key.counter); in chacha20_poly1305_tls_cipher()
376 ChaCha20_ctr32(actx->key.buf, zero, CHACHA_BLK_SIZE, in chacha20_poly1305_cipher()
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_chacha20_poly1305_hw.c137 ChaCha20_ctr32(buf, zero, buf_len, ctx->chacha.key.d, ctx->chacha.counter); in chacha20_poly1305_tls_cipher()
161 ChaCha20_ctr32(buf, zero, (buf_len = 2 * CHACHA_BLK_SIZE), in chacha20_poly1305_tls_cipher()
193 ChaCha20_ctr32(buf, zero, (buf_len = CHACHA_BLK_SIZE), in chacha20_poly1305_tls_cipher()
205 ChaCha20_ctr32(out, in, plen, ctx->chacha.key.d, ctx->chacha.counter); in chacha20_poly1305_tls_cipher()
209 ChaCha20_ctr32(out, in, plen, ctx->chacha.key.d, ctx->chacha.counter); in chacha20_poly1305_tls_cipher()
289 ChaCha20_ctr32(ctx->chacha.buf, zero, CHACHA_BLK_SIZE, in chacha20_poly1305_aead_cipher()
H A Dcipher_chacha20_hw.c81 * As ChaCha20_ctr32 operates on 32-bit counter, caller in chacha20_cipher()
92 ChaCha20_ctr32(out, in, blocks, ctx->key.d, ctx->counter); in chacha20_cipher()
103 ChaCha20_ctr32(ctx->buf, ctx->buf, CHACHA_BLK_SIZE, in chacha20_cipher()
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_chacha20_poly1305_hw.c137 ChaCha20_ctr32(buf, zero, buf_len, ctx->chacha.key.d, ctx->chacha.counter); in chacha20_poly1305_tls_cipher()
161 ChaCha20_ctr32(buf, zero, (buf_len = 2 * CHACHA_BLK_SIZE), in chacha20_poly1305_tls_cipher()
193 ChaCha20_ctr32(buf, zero, (buf_len = CHACHA_BLK_SIZE), in chacha20_poly1305_tls_cipher()
205 ChaCha20_ctr32(out, in, plen, ctx->chacha.key.d, ctx->chacha.counter); in chacha20_poly1305_tls_cipher()
209 ChaCha20_ctr32(out, in, plen, ctx->chacha.key.d, ctx->chacha.counter); in chacha20_poly1305_tls_cipher()
289 ChaCha20_ctr32(ctx->chacha.buf, zero, CHACHA_BLK_SIZE, in chacha20_poly1305_aead_cipher()
H A Dcipher_chacha20_hw.c81 * As ChaCha20_ctr32 operates on 32-bit counter, caller in chacha20_cipher()
92 ChaCha20_ctr32(out, in, blocks, ctx->key.d, ctx->counter); in chacha20_cipher()
103 ChaCha20_ctr32(ctx->buf, ctx->buf, CHACHA_BLK_SIZE, in chacha20_cipher()
/third_party/openssl/ohos_lite/include/crypto/
H A Dchacha.h16 * ChaCha20_ctr32 encrypts |len| bytes from |inp| with the given key and
26 void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp,
/third_party/node/deps/openssl/openssl/include/crypto/
H A Dchacha.h17 * ChaCha20_ctr32 encrypts |len| bytes from |inp| with the given key and
27 void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp,
/third_party/openssl/include/crypto/
H A Dchacha.h17 * ChaCha20_ctr32 encrypts |len| bytes from |inp| with the given key and
27 void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp,
/third_party/node/deps/openssl/openssl/crypto/chacha/
H A Dchacha_ppc.c26 void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp, in ChaCha20_ctr32() function
H A Dchacha_enc.c71 void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp, in ChaCha20_ctr32() function
/third_party/openssl/crypto/chacha/
H A Dchacha_ppc.c26 void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp, in ChaCha20_ctr32() function
H A Dchacha_enc.c71 void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp, in ChaCha20_ctr32() function
/third_party/node/deps/openssl/openssl/crypto/chacha/asm/
H A Dchacha-ia64.pl39 .global ChaCha20_ctr32#
40 .proc ChaCha20_ctr32#
42 ChaCha20_ctr32: label
288 .endp ChaCha20_ctr32#
H A Dchacha-armv8.pl152 .globl ChaCha20_ctr32
153 .type ChaCha20_ctr32,%function
155 ChaCha20_ctr32: label
347 .size ChaCha20_ctr32,.-ChaCha20_ctr32
H A Dchacha-armv4.pl207 .globl ChaCha20_ctr32
208 .type ChaCha20_ctr32,%function
210 ChaCha20_ctr32: label
215 sub r14,pc,#16 @ ChaCha20_ctr32
634 .size ChaCha20_ctr32,.-ChaCha20_ctr32
/third_party/openssl/crypto/chacha/asm/
H A Dchacha-ia64.pl39 .global ChaCha20_ctr32#
40 .proc ChaCha20_ctr32#
42 ChaCha20_ctr32: label
286 .endp ChaCha20_ctr32#
H A Dchacha-armv8.pl154 .globl ChaCha20_ctr32
155 .type ChaCha20_ctr32,%function
157 ChaCha20_ctr32: label
350 .size ChaCha20_ctr32,.-ChaCha20_ctr32
H A Dchacha-armv4.pl207 .globl ChaCha20_ctr32
208 .type ChaCha20_ctr32,%function
210 ChaCha20_ctr32: label
215 sub r14,pc,#16 @ ChaCha20_ctr32
634 .size ChaCha20_ctr32,.-ChaCha20_ctr32
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/chacha/
H A Dchacha-armv4.S34 .globl ChaCha20_ctr32
35 .type ChaCha20_ctr32,%function
37 ChaCha20_ctr32: label
42 sub r14,pc,#16 @ ChaCha20_ctr32
797 .size ChaCha20_ctr32,.-ChaCha20_ctr32
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/chacha/
H A Dchacha-armv4.S34 .globl ChaCha20_ctr32
35 .type ChaCha20_ctr32,%function
37 ChaCha20_ctr32: label
42 sub r14,pc,#16 @ ChaCha20_ctr32
797 .size ChaCha20_ctr32,.-ChaCha20_ctr32
/third_party/node/deps/openssl/config/archs/linux32-s390x/asm/crypto/chacha/
H A Dchacha-s390x.S3 .globl ChaCha20_ctr32
4 .type ChaCha20_ctr32,@function
6 ChaCha20_ctr32: label
259 .size ChaCha20_ctr32,.-ChaCha20_ctr32
/third_party/node/deps/openssl/config/archs/linux32-s390x/asm_avx2/crypto/chacha/
H A Dchacha-s390x.S3 .globl ChaCha20_ctr32
4 .type ChaCha20_ctr32,@function
6 ChaCha20_ctr32: label
259 .size ChaCha20_ctr32,.-ChaCha20_ctr32
/third_party/node/deps/openssl/config/archs/linux64-s390x/asm_avx2/crypto/chacha/
H A Dchacha-s390x.S3 .globl ChaCha20_ctr32
4 .type ChaCha20_ctr32,@function
6 ChaCha20_ctr32: label
259 .size ChaCha20_ctr32,.-ChaCha20_ctr32
/third_party/node/deps/openssl/config/archs/linux64-s390x/asm/crypto/chacha/
H A Dchacha-s390x.S3 .globl ChaCha20_ctr32
4 .type ChaCha20_ctr32,@function
6 ChaCha20_ctr32: label
259 .size ChaCha20_ctr32,.-ChaCha20_ctr32

Completed in 24 milliseconds

12