diff options
Diffstat (limited to 'libblake_blake512_update.c')
-rw-r--r-- | libblake_blake512_update.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libblake_blake512_update.c b/libblake_blake512_update.c new file mode 100644 index 0000000..9459f6d --- /dev/null +++ b/libblake_blake512_update.c @@ -0,0 +1,8 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + +size_t +libblake_blake512_update(struct libblake_blake512_state *state, const void *data, size_t len) +{ + return libblake_internal_blakeb_update(&state->b, data, len); +} |