Searched refs:bash256_context (Results 1 – 4 of 4) sorted by relevance
17 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()
391 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()
54 typedef bash_context bash256_context; typedef56 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]);
105 bash256_context bash256;