Searched refs:sha384_context (Results 1 – 4 of 4) sorted by relevance
/freebsd/crypto/libecc/include/libecc/hash/ |
H A D | sha384.h | 69 } sha384_context; typedef 71 ATTRIBUTE_WARN_UNUSED_RET int sha384_init(sha384_context *ctx); 72 ATTRIBUTE_WARN_UNUSED_RET int sha384_update(sha384_context *ctx, const u8 *input, u32 ilen); 73 ATTRIBUTE_WARN_UNUSED_RET int sha384_final(sha384_context *ctx, u8 output[SHA384_DIGEST_SIZE]);
|
H A D | hash_algs.h | 60 sha384_context sha384;
|
/freebsd/crypto/libecc/src/hash/ |
H A D | sha384.c | 22 ATTRIBUTE_WARN_UNUSED_RET static int sha384_process(sha384_context *ctx, in sha384_process() 70 int sha384_init(sha384_context *ctx) in sha384_init() 95 int sha384_update(sha384_context *ctx, const u8 *input, u32 ilen) in sha384_update() 148 int sha384_final(sha384_context *ctx, u8 output[SHA384_DIGEST_SIZE]) in sha384_final() 213 sha384_context ctx; in sha384_scattered() 238 sha384_context ctx; in sha384()
|
H A D | hash_algs.c | 181 return sha384_init((sha384_context*)hctx); in _sha384_init() 185 return sha384_update((sha384_context*)hctx, chunk, chunklen); in _sha384_update() 189 return sha384_final((sha384_context*)hctx, output); in _sha384_final()
|