summaryrefslogtreecommitdiff
path: root/src/libstdcrypto/blake2s-internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstdcrypto/blake2s-internal.h')
-rw-r--r--src/libstdcrypto/blake2s-internal.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/libstdcrypto/blake2s-internal.h b/src/libstdcrypto/blake2s-internal.h
new file mode 100644
index 0000000..baeac09
--- /dev/null
+++ b/src/libstdcrypto/blake2s-internal.h
@@ -0,0 +1,13 @@
+ /* ISC license. */
+
+#ifndef SKALIBS_BLAKE2S_INTERNAL_H
+#define SKALIBS_BLAKE2S_INTERNAL_H
+
+#include <stddef.h>
+#include <stdint.h>
+
+#include <skalibs/blake2s.h>
+
+extern void blake2s_transform (blake2s_ctx *, char const *, size_t, uint32_t) ;
+
+#endif