Home
last modified time | relevance | path

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

/freebsd/crypto/libecc/src/hash/
H A Dbash256.c17 int bash256_init(bash256_context *ctx) in bash256_init()
31 int bash256_update(bash256_context *ctx, const u8 *input, u32 ilen) in bash256_update()
44 int bash256_final(bash256_context *ctx, u8 output[BASH256_DIGEST_SIZE]) in bash256_final()
69 bash256_context ctx; in bash256_scattered()
93 bash256_context ctx; in bash256()
H A Dhash_algs.c391 return bash256_init((bash256_context*)hctx); in _bash256_init()
395 return bash256_update((bash256_context*)hctx, chunk, chunklen); in _bash256_update()
399 return bash256_final((bash256_context*)hctx, output); in _bash256_final()
/freebsd/crypto/libecc/include/libecc/hash/
H A Dbash256.h54 typedef bash_context bash256_context; typedef
56 ATTRIBUTE_WARN_UNUSED_RET int bash256_init(bash256_context *ctx);
57 ATTRIBUTE_WARN_UNUSED_RET int bash256_update(bash256_context *ctx, const u8 *input, u32 ilen);
58 ATTRIBUTE_WARN_UNUSED_RET int bash256_final(bash256_context *ctx, u8 output[BASH256_DIGEST_SIZE]);
H A Dhash_algs.h105 bash256_context bash256;