diff options
author | Mattias Andrée <maandree@kth.se> | 2022-01-05 23:06:06 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-01-05 23:37:47 +0100 |
commit | 16e64105ff539acda5bdf6e8dedb20496038e629 (patch) | |
tree | 04f77ebb2379f704f8b902e04c05bc3ff9d8ef17 /libblake_blake512_digest.c | |
download | libblake-16e64105ff539acda5bdf6e8dedb20496038e629.tar.gz libblake-16e64105ff539acda5bdf6e8dedb20496038e629.tar.bz2 libblake-16e64105ff539acda5bdf6e8dedb20496038e629.tar.xz |
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libblake_blake512_digest.c')
-rw-r--r-- | libblake_blake512_digest.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libblake_blake512_digest.c b/libblake_blake512_digest.c new file mode 100644 index 0000000..1b7c8d2 --- /dev/null +++ b/libblake_blake512_digest.c @@ -0,0 +1,9 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + +void +libblake_blake512_digest(struct libblake_blake512_state *state, void *data, size_t len, size_t bits, + const char *suffix, unsigned char output[static LIBBLAKE_BLAKE512_OUTPUT_SIZE]) +{ + libblake_internal_blakeb_digest(&state->b, data, len, bits, suffix, output, 512 / 64); +} |