digestpp 1.0
C++11 header-only message digest library
Loading...
Searching...
No Matches
lsh.hpp
Go to the documentation of this file.
1/*
2This code is written by kerukuro and released into public domain.
3*/
4
5#ifndef DIGESTPP_ALGORITHM_LSH_HPP
6#define DIGESTPP_ALGORITHM_LSH_HPP
7
8#include "../hasher.hpp"
10
11namespace digestpp
12{
13
62
63
100
101 // End of LSH group
102
103namespace static_size
104{
105
133template<size_t N>
135
158template<size_t N>
160
161 // End of LSH group
162
163}
164
165} // namespace digestpp
166
167#endif // DIGESTPP_ALGORITHM_LSH_HPP
Main class template implementing the public API for hashing.
Definition hasher.hpp:38
hasher< detail::lsh_provider< uint32_t > > lsh256
LSH256 hash function.
Definition lsh.hpp:61
hasher< detail::lsh_provider< uint64_t > > lsh512
LSH512 hash function.
Definition lsh.hpp:99
digestpp namespace
Definition ascon.hpp:14