A few fixes for 32-bit compiles
[fio.git] / crc / sha256.h
1 #ifndef FIO_SHA256_H
2 #define FIO_SHA256_H
3
4 struct sha256_ctx {
5         uint32_t count[2];
6         uint32_t state[8];
7         uint8_t *buf;
8 };
9
10 void sha256_init(struct sha256_ctx *);
11 void sha256_update(struct sha256_ctx *, const uint8_t *, unsigned int);
12
13 #endif