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-internal.h | |
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-internal.h')
-rw-r--r-- | src/libstdcrypto/blake2s-internal.h | 13 |
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 |