digestpp 1.0
C++11 header-only message digest library
Loading...
Searching...
No Matches
blake.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_BLAKE_HPP
6#define DIGESTPP_ALGORITHM_BLAKE_HPP
7
8#include "../hasher.hpp"
10#include "mixin/blake_mixin.hpp"
11
12namespace digestpp
13{
14
59
60 // End of BLAKE group
61
62namespace static_size
63{
64
101template<size_t N>
103
104 // End of BLAKE group
105
106}
107
108} // namespace digestpp
109
110#endif // DIGESTPP_ALGORITHM_BLAKE_HPP
Main class template implementing the public API for hashing.
Definition hasher.hpp:38
Defines additional public functions for BLAKE algorithm.
Definition blake_mixin.hpp:20
hasher< detail::blake_provider<>, mixin::blake_mixin > blake
BLAKE hash function (SHA-3 finalist)
Definition blake.hpp:58
digestpp namespace
Definition ascon.hpp:14