Searched refs:sha224_context (Results 1 – 4 of 4) sorted by relevance
| /freebsd/crypto/libecc/include/libecc/hash/ |
| H A D | sha224.h | 69 } 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 D | hash_algs.h | 54 sha224_context sha224;
|
| /freebsd/crypto/libecc/src/hash/ |
| H A D | sha224.c | 22 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 D | hash_algs.c | 153 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()
|