block/include/nil/crypto3/block/detail/md5/md5_policy.hpp
Go to the documentation of this file.
1 //---------------------------------------------------------------------------//
2 // Copyright (c) 2018-2020 Mikhail Komarov <nemo@nil.foundation>
3 //
4 // MIT License
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining a copy
7 // of this software and associated documentation files (the "Software"), to deal
8 // in the Software without restriction, including without limitation the rights
9 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 // copies of the Software, and to permit persons to whom the Software is
11 // furnished to do so, subject to the following conditions:
12 //
13 // The above copyright notice and this permission notice shall be included in all
14 // copies or substantial portions of the Software.
15 //
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 // SOFTWARE.
23 //---------------------------------------------------------------------------//
24 
25 #ifndef CRYPTO3_BLOCK_CIPHERS_DETAIL_MD5_POLICY_HPP
26 #define CRYPTO3_BLOCK_CIPHERS_DETAIL_MD5_POLICY_HPP
27 
28 #include <array>
29 
31 
32 namespace nil {
33  namespace crypto3 {
34  namespace block {
35  namespace detail {
36 
38 
39  constexpr static const std::size_t block_bits = 128;
40  constexpr static const std::size_t block_words = block_bits / word_bits;
41  typedef std::array<word_type, block_words> block_type;
42 
43  constexpr static const std::size_t key_words = 16;
44  constexpr static const std::size_t key_bits = key_words * word_bits;
45  typedef std::array<word_type, key_words> key_type;
46 
47  constexpr static const std::size_t rounds = 64;
48  typedef std::array<word_type, rounds> constants_type;
49  typedef std::array<unsigned, rounds> key_indexes_type;
50 
51  constexpr static const constants_type constants = {{
52  0xd76aa478, 0xe8c7b756, 0x242070db, 0xc1bdceee, 0xf57c0faf, 0x4787c62a, 0xa8304613, 0xfd469501,
53  0x698098d8, 0x8b44f7af, 0xffff5bb1, 0x895cd7be, 0x6b901122, 0xfd987193, 0xa679438e, 0x49b40821,
54 
55  0xf61e2562, 0xc040b340, 0x265e5a51, 0xe9b6c7aa, 0xd62f105d, 0x02441453, 0xd8a1e681, 0xe7d3fbc8,
56  0x21e1cde6, 0xc33707d6, 0xf4d50d87, 0x455a14ed, 0xa9e3e905, 0xfcefa3f8, 0x676f02d9, 0x8d2a4c8a,
57 
58  0xfffa3942, 0x8771f681, 0x6d9d6122, 0xfde5380c, 0xa4beea44, 0x4bdecfa9, 0xf6bb4b60, 0xbebfbc70,
59  0x289b7ec6, 0xeaa127fa, 0xd4ef3085, 0x04881d05, 0xd9d4d039, 0xe6db99e5, 0x1fa27cf8, 0xc4ac5665,
60 
61  0xf4292244, 0x432aff97, 0xab9423a7, 0xfc93a039, 0x655b59c3, 0x8f0ccc92, 0xffeff47d, 0x85845dd1,
62  0x6fa87e4f, 0xfe2ce6e0, 0xa3014314, 0x4e0811a1, 0xf7537e82, 0xbd3af235, 0x2ad7d2bb, 0xeb86d391,
63  }};
64 
65  constexpr static const key_indexes_type key_indexes = {{
66  0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
67 
68  1, 6, 11, 0, 5, 10, 15, 4, 9, 14, 3, 8, 13, 2, 7, 12,
69 
70  5, 8, 11, 14, 1, 4, 7, 10, 13, 0, 3, 6, 9, 12, 15, 2,
71 
72  0, 7, 14, 5, 12, 3, 10, 1, 8, 15, 6, 13, 4, 11, 2, 9,
73  }};
74  };
75 
78 
79  } // namespace detail
80  } // namespace block
81  } // namespace crypto3
82 } // namespace nil
83 
84 #endif // CRYPTO3_BLOCK_CIPHERS_DETAIL_MD5_POLICY_HPP
boost::mpl::apply< AccumulatorSet, tag::block< Mode > >::type::result_type block(const AccumulatorSet &acc)
Definition: accumulators/block.hpp:259
Definition: pair.hpp:31
Definition: md5_functions.hpp:34
Definition: block/include/nil/crypto3/block/detail/md5/md5_policy.hpp:37
constexpr static const std::size_t block_words
Definition: block/include/nil/crypto3/block/detail/md5/md5_policy.hpp:40
std::array< word_type, block_words > block_type
Definition: block/include/nil/crypto3/block/detail/md5/md5_policy.hpp:41
constexpr static const std::size_t block_bits
Definition: block/include/nil/crypto3/block/detail/md5/md5_policy.hpp:39
constexpr static const constants_type constants
Definition: block/include/nil/crypto3/block/detail/md5/md5_policy.hpp:51
std::array< word_type, key_words > key_type
Definition: block/include/nil/crypto3/block/detail/md5/md5_policy.hpp:45
constexpr static const std::size_t key_words
Definition: block/include/nil/crypto3/block/detail/md5/md5_policy.hpp:43
constexpr static const key_indexes_type key_indexes
Definition: block/include/nil/crypto3/block/detail/md5/md5_policy.hpp:65
constexpr static const std::size_t rounds
Definition: block/include/nil/crypto3/block/detail/md5/md5_policy.hpp:47
constexpr static const std::size_t key_bits
Definition: block/include/nil/crypto3/block/detail/md5/md5_policy.hpp:44
std::array< unsigned, rounds > key_indexes_type
Definition: block/include/nil/crypto3/block/detail/md5/md5_policy.hpp:49
std::array< word_type, rounds > constants_type
Definition: block/include/nil/crypto3/block/detail/md5/md5_policy.hpp:48
constexpr static const std::size_t word_bits
Definition: block/include/nil/crypto3/detail/basic_functions.hpp:88