Jens Axboe | cd14cc1 | 2007-07-30 10:59:33 +0200 | [diff] [blame] | 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 |