Symbol: chacha_encrypt_bytes
crypto/openssh/chacha.h
30
void chacha_encrypt_bytes(struct chacha_ctx *x, const u_char *m,
crypto/openssh/cipher-chachapoly.c
101
chacha_encrypt_bytes(&ctx->header_ctx, src, dest, aadlen);
crypto/openssh/cipher-chachapoly.c
106
chacha_encrypt_bytes(&ctx->main_ctx, src + aadlen,
crypto/openssh/cipher-chachapoly.c
133
chacha_encrypt_bytes(&ctx->header_ctx, cp, buf, 4);
crypto/openssh/cipher-chachapoly.c
84
chacha_encrypt_bytes(&ctx->main_ctx,
crypto/openssh/openbsd-compat/arc4random.c
130
chacha_encrypt_bytes(&rsx->rs_chacha, (uint8_t *)&rekey_fuzz,
crypto/openssh/openbsd-compat/arc4random.c
154
chacha_encrypt_bytes(&rsx->rs_chacha, rsx->rs_buf,
lib/libc/gen/arc4random.c
157
chacha_encrypt_bytes(&rsx->rs_chacha, (uint8_t *)&rekey_fuzz,
lib/libc/gen/arc4random.c
181
chacha_encrypt_bytes(&rsx->rs_chacha, rsx->rs_buf,
sys/crypto/chacha20/chacha-sw.c
30
chacha_encrypt_bytes(ctx, in, out, CHACHA_BLOCKLEN);
sys/crypto/chacha20/chacha-sw.c
38
chacha_encrypt_bytes(ctx, in, out, len);
sys/crypto/chacha20/chacha-sw.c
46
chacha_encrypt_bytes(ctx, in, out, len);
sys/crypto/chacha20/chacha.h
36
LOCAL void chacha_encrypt_bytes(struct chacha_ctx *x, const u_char *m,
sys/dev/random/fenestrasX/fx_rng.c
72
chacha_encrypt_bytes(prf, NULL, buf, chunklen);
sys/dev/random/hash.c
158
chacha_encrypt_bytes(&context->chacha, NULL, d_out,
sys/kern/kern_shutdown.c
1485
chacha_encrypt_bytes(&kdc->kdc_chacha, buf, buf, size);
sys/libkern/arc4random.c
231
chacha_encrypt_bytes(&chacha20->ctx, chacha20->m_buffer, p, length);