diff options
Diffstat (limited to 'hash/include/fnv1a.h')
| -rw-r--r-- | hash/include/fnv1a.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hash/include/fnv1a.h b/hash/include/fnv1a.h new file mode 100644 index 0000000..0d2e7cf --- /dev/null +++ b/hash/include/fnv1a.h | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include <stddef.h> | ||
| 4 | #include <stdint.h> | ||
| 5 | |||
| 6 | uint32_t fnv1a32(const void* buffer, size_t size_bytes); | ||
| 7 | |||
| 8 | uint32_t fnv1a32_begin(); | ||
| 9 | uint32_t fnv1a32_update(uint32_t hash, const void* buffer, size_t size_bytes); | ||
