Symbol: bash_context
crypto/libecc/include/libecc/hash/bash.h
158
ATTRIBUTE_WARN_UNUSED_RET int _bash_init(bash_context *ctx, uint8_t digest_size);
crypto/libecc/include/libecc/hash/bash.h
159
ATTRIBUTE_WARN_UNUSED_RET int _bash_update(bash_context *ctx, const uint8_t *buf, uint32_t buflen);
crypto/libecc/include/libecc/hash/bash.h
160
ATTRIBUTE_WARN_UNUSED_RET int _bash_finalize(bash_context *ctx, uint8_t *output);
crypto/libecc/include/libecc/hash/bash224.h
54
typedef bash_context bash224_context;
crypto/libecc/include/libecc/hash/bash256.h
54
typedef bash_context bash256_context;
crypto/libecc/include/libecc/hash/bash384.h
54
typedef bash_context bash384_context;
crypto/libecc/include/libecc/hash/bash512.h
54
typedef bash_context bash512_context;
crypto/libecc/src/hash/bash.c
107
int _bash_finalize(bash_context *ctx, u8 *output)
crypto/libecc/src/hash/bash.c
23
int _bash_init(bash_context *ctx, u8 digest_size)
crypto/libecc/src/hash/bash.c
57
int _bash_update(bash_context *ctx, const u8 *input, u32 ilen)
crypto/libecc/src/hash/bash224.c
37
ret = _bash_update((bash_context *)ctx, input, ilen);
crypto/libecc/src/hash/bash224.c
50
ret = _bash_finalize((bash_context *)ctx, output); EG(ret, err);
crypto/libecc/src/hash/bash256.c
37
ret = _bash_update((bash_context *)ctx, input, ilen);
crypto/libecc/src/hash/bash256.c
50
ret = _bash_finalize((bash_context *)ctx, output); EG(ret, err);
crypto/libecc/src/hash/bash384.c
37
ret = _bash_update((bash_context *)ctx, input, ilen);
crypto/libecc/src/hash/bash384.c
50
ret = _bash_finalize((bash_context *)ctx, output); EG(ret, err);
crypto/libecc/src/hash/bash512.c
37
ret = _bash_update((bash_context *)ctx, input, ilen);
crypto/libecc/src/hash/bash512.c
50
ret = _bash_finalize((bash_context *)ctx, output); EG(ret, err);