Symbol: BLAKE2B_OUTBYTES
crypto/openssl/providers/implementations/digests/blake2b_prov.c
307
uint8_t outbuffer[BLAKE2B_OUTBYTES] = { 0 };
crypto/openssl/providers/implementations/kdfs/argon2.c
848
uint8_t outbuf[BLAKE2B_OUTBYTES];
crypto/openssl/providers/implementations/kdfs/argon2.c
849
uint8_t inbuf[BLAKE2B_OUTBYTES];
crypto/openssl/providers/implementations/kdfs/argon2.c
863
outlen_md = (outlen <= BLAKE2B_OUTBYTES) ? outlen : BLAKE2B_OUTBYTES;
crypto/openssl/providers/implementations/kdfs/argon2.c
870
&& EVP_DigestFinal_ex(ctx, (outlen > BLAKE2B_OUTBYTES) ? outbuf : out,
crypto/openssl/providers/implementations/kdfs/argon2.c
877
if (outlen > BLAKE2B_OUTBYTES) {
crypto/openssl/providers/implementations/kdfs/argon2.c
878
memcpy(out, outbuf, BLAKE2B_OUTBYTES / 2);
crypto/openssl/providers/implementations/kdfs/argon2.c
879
out += BLAKE2B_OUTBYTES / 2;
crypto/openssl/providers/implementations/kdfs/argon2.c
880
outlen_curr = (uint32_t)outlen - BLAKE2B_OUTBYTES / 2;
crypto/openssl/providers/implementations/kdfs/argon2.c
882
while (outlen_curr > BLAKE2B_OUTBYTES) {
crypto/openssl/providers/implementations/kdfs/argon2.c
883
memcpy(inbuf, outbuf, BLAKE2B_OUTBYTES);
crypto/openssl/providers/implementations/kdfs/argon2.c
884
if (blake2b(md, mac, outbuf, BLAKE2B_OUTBYTES, inbuf,
crypto/openssl/providers/implementations/kdfs/argon2.c
885
BLAKE2B_OUTBYTES, NULL, 0)
crypto/openssl/providers/implementations/kdfs/argon2.c
888
memcpy(out, outbuf, BLAKE2B_OUTBYTES / 2);
crypto/openssl/providers/implementations/kdfs/argon2.c
889
out += BLAKE2B_OUTBYTES / 2;
crypto/openssl/providers/implementations/kdfs/argon2.c
890
outlen_curr -= BLAKE2B_OUTBYTES / 2;
crypto/openssl/providers/implementations/kdfs/argon2.c
893
memcpy(inbuf, outbuf, BLAKE2B_OUTBYTES);
crypto/openssl/providers/implementations/kdfs/argon2.c
894
if (blake2b(md, mac, outbuf, outlen_curr, inbuf, BLAKE2B_OUTBYTES,
crypto/openssl/providers/implementations/macs/blake2b_mac.c
14
#define BLAKE2_OUTBYTES BLAKE2B_OUTBYTES
sys/crypto/blake2/blake2-sw.c
38
rc = blake2b_init_ref(&ctx->state, BLAKE2B_OUTBYTES);
sys/crypto/blake2/blake2-sw.c
49
rc = blake2b_init_key_ref(&ctx->state, BLAKE2B_OUTBYTES, key,
sys/crypto/blake2/blake2-sw.c
73
rc = blake2b_final_ref(&ctx->state, out, BLAKE2B_OUTBYTES);
sys/crypto/blake2/blake2-sw.c
82
.hashsize = BLAKE2B_OUTBYTES,
sys/crypto/blake2/blake2_cryptodev.c
199
CTASSERT((size_t)BLAKE2S_OUTBYTES <= (size_t)BLAKE2B_OUTBYTES);
sys/crypto/blake2/blake2_cryptodev.c
212
hashlen = BLAKE2B_OUTBYTES;
sys/crypto/blake2/blake2_cryptodev.c
257
char res[BLAKE2B_OUTBYTES], res2[BLAKE2B_OUTBYTES];
sys/dev/random/fenestrasX/fx_hash.h
35
#define FXRNG_HASH_SZ BLAKE2B_OUTBYTES /* 64 */
tests/sys/opencrypto/blake2-kat.h
11330
static const uint8_t blake2bp_kat[KAT_LENGTH][BLAKE2B_OUTBYTES] =
tests/sys/opencrypto/blake2-kat.h
13897
static const uint8_t blake2bp_keyed_kat[KAT_LENGTH][BLAKE2B_OUTBYTES] =
tests/sys/opencrypto/blake2-kat.h
3110
static const uint8_t blake2b_kat[KAT_LENGTH][BLAKE2B_OUTBYTES] =
tests/sys/opencrypto/blake2-kat.h
5677
static const uint8_t blake2b_keyed_kat[KAT_LENGTH][BLAKE2B_OUTBYTES] =
tests/sys/opencrypto/blake2_test.c
131
uint8_t hash[BLAKE2B_OUTBYTES];