blake2s-internal.h (251B)
1 /* ISC license. */ 2 3 #ifndef SKALIBS_BLAKE2S_INTERNAL_H 4 #define SKALIBS_BLAKE2S_INTERNAL_H 5 6 #include <stddef.h> 7 #include <stdint.h> 8 9 #include <skalibs/blake2s.h> 10 11 extern void blake2s_transform (blake2s_ctx *, char const *, size_t, uint32_t) ; 12 13 #endif