digestpp 1.0
C++11 header-only message digest library
Loading...
Searching...
No Matches
esch_constants.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_PROVIDERS_ESCH_CONSTANTS_HPP
6#define DIGESTPP_PROVIDERS_ESCH_CONSTANTS_HPP
7
8namespace digestpp
9{
10
11namespace detail
12{
13
14template<typename T>
16{
17 const static uint32_t C[8];
18};
19
20template<typename T>
21const uint32_t esch_constants<T>::C[8] = {
22 0xb7e15162, 0xbf715880, 0x38b4da56, 0x324e7738, 0xbb1185eb, 0x4f7c7b57, 0xcfbfa1c8, 0xc2b3293d
23};
24
25} // namespace detail
26
27} // namespace digestpp
28
29#endif
digestpp namespace
Definition ascon.hpp:14
Definition esch_constants.hpp:16
static const uint32_t C[8]
Definition esch_constants.hpp:17