Home
last modified time | relevance | path

Searched refs:bash224_context (Results 1 – 4 of 4) sorted by relevance

/freebsd/crypto/libecc/src/hash/
H A Dbash224.c17 int bash224_init(bash224_context *ctx) in bash224_init()
31 int bash224_update(bash224_context *ctx, const u8 *input, u32 ilen) in bash224_update()
44 int bash224_final(bash224_context *ctx, u8 output[BASH224_DIGEST_SIZE]) in bash224_final()
69 bash224_context ctx; in bash224_scattered()
93 bash224_context ctx; in bash224()
H A Dhash_algs.c377 return bash224_init((bash224_context*)hctx); in _bash224_init()
381 return bash224_update((bash224_context*)hctx, chunk, chunklen); in _bash224_update()
385 return bash224_final((bash224_context*)hctx, output); in _bash224_final()
/freebsd/crypto/libecc/include/libecc/hash/
H A Dbash224.h54 typedef bash_context bash224_context; typedef
56 ATTRIBUTE_WARN_UNUSED_RET int bash224_init(bash224_context *ctx);
57 ATTRIBUTE_WARN_UNUSED_RET int bash224_update(bash224_context *ctx, const u8 *input, u32 ilen);
58 ATTRIBUTE_WARN_UNUSED_RET int bash224_final(bash224_context *ctx, u8 output[BASH224_DIGEST_SIZE]);
H A Dhash_algs.h102 bash224_context bash224;