Home
last modified time | relevance | path

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

/freebsd/crypto/libecc/src/hash/
H A Dbash384.c17 int bash384_init(bash384_context *ctx) in bash384_init()
31 int bash384_update(bash384_context *ctx, const u8 *input, u32 ilen) in bash384_update()
44 int bash384_final(bash384_context *ctx, u8 output[BASH384_DIGEST_SIZE]) in bash384_final()
69 bash384_context ctx; in bash384_scattered()
97 bash384_context ctx; in bash384()
H A Dhash_algs.c405 return bash384_init((bash384_context*)hctx); in _bash384_init()
409 return bash384_update((bash384_context*)hctx, chunk, chunklen); in _bash384_update()
413 return bash384_final((bash384_context*)hctx, output); in _bash384_final()
/freebsd/crypto/libecc/include/libecc/hash/
H A Dbash384.h54 typedef bash_context bash384_context; typedef
56 ATTRIBUTE_WARN_UNUSED_RET int bash384_init(bash384_context *ctx);
57 ATTRIBUTE_WARN_UNUSED_RET int bash384_update(bash384_context *ctx, const u8 *input, u32 ilen);
58 ATTRIBUTE_WARN_UNUSED_RET int bash384_final(bash384_context *ctx, u8 output[BASH384_DIGEST_SIZE]);
H A Dhash_algs.h108 bash384_context bash384;