sha256-internal.h (252B)
1 /* ISC license. */ 2 3 #ifndef SHA256_INTERNAL_H 4 #define SHA256_INTERNAL_H 5 6 #include <stdint.h> 7 #include <skalibs/sha256.h> 8 9 extern void sha256_feed (SHA256Schedule *, unsigned char) ; 10 extern void sha256_transform (uint32_t *, uint32_t const *) ; 11 12 #endif