diff options
Diffstat (limited to '')
-rw-r--r-- | libblake_blake256_digest.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libblake_blake256_digest.c b/libblake_blake256_digest.c new file mode 100644 index 0000000..981cd35 --- /dev/null +++ b/libblake_blake256_digest.c @@ -0,0 +1,9 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + +void +libblake_blake256_digest(struct libblake_blake256_state *state, void *data, size_t len, size_t bits, + const char *suffix, unsigned char output[static LIBBLAKE_BLAKE256_OUTPUT_SIZE]) +{ + libblake_internal_blakes_digest(&state->s, data, len, bits, suffix, output, 256 / 32); +} |