/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | e_chacha20_poly1305.c | 96 * 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 D | e_chacha20_poly1305.c | 96 * 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 D | cipher_chacha20_poly1305_hw.c | 137 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 D | cipher_chacha20_hw.c | 81 * 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 D | cipher_chacha20_poly1305_hw.c | 137 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 D | cipher_chacha20_hw.c | 81 * 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 D | chacha.h | 16 * 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 D | chacha.h | 17 * 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 D | chacha.h | 17 * 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 D | chacha_ppc.c | 26 void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp, in ChaCha20_ctr32() function
|
H A D | chacha_enc.c | 71 void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp, in ChaCha20_ctr32() function
|
/third_party/openssl/crypto/chacha/ |
H A D | chacha_ppc.c | 26 void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp, in ChaCha20_ctr32() function
|
H A D | chacha_enc.c | 71 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 D | chacha-ia64.pl | 39 .global ChaCha20_ctr32# 40 .proc ChaCha20_ctr32# 42 ChaCha20_ctr32: label 288 .endp ChaCha20_ctr32#
|
H A D | chacha-armv8.pl | 152 .globl ChaCha20_ctr32 153 .type ChaCha20_ctr32,%function 155 ChaCha20_ctr32: label 347 .size ChaCha20_ctr32,.-ChaCha20_ctr32
|
H A D | chacha-armv4.pl | 207 .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 D | chacha-ia64.pl | 39 .global ChaCha20_ctr32# 40 .proc ChaCha20_ctr32# 42 ChaCha20_ctr32: label 286 .endp ChaCha20_ctr32#
|
H A D | chacha-armv8.pl | 154 .globl ChaCha20_ctr32 155 .type ChaCha20_ctr32,%function 157 ChaCha20_ctr32: label 350 .size ChaCha20_ctr32,.-ChaCha20_ctr32
|
H A D | chacha-armv4.pl | 207 .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 D | chacha-armv4.S | 34 .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 D | chacha-armv4.S | 34 .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 D | chacha-s390x.S | 3 .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 D | chacha-s390x.S | 3 .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 D | chacha-s390x.S | 3 .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 D | chacha-s390x.S | 3 .globl ChaCha20_ctr32 4 .type ChaCha20_ctr32,@function 6 ChaCha20_ctr32: label 259 .size ChaCha20_ctr32,.-ChaCha20_ctr32
|