diff options
author | Jean-Philippe Aumasson <jeanphilippe.aumasson@gmail.com> | 2019-09-10 07:57:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-10 07:57:36 +0200 |
commit | 61faf151b8ee0977f7e8d6389ba24752c1c93a71 (patch) | |
tree | bad2f2acfb508ac2f12f1a7c1bc9cf759cde2a3f /siphash.c | |
parent | Merge pull request #12 from altendky/remove_duplicated_U32TO8_LE (diff) | |
parent | Use UINTxx_C() macros for 'large' constants (diff) | |
download | siphash-61faf151b8ee0977f7e8d6389ba24752c1c93a71.tar.gz siphash-61faf151b8ee0977f7e8d6389ba24752c1c93a71.tar.xz |
Merge pull request #13 from altendky/use_UINTxx_C_macros
Use UINTxx_C() macros for 'large' constants
Diffstat (limited to 'siphash.c')
-rw-r--r-- | siphash.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -79,10 +79,10 @@ int siphash(const uint8_t *in, const size_t inlen, const uint8_t *k, uint8_t *out, const size_t outlen) { assert((outlen == 8) || (outlen == 16)); - uint64_t v0 = 0x736f6d6570736575ULL; - uint64_t v1 = 0x646f72616e646f6dULL; - uint64_t v2 = 0x6c7967656e657261ULL; - uint64_t v3 = 0x7465646279746573ULL; + uint64_t v0 = UINT64_C(0x736f6d6570736575); + uint64_t v1 = UINT64_C(0x646f72616e646f6d); + uint64_t v2 = UINT64_C(0x6c7967656e657261); + uint64_t v3 = UINT64_C(0x7465646279746573); uint64_t k0 = U8TO64_LE(k); uint64_t k1 = U8TO64_LE(k + 8); uint64_t m; |