#ifndef SHA256_H #define SHA256_H #include struct sha256_ctx { uint32_t state[8]; uint64_t count; uint8_t buf[64]; }; #endif