diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2022-06-01 12:40:24 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2022-06-01 12:40:24 +0000 |
commit | e0c38ba95a293b747acee203ead11933a44a4c59 (patch) | |
tree | 7845c14e7c908c4bf15d898077309a12738a4961 /src/libstdcrypto/blake2s_init.c | |
parent | e88276fdec7b3b94ec939f5eb1c8def004ee3878 (diff) | |
download | skalibs-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.c | 9 |
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 ; +} |