Home
last modified time | relevance | path

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

/freebsd/crypto/libecc/src/hash/
H A Dbash512.c17 int bash512_init(bash512_context *ctx) in bash512_init()
31 int bash512_update(bash512_context *ctx, const u8 *input, u32 ilen) in bash512_update()
44 int bash512_final(bash512_context *ctx, u8 output[BASH512_DIGEST_SIZE]) in bash512_final()
69 bash512_context ctx; in bash512_scattered()
93 bash512_context ctx; in bash512()
H A Dhash_algs.c419 return bash512_init((bash512_context*)hctx); in _bash512_init()
423 return bash512_update((bash512_context*)hctx, chunk, chunklen); in _bash512_update()
427 return bash512_final((bash512_context*)hctx, output); in _bash512_final()
/freebsd/crypto/libecc/include/libecc/hash/
H A Dbash512.h54 typedef bash_context bash512_context; typedef
56 ATTRIBUTE_WARN_UNUSED_RET int bash512_init(bash512_context *ctx);
57 ATTRIBUTE_WARN_UNUSED_RET int bash512_update(bash512_context *ctx, const u8 *input, u32 ilen);
58 ATTRIBUTE_WARN_UNUSED_RET int bash512_final(bash512_context *ctx, u8 output[BASH512_DIGEST_SIZE]);
H A Dhash_algs.h111 bash512_context bash512;