rijndael_functions.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_RIJNDAEL_FUNCTIONS_CPP_HPP
26 #define CRYPTO3_RIJNDAEL_FUNCTIONS_CPP_HPP
27 
28 #include <array>
29 
31 
32 #include <nil/crypto3/detail/basic_functions.hpp>
33 
34 namespace nil {
35  namespace crypto3 {
36  namespace block {
37  namespace detail {
38  template<std::size_t WordBits, std::size_t BlockBits>
40  constexpr static const std::size_t byte_bits =
43 
44  constexpr static const std::size_t word_bits =
46  constexpr static const std::size_t word_bytes = word_bits / byte_bits;
47  typedef std::array<byte_type, word_bytes> word_type;
48 
49  constexpr static const std::size_t constants_size = 256;
50  typedef std::array<byte_type, constants_size> constants_type;
51  typedef std::array<word_type, constants_size> prefetched_constants_type;
52 
53  BOOST_ALIGNMENT(64)
54  constexpr static const constants_type log_ = {
55  0, 0, 25, 1, 50, 2, 26, 198, 75, 199, 27, 104, 51, 238, 223, 3, 100, 4, 224,
56  14, 52, 141, 129, 239, 76, 113, 8, 200, 248, 105, 28, 193, 125, 194, 29, 181, 249, 185,
57  39, 106, 77, 228, 166, 114, 154, 201, 9, 120, 101, 47, 138, 5, 33, 15, 225, 36, 18,
58  240, 130, 69, 53, 147, 218, 142, 150, 143, 219, 189, 54, 208, 206, 148, 19, 92, 210, 241,
59  64, 70, 131, 56, 102, 221, 253, 48, 191, 6, 139, 98, 179, 37, 226, 152, 34, 136, 145,
60  16, 126, 110, 72, 195, 163, 182, 30, 66, 58, 107, 40, 84, 250, 133, 61, 186, 43, 121,
61  10, 21, 155, 159, 94, 202, 78, 212, 172, 229, 243, 115, 167, 87, 175, 88, 168, 80, 244,
62  234, 214, 116, 79, 174, 233, 213, 231, 230, 173, 232, 44, 215, 117, 122, 235, 22, 11, 245,
63  89, 203, 95, 176, 156, 169, 81, 160, 127, 12, 246, 111, 23, 196, 73, 236, 216, 67, 31,
64  45, 164, 118, 123, 183, 204, 187, 62, 90, 251, 96, 177, 134, 59, 82, 161, 108, 170, 85,
65  41, 157, 151, 178, 135, 144, 97, 190, 220, 252, 188, 149, 207, 205, 55, 63, 91, 209, 83,
66  57, 132, 60, 65, 162, 109, 71, 20, 42, 158, 93, 86, 242, 211, 171, 68, 17, 146, 217,
67  35, 32, 46, 137, 180, 124, 184, 38, 119, 153, 227, 165, 103, 74, 237, 222, 197, 49, 254,
68  24, 13, 99, 140, 128, 192, 247, 112, 7};
69 
70  BOOST_ALIGNMENT(64)
71  constexpr static const constants_type pow_ = {
72  1, 3, 5, 15, 17, 51, 85, 255, 26, 46, 114, 150, 161, 248, 19, 53, 95, 225, 56,
73  72, 216, 115, 149, 164, 247, 2, 6, 10, 30, 34, 102, 170, 229, 52, 92, 228, 55, 89,
74  235, 38, 106, 190, 217, 112, 144, 171, 230, 49, 83, 245, 4, 12, 20, 60, 68, 204, 79,
75  209, 104, 184, 211, 110, 178, 205, 76, 212, 103, 169, 224, 59, 77, 215, 98, 166, 241, 8,
76  24, 40, 120, 136, 131, 158, 185, 208, 107, 189, 220, 127, 129, 152, 179, 206, 73, 219, 118,
77  154, 181, 196, 87, 249, 16, 48, 80, 240, 11, 29, 39, 105, 187, 214, 97, 163, 254, 25,
78  43, 125, 135, 146, 173, 236, 47, 113, 147, 174, 233, 32, 96, 160, 251, 22, 58, 78, 210,
79  109, 183, 194, 93, 231, 50, 86, 250, 21, 63, 65, 195, 94, 226, 61, 71, 201, 64, 192,
80  91, 237, 44, 116, 156, 191, 218, 117, 159, 186, 213, 100, 172, 239, 42, 126, 130, 157, 188,
81  223, 122, 142, 137, 128, 155, 182, 193, 88, 232, 35, 101, 175, 234, 37, 111, 177, 200, 67,
82  197, 84, 252, 31, 33, 99, 165, 244, 7, 9, 27, 45, 119, 153, 176, 203, 70, 202, 69,
83  207, 74, 222, 121, 139, 134, 145, 168, 227, 62, 66, 198, 81, 243, 14, 18, 54, 90, 238,
84  41, 123, 141, 140, 143, 138, 133, 148, 167, 242, 13, 23, 57, 75, 221, 124, 132, 151, 162,
85  253, 28, 36, 108, 180, 199, 82, 246, 1};
86 
87  inline static byte_type mul(byte_type x, byte_type y) {
88  if (x && y) {
89  return pow_[(log_[x] + log_[y]) % 255];
90  } else {
91  return 0;
92  }
93  }
94 
95  inline static typename ::nil::crypto3::detail::basic_functions<WordBits>::word_type
96  rotate_left(typename ::nil::crypto3::detail::basic_functions<WordBits>::word_type x) {
97  uint8_t c = reinterpret_cast<uint8_t *>(&x)[0];
98  for (int i = 0; i < 3; i++) {
99  reinterpret_cast<uint8_t *>(&x)[i] = reinterpret_cast<uint8_t *>(&x)[i + 1];
100  }
101  reinterpret_cast<uint8_t *>(&x)[3] = c;
102  return x;
103  }
104 
105  inline static byte_type xtime(byte_type s) {
106  return static_cast<byte_type>(static_cast<byte_type>(s << 1) ^ ((s >> 7) * 0x1B));
107  }
108 
109  inline static byte_type xtime4(byte_type s) {
110  return xtime(xtime(s));
111  }
112 
113  inline static byte_type xtime8(byte_type s) {
114  return xtime(xtime(xtime(s)));
115  }
116 
117  inline static byte_type xtime3(byte_type s) {
118  return xtime(s) ^ s;
119  }
120 
121  inline static byte_type xtime9(byte_type s) {
122  return xtime8(s) ^ s;
123  }
124 
125  inline static byte_type xtime11(byte_type s) {
126  return xtime8(s) ^ xtime(s) ^ s;
127  }
128 
129  inline static byte_type xtime13(byte_type s) {
130  return xtime8(s) ^ xtime4(s) ^ s;
131  }
132 
133  inline static byte_type xtime14(byte_type s) {
134  return xtime8(s) ^ xtime4(s) ^ xtime(s);
135  }
136 
139 
140  copy_n_if(constants.begin(), result.size(), result.begin(),
141  [](const typename constants_type::value_type &c) ->
142  typename prefetched_constants_type::value_type {
143  return {xtime(c), c, c, xtime3(c)};
144  });
145 
146  return result;
147  }
148 
149  static const prefetched_constants_type
152 
153  copy_n_if(constants.begin(), result.size(), result.begin(),
154  [](const typename constants_type::value_type &c) ->
155  typename prefetched_constants_type::value_type {
156  return {xtime14(c), xtime9(c), xtime13(c), xtime11(c)};
157  });
158 
159  return result;
160  }
161  };
162 
163  template<std::size_t KeyBits, std::size_t BlockBits>
164  BOOST_ALIGNMENT(64)
165  constexpr typename rijndael_functions<KeyBits, BlockBits>::constants_type const
166  rijndael_functions<KeyBits, BlockBits>::log_;
167 
168  template<std::size_t KeyBits, std::size_t BlockBits>
169  BOOST_ALIGNMENT(64)
170  constexpr typename rijndael_functions<KeyBits, BlockBits>::constants_type const
171  rijndael_functions<KeyBits, BlockBits>::pow_;
172  } // namespace detail
173  } // namespace block
174  } // namespace crypto3
175 } // namespace nil
176 
177 #endif // CRYPTO3_RIJNDAEL_FUNCTIONS_CPP_HPP
boost::mpl::apply< AccumulatorSet, tag::block< Mode > >::type::result_type block(const AccumulatorSet &acc)
Definition: accumulators/block.hpp:259
BOOST_ALIGNMENT(64) const expr typename basic_rijndael_policy< KeyBits
TOutputIterator copy_n_if(TInputIterator i_begin, TSize n, TOutputIterator o_begin, TUnaryPredicate predicate)
Combination of std::copy_n and std::copy_if algorithms.
Definition: copy_n_if.hpp:44
boost::uint_t< CHAR_BIT >::exact byte_type
Definition: block/include/nil/crypto3/detail/reverser.hpp:49
Definition: pair.hpp:31
Definition: rijndael_functions.hpp:39
static byte_type xtime8(byte_type s)
Definition: rijndael_functions.hpp:113
constexpr static const constants_type log_
Definition: rijndael_functions.hpp:54
static byte_type xtime4(byte_type s)
Definition: rijndael_functions.hpp:109
static byte_type xtime9(byte_type s)
Definition: rijndael_functions.hpp:121
constexpr static const std::size_t word_bytes
Definition: rijndael_functions.hpp:46
constexpr static const constants_type pow_
Definition: rijndael_functions.hpp:71
static byte_type xtime(byte_type s)
Definition: rijndael_functions.hpp:105
static byte_type mul(byte_type x, byte_type y)
Definition: rijndael_functions.hpp:87
static byte_type xtime14(byte_type s)
Definition: rijndael_functions.hpp:133
::nil::crypto3::detail::basic_functions< WordBits >::byte_type byte_type
Definition: rijndael_functions.hpp:42
constexpr static const std::size_t byte_bits
Definition: rijndael_functions.hpp:40
static typename ::nil::crypto3::detail::basic_functions< WordBits >::word_type rotate_left(typename ::nil::crypto3::detail::basic_functions< WordBits >::word_type x)
Definition: rijndael_functions.hpp:96
static const prefetched_constants_type prefetch_constants(const constants_type &constants)
Definition: rijndael_functions.hpp:137
constexpr static const std::size_t constants_size
Definition: rijndael_functions.hpp:49
static const prefetched_constants_type prefetch_inverted_constants(const constants_type &constants)
Definition: rijndael_functions.hpp:150
std::array< byte_type, constants_size > constants_type
Definition: rijndael_functions.hpp:50
static byte_type xtime13(byte_type s)
Definition: rijndael_functions.hpp:129
std::array< byte_type, word_bytes > word_type
Definition: rijndael_functions.hpp:47
std::array< word_type, constants_size > prefetched_constants_type
Definition: rijndael_functions.hpp:51
static byte_type xtime3(byte_type s)
Definition: rijndael_functions.hpp:117
static byte_type xtime11(byte_type s)
Definition: rijndael_functions.hpp:125
constexpr static const std::size_t word_bits
Definition: rijndael_functions.hpp:44
Definition: block/include/nil/crypto3/detail/basic_functions.hpp:37