streebog256_context
streebog256_context streebog256;
ATTRIBUTE_WARN_UNUSED_RET int streebog256_init(streebog256_context *ctx);
ATTRIBUTE_WARN_UNUSED_RET int streebog256_update(streebog256_context *ctx, const u8 *input, u32 ilen);
ATTRIBUTE_WARN_UNUSED_RET int streebog256_final(streebog256_context *ctx, u8 output[STREEBOG256_DIGEST_SIZE]);
return streebog256_init((streebog256_context*)hctx);
return streebog256_update((streebog256_context*)hctx, chunk, chunklen);
return streebog256_final((streebog256_context*)hctx, output);
int streebog256_init(streebog256_context *ctx)
int streebog256_update(streebog256_context *ctx, const u8 *input, u32 ilen)
int streebog256_final(streebog256_context *ctx,
streebog256_context ctx;
streebog256_context ctx;