Home
last modified time | relevance | path

Searched refs:CHACHA_BLOCKLEN (Results 1 – 7 of 7) sorted by relevance

/freebsd-head/sys/crypto/chacha20/
HDchacha-sw.c30 chacha_encrypt_bytes(ctx, in, out, CHACHA_BLOCKLEN); in chacha20_xform_crypt()
37 KASSERT(len % CHACHA_BLOCKLEN == 0, ("%s: invalid length", __func__)); in chacha20_xform_crypt_multi()
54 .native_blocksize = CHACHA_BLOCKLEN,
HDchacha.h19 #define CHACHA_BLOCKLEN 64 macro
/freebsd-head/sys/dev/random/fenestrasX/
HDfx_rng.c70 rounddown((size_t)UINT32_MAX, CHACHA_BLOCKLEN)); in fxrng_rng_keystream_internal()
138 blockcount = howmany(nbytes, CHACHA_BLOCKLEN); in fxrng_rng_genrandom_internal()
/freebsd-head/crypto/openssh/
HDchacha.h23 #define CHACHA_BLOCKLEN 64 macro
/freebsd-head/sys/dev/random/
HDhash.c156 rounddown((size_t)UINT32_MAX, CHACHA_BLOCKLEN)); in randomdev_keystream()
HDfortuna.c695 blockcount = howmany(bytecount, CHACHA_BLOCKLEN); in random_fortuna_read_concurrent()
/freebsd-head/tests/sys/devrandom/
HDuint128_test.c252 uint8_t inputle[16], expectedle[16], trash[CHACHA_BLOCKLEN]; in ATF_TC_BODY()