Home
last modified time | relevance | path

Searched refs:_sha3_init (Results 1 – 6 of 6) sorted by relevance

/freebsd/crypto/libecc/include/libecc/hash/
H A Dsha3.h42 ATTRIBUTE_WARN_UNUSED_RET int _sha3_init(sha3_context *ctx, u8 digest_size);
/freebsd/crypto/libecc/src/hash/
H A Dsha3-512.c26 ret = _sha3_init(ctx, SHA3_512_DIGEST_SIZE); EG(ret, err); in sha3_512_init()
H A Dsha3-224.c26 ret = _sha3_init(ctx, SHA3_224_DIGEST_SIZE); EG(ret, err); in sha3_224_init()
H A Dsha3-256.c26 ret = _sha3_init(ctx, SHA3_256_DIGEST_SIZE); EG(ret, err); in sha3_256_init()
H A Dsha3-384.c26 ret = _sha3_init(ctx, SHA3_384_DIGEST_SIZE); EG(ret, err); in sha3_384_init()
H A Dsha3.c23 int _sha3_init(sha3_context *ctx, u8 digest_size) in _sha3_init() function