mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
* Make LessThan private * Make NodeObject::isSame private * Remove hotTRANSACTION * Remove some Serializer members * Remove unused SHAMapItem::getRaw * Remove unused STLedgerEntry::getOwners * Remove Serializer constructors * Remove unused Serializer members * Remove SerialIter ctor
62 lines
1.9 KiB
C++
62 lines
1.9 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of Beast: https://github.com/vinniefalco/Beast
|
|
Copyright 2014, Howard Hinnant <howard.hinnant@gmail.com>,
|
|
Vinnie Falco <vinnie.falco@gmail.com
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef BEAST_HASH_SIPHASH_H_INCLUDED
|
|
#define BEAST_HASH_SIPHASH_H_INCLUDED
|
|
|
|
#include <beast/utility/noexcept.h>
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
namespace beast {
|
|
|
|
// See https://131002.net/siphash/
|
|
class siphash
|
|
{
|
|
private:
|
|
std::uint64_t v0_ = 0x736f6d6570736575ULL;
|
|
std::uint64_t v1_ = 0x646f72616e646f6dULL;
|
|
std::uint64_t v2_ = 0x6c7967656e657261ULL;
|
|
std::uint64_t v3_ = 0x7465646279746573ULL;
|
|
unsigned char buf_[8];
|
|
unsigned bufsize_ = 0;
|
|
unsigned total_length_ = 0;
|
|
|
|
public:
|
|
using result_type = std::size_t;
|
|
|
|
static beast::endian const endian = beast::endian::native;
|
|
|
|
siphash() = default;
|
|
|
|
explicit
|
|
siphash (std::uint64_t k0, std::uint64_t k1 = 0) noexcept;
|
|
|
|
void
|
|
operator() (void const* key, std::size_t len) noexcept;
|
|
|
|
explicit
|
|
operator std::size_t() noexcept;
|
|
};
|
|
|
|
} // beast
|
|
|
|
#endif
|