aboutsummaryrefslogtreecommitdiffstats
path: root/libblake_blake256_update.c
diff options
context:
space:
mode:
Diffstat (limited to 'libblake_blake256_update.c')
-rw-r--r--libblake_blake256_update.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libblake_blake256_update.c b/libblake_blake256_update.c
new file mode 100644
index 0000000..06100d1
--- /dev/null
+++ b/libblake_blake256_update.c
@@ -0,0 +1,8 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+
+size_t
+libblake_blake256_update(struct libblake_blake256_state *state, const void *data, size_t len)
+{
+ return libblake_internal_blakes_update(&state->s, data, len);
+}