Home
last modified time | relevance | path

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

/freebsd/crypto/libecc/include/libecc/hash/
H A Dsha224.h69 } sha224_context; typedef
71 ATTRIBUTE_WARN_UNUSED_RET int sha224_init(sha224_context *ctx);
72 ATTRIBUTE_WARN_UNUSED_RET int sha224_update(sha224_context *ctx, const u8 *input, u32 ilen);
73 ATTRIBUTE_WARN_UNUSED_RET int sha224_final(sha224_context *ctx, u8 output[SHA224_DIGEST_SIZE]);
H A Dhash_algs.h54 sha224_context sha224;
/freebsd/crypto/libecc/src/hash/
H A Dsha224.c22 ATTRIBUTE_WARN_UNUSED_RET static int sha224_process(sha224_context *ctx, in sha224_process()
70 int sha224_init(sha224_context *ctx) in sha224_init()
96 int sha224_update(sha224_context *ctx, const u8 *input, u32 ilen) in sha224_update()
145 int sha224_final(sha224_context *ctx, u8 output[SHA224_DIGEST_SIZE]) in sha224_final()
209 sha224_context ctx; in sha224_scattered()
233 sha224_context ctx; in sha224()
H A Dhash_algs.c153 return sha224_init((sha224_context*)hctx); in _sha224_init()
157 return sha224_update((sha224_context*)hctx, chunk, chunklen); in _sha224_update()
161 return sha224_final((sha224_context*)hctx, output); in _sha224_final()