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_final.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_final.c')
-rw-r--r-- | src/libstdcrypto/blake2s_final.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/libstdcrypto/blake2s_final.c b/src/libstdcrypto/blake2s_final.c new file mode 100644 index 0000000..207d60b --- /dev/null +++ b/src/libstdcrypto/blake2s_final.c @@ -0,0 +1,16 @@ + /* ISC license. */ + +#include <string.h> + +#include <skalibs/uint32.h> +#include <skalibs/blake2s.h> +#include "blake2s-internal.h" + +void blake2s_final (blake2s_ctx *ctx, char *out) +{ + ctx->f[0] = -1 ; + memset(ctx->buf + ctx->buflen, 0, 64 - ctx->buflen) ; + blake2s_transform(ctx, ctx->buf, 1, ctx->buflen) ; + uint32_littlen(ctx->h, 8) ; + memcpy(out, ctx->h, ctx->outlen) ; +} |