| 14 | SaltedSipHasher::SaltedSipHasher() : m_k0(GetRand(std::numeric_limits<uint64_t>::max())), m_k1(GetRand(std::numeric_limits<uint64_t>::max())) {} |
| 15 | |
| 16 | size_t SaltedSipHasher::operator()(const Span<const unsigned char>& script) const |
| 17 | { |
| 18 | return CSipHasher(m_k0, m_k1).Write(script.data(), script.size()).Finalize(); |
| 19 | } |
nothing calls this directly
no test coverage detected