1234567891011121314151617181920 |
- #ifndef SIPHASH_H
- #define SIPHASH_H
- #include <stdint.h>
- #include <stdlib.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- uint64_t siphash(const unsigned char key[16], const unsigned char *m, size_t len);
- uint64_t siphash13(const unsigned char key[16], const unsigned char *m, size_t len);
- uint32_t halfsiphash(const unsigned char key[16], const unsigned char *m, size_t len);
-
- #ifdef __cplusplus
- }
- #endif
- #endif // SIPHASH_H
|