libft_ssl/include/sha256.h
2026-04-30 11:01:46 +02:00

13 lines
143 B
C

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