diff options
author | JP Aumasson <jeanphilippe.aumasson@gmail.com> | 2021-02-20 20:50:05 +0100 |
---|---|---|
committer | JP Aumasson <jeanphilippe.aumasson@gmail.com> | 2021-02-20 20:50:05 +0100 |
commit | 4ce8f49e22ceb7ad973a21963884a8c3dc64c662 (patch) | |
tree | ac62e10a28986c538e127abcd54a01d8f73bb30d /siphash.h | |
parent | Merge pull request #34 from veorq/moretest (diff) | |
download | siphash-4ce8f49e22ceb7ad973a21963884a8c3dc64c662.tar.gz siphash-4ce8f49e22ceb7ad973a21963884a8c3dc64c662.tar.xz |
typechange
Diffstat (limited to 'siphash.h')
-rw-r--r-- | siphash.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,5 +18,5 @@ #include <inttypes.h> #include <string.h> -int siphash(const uint8_t *in, const size_t inlen, const uint8_t *k, - uint8_t *out, const size_t outlen); +int siphash(const void *in, const size_t inlen, const void *k, uint8_t *out, + const size_t outlen); |