Symbol: sha3_context
crypto/libecc/include/libecc/hash/sha3-224.h
59
typedef sha3_context sha3_224_context;
crypto/libecc/include/libecc/hash/sha3-256.h
59
typedef sha3_context sha3_256_context;
crypto/libecc/include/libecc/hash/sha3-384.h
59
typedef sha3_context sha3_384_context;
crypto/libecc/include/libecc/hash/sha3-512.h
59
typedef sha3_context sha3_512_context;
crypto/libecc/include/libecc/hash/sha3.h
42
ATTRIBUTE_WARN_UNUSED_RET int _sha3_init(sha3_context *ctx, u8 digest_size);
crypto/libecc/include/libecc/hash/sha3.h
43
ATTRIBUTE_WARN_UNUSED_RET int _sha3_update(sha3_context *ctx, const u8 *buf, u32 buflen);
crypto/libecc/include/libecc/hash/sha3.h
44
ATTRIBUTE_WARN_UNUSED_RET int _sha3_finalize(sha3_context *ctx, u8 *output);
crypto/libecc/src/hash/sha3-224.c
42
ret = _sha3_update((sha3_context *)ctx, input, ilen);
crypto/libecc/src/hash/sha3-224.c
55
ret = _sha3_finalize((sha3_context *)ctx, output); EG(ret, err);
crypto/libecc/src/hash/sha3-256.c
42
ret = _sha3_update((sha3_context *)ctx, input, ilen);
crypto/libecc/src/hash/sha3-256.c
55
ret = _sha3_finalize((sha3_context *)ctx, output); EG(ret, err);
crypto/libecc/src/hash/sha3-384.c
42
ret = _sha3_update((sha3_context *)ctx, input, ilen);
crypto/libecc/src/hash/sha3-384.c
55
ret = _sha3_finalize((sha3_context *)ctx, output); EG(ret, err);
crypto/libecc/src/hash/sha3-512.c
42
ret = _sha3_update((sha3_context *)ctx, input, ilen);
crypto/libecc/src/hash/sha3-512.c
55
ret = _sha3_finalize((sha3_context *)ctx, output); EG(ret, err);
crypto/libecc/src/hash/sha3.c
23
int _sha3_init(sha3_context *ctx, u8 digest_size)
crypto/libecc/src/hash/sha3.c
50
int _sha3_update(sha3_context *ctx, const u8 *input, u32 ilen)
crypto/libecc/src/hash/sha3.c
78
int _sha3_finalize(sha3_context *ctx, u8 *output)