libcruft-util/hash/siphash.cpp

144 lines
3.7 KiB
C++
Raw Normal View History

2018-01-19 11:31:12 +11:00
/*
2018-08-04 15:14:06 +10:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
2018-01-19 11:31:12 +11:00
*
* Copyright 2018 Danny Robson <danny@nerdcruft.net>
*/
#include "siphash.hpp"
#include "../bitwise.hpp"
#include "../debug/assert.hpp"
2018-01-19 11:31:12 +11:00
#include "../endian.hpp"
using cruft::hash::siphash;
2018-01-19 11:31:12 +11:00
///////////////////////////////////////////////////////////////////////////////
static constexpr
u64 INITIALISERS[4] = {
2018-01-19 11:31:12 +11:00
0x736f6d6570736575,
0x646f72616e646f6d,
0x6c7967656e657261,
0x7465646279746573,
};
///////////////////////////////////////////////////////////////////////////////
static void
round (u64 v[4])
2018-01-19 11:31:12 +11:00
{
using cruft::rotatel;
2018-01-19 11:31:12 +11:00
2022-07-21 14:23:09 +10:00
v[0] += v[1]; v[2] += v[3];
v[1] = rotatel (v[1], 13); v[3] = rotatel (v[3], 16);
v[1] ^= v[0]; v[3] ^= v[2];
v[0] = rotatel (v[0], 32);
2018-01-19 11:31:12 +11:00
v[2] += v[1]; v[0] += v[3];
v[1] = rotatel (v[1], 17); v[3] = rotatel (v[3], 21);
v[1] ^= v[2]; v[3] ^= v[0];
v[2] = rotatel (v[2], 32);
}
///////////////////////////////////////////////////////////////////////////////
static
std::array<u64, 2>
bytes_to_u64 (std::span<u08, 16> val)
{
u64 r0 =
u64 (val[0 + 0]) << u64 (0 * 8) |
u64 (val[0 + 1]) << u64 (1 * 8) |
u64 (val[0 + 2]) << u64 (2 * 8) |
u64 (val[0 + 3]) << u64 (3 * 8) |
u64 (val[0 + 4]) << u64 (4 * 8) |
u64 (val[0 + 5]) << u64 (5 * 8) |
u64 (val[0 + 6]) << u64 (6 * 8) |
u64 (val[0 + 7]) << u64 (7 * 8);
u64 r1 =
u64 (val[8 + 0]) << u64 (0 * 8) |
u64 (val[8 + 1]) << u64 (1 * 8) |
u64 (val[8 + 2]) << u64 (2 * 8) |
u64 (val[8 + 3]) << u64 (3 * 8) |
u64 (val[8 + 4]) << u64 (4 * 8) |
u64 (val[8 + 5]) << u64 (5 * 8) |
u64 (val[8 + 6]) << u64 (6 * 8) |
u64 (val[8 + 7]) << u64 (7 * 8);
return { r0, r1 };
}
2018-01-19 11:31:12 +11:00
///////////////////////////////////////////////////////////////////////////////
template <int C, int D>
siphash<C,D>::siphash (std::array<u64,2> _key) noexcept:
2018-01-19 11:31:12 +11:00
m_key (_key)
{ ; }
//-----------------------------------------------------------------------------
template <int C, int D>
siphash<C, D>::siphash (std::span<u08, 16> _key) noexcept
: siphash (bytes_to_u64 (_key))
{ ; }
///////////////////////////////////////////////////////////////////////////////
template <int C, int D>
2018-01-19 11:31:12 +11:00
typename siphash<C,D>::digest_t
siphash<C,D>::operator() (cruft::view<u08 const*> data) const noexcept
2018-01-19 11:31:12 +11:00
{
// init
u64 state[4] = {
2018-01-19 11:31:12 +11:00
m_key[0] ^ INITIALISERS[0],
m_key[1] ^ INITIALISERS[1],
m_key[0] ^ INITIALISERS[2],
m_key[1] ^ INITIALISERS[3],
};
// update
auto cursor = data.begin ();
for ( ; data.end () - cursor >= 8; cursor += sizeof (u64)) {
auto word = readle<u64> (cursor);
2018-01-19 11:31:12 +11:00
state[3] ^= word;
for (int c = 0; c < C; ++c)
round (state);
state[0] ^= word;
}
// drain
union {
u64 d64 = 0;
u08 d08[8];
2018-01-19 11:31:12 +11:00
} accum;
if (cursor != data.cend ()) {
std::copy (cursor, data.cend (), std::begin (accum.d08));
cursor = data.cend ();
}
CHECK_EQ (cursor, data.cend ());
// append the length
accum.d08[7] = data.size ();
state[3] ^= accum.d64;
for (int c = 0; c < C; ++c)
round (state);
state[0] ^= accum.d64;
// finalisation
state[2] ^= 0xff;
for (int d = 0; d < D; ++d)
round (state);
return state[0] ^ state[1] ^ state[2] ^ state[3];
}
2018-01-19 11:31:12 +11:00
///////////////////////////////////////////////////////////////////////////////
template class cruft::hash::siphash<2,4>;