Symbol: chacha_ctx
crypto/openssh/chacha.c
15
typedef struct chacha_ctx chacha_ctx;
crypto/openssh/chacha.c
55
chacha_keysetup(chacha_ctx *x,const u8 *k,u32 kbits)
crypto/openssh/chacha.c
80
chacha_ivsetup(chacha_ctx *x, const u8 *iv, const u8 *counter)
crypto/openssh/chacha.c
89
chacha_encrypt_bytes(chacha_ctx *x,const u8 *m,u8 *c,u32 bytes)
crypto/openssh/chacha.h
25
void chacha_keysetup(struct chacha_ctx *x, const u_char *k, u_int kbits)
crypto/openssh/chacha.h
27
void chacha_ivsetup(struct chacha_ctx *x, const u_char *iv, const u_char *ctr)
crypto/openssh/chacha.h
30
void chacha_encrypt_bytes(struct chacha_ctx *x, const u_char *m,
crypto/openssh/cipher-chachapoly.c
36
struct chacha_ctx main_ctx, header_ctx;
crypto/openssh/openbsd-compat/arc4random.c
85
chacha_ctx rs_chacha; /* chacha context for random keystream */
crypto/openssh/openbsd-compat/chacha_private.h
57
chacha_keysetup(chacha_ctx *x,const u8 *k,u32 kbits)
crypto/openssh/openbsd-compat/chacha_private.h
82
chacha_ivsetup(chacha_ctx *x,const u8 *iv)
crypto/openssh/openbsd-compat/chacha_private.h
91
chacha_encrypt_bytes(chacha_ctx *x,const u8 *m,u8 *c,u32 bytes)
lib/libc/gen/arc4random.c
77
chacha_ctx rs_chacha; /* chacha context for random keystream */
sys/crypto/chacha20/chacha-sw.c
52
.ctxsize = sizeof(struct chacha_ctx),
sys/crypto/chacha20/chacha.c
101
chacha_ctrsave(const chacha_ctx *x, u8 *counter)
sys/crypto/chacha20/chacha.c
111
chacha_encrypt_bytes(chacha_ctx *x,const u8 *m,u8 *c,u32 bytes)
sys/crypto/chacha20/chacha.c
17
typedef struct chacha_ctx chacha_ctx;
sys/crypto/chacha20/chacha.c
57
chacha_keysetup(chacha_ctx *x,const u8 *k,u32 kbits)
sys/crypto/chacha20/chacha.c
82
chacha_ivsetup(chacha_ctx *x, const u8 *iv, const u8 *counter)
sys/crypto/chacha20/chacha.h
33
LOCAL void chacha_keysetup(struct chacha_ctx *x, const u_char *k, u_int kbits);
sys/crypto/chacha20/chacha.h
34
LOCAL void chacha_ivsetup(struct chacha_ctx *x, const u_char *iv CHACHA_UNUSED,
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
121
struct chacha_ctx ctx_copy, *p_ctx;
sys/dev/random/fenestrasX/fx_rng.c
64
fxrng_rng_keystream_internal(struct chacha_ctx *prf, void *buf, size_t nbytes)
sys/dev/random/fenestrasX/fx_rng.c
84
fxrng_chacha_nonce_add64(struct chacha_ctx *ctx, uint64_t addend)
sys/dev/random/fenestrasX/fx_rng.h
41
struct chacha_ctx rng_prf;
sys/dev/random/hash.h
56
struct chacha_ctx chacha;
sys/kern/kern_shutdown.c
191
struct chacha_ctx u_chacha;
sys/libkern/arc4random.c
67
struct chacha_ctx ctx;