main
hash.h
1#ifndef HASH_H_
2#define HASH_H_
3
4#include <stdint.h>
5
6//NOTE: This is only intended for use in file identification
7//Please do not use this in a cryptographic setting as no attempts have been
8//made at avoiding side channel attacks
9
10void sha1(uint8_t *data, uint64_t size, uint8_t *out);
11
12#endif //HASH_H_