#ifndef SHA256_H #define SHA256_H #include <stdint.h> void sha256(const uint8_t* message, uint64_t length, uint32_t hash[8]); #endif // SHA256_H