streebog512_context
streebog512_context streebog512;
ATTRIBUTE_WARN_UNUSED_RET int streebog512_init(streebog512_context *ctx);
ATTRIBUTE_WARN_UNUSED_RET int streebog512_update(streebog512_context *ctx, const u8 *input, u32 ilen);
ATTRIBUTE_WARN_UNUSED_RET int streebog512_final(streebog512_context *ctx, u8 output[STREEBOG512_DIGEST_SIZE]);
return streebog512_init((streebog512_context*)hctx);
return streebog512_update((streebog512_context*)hctx, chunk, chunklen);
return streebog512_final((streebog512_context*)hctx, output);
int streebog512_init(streebog512_context *ctx)
int streebog512_update(streebog512_context *ctx, const u8 *input, u32 ilen)
int streebog512_final(streebog512_context *ctx,
streebog512_context ctx;
streebog512_context ctx;