Update hash_append to latest draft specification

This commit is contained in:
Vinnie Falco
2015-05-27 09:20:46 -07:00
parent 845c9f8a51
commit d11510c34c
12 changed files with 414 additions and 507 deletions

View File

@@ -90,7 +90,7 @@ siphash::siphash(std::uint64_t k0, std::uint64_t k1) noexcept
}
void
siphash::append (void const* key, std::size_t inlen) noexcept
siphash::operator() (void const* key, std::size_t inlen) noexcept
{
using namespace detail;
u8 const* in = static_cast<const u8*>(key);