summaryrefslogtreecommitdiff
path: root/src/libstdcrypto/blake2s_init.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2022-06-01 12:40:24 +0000
committerLaurent Bercot <ska@appnovation.com>2022-06-01 12:40:24 +0000
commite0c38ba95a293b747acee203ead11933a44a4c59 (patch)
tree7845c14e7c908c4bf15d898077309a12738a4961 /src/libstdcrypto/blake2s_init.c
parente88276fdec7b3b94ec939f5eb1c8def004ee3878 (diff)
downloadskalibs-e0c38ba95a293b747acee203ead11933a44a4c59.tar.xz
Add blake2s implementation to stdcrypto
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libstdcrypto/blake2s_init.c')
-rw-r--r--src/libstdcrypto/blake2s_init.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libstdcrypto/blake2s_init.c b/src/libstdcrypto/blake2s_init.c
new file mode 100644
index 0000000..7460747
--- /dev/null
+++ b/src/libstdcrypto/blake2s_init.c
@@ -0,0 +1,9 @@
+ /* ISC license. */
+
+#include <skalibs/blake2s.h>
+
+void blake2s_init (blake2s_ctx *ctx, size_t outlen)
+{
+ blake2s_ctx c = BLAKE2S_INIT(outlen) ;
+ *ctx = c ;
+}