digestpp  0.01
Experimental C++11 header-only message digest library.
null_mixin.hpp
1 /*
2 This code is written by kerukuro and released into public domain.
3 */
4 
5 #ifndef DIGESTPP_MIXINS_NULL_HPP
6 #define DIGESTPP_MIXINS_NULL_HPP
7 
8 namespace digestpp
9 {
10 namespace mixin
11 {
12 
13 /**
14  * \brief Empty mixin that does not have any additional fuctions.
15  * \sa hasher
16  */
17 template<typename T>
18 struct null_mixin
19 {
20 };
21 
22 } // namespace mixin
23 } // namespace digestpp
24 
25 #endif // DIGESTPP_MIXINS_NULL_HPP
hasher< detail::shake_provider< 256, 24 > > shake256
SHAKE256 function.
Definition: shake.hpp:53
Empty mixin that does not have any additional fuctions.
Definition: null_mixin.hpp:18