passhash/include/nil/crypto3/detail/digest.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_DIGEST_HPP
26 #define CRYPTO3_DIGEST_HPP
27 
28 #include <iostream>
29 
30 #include <boost/static_assert.hpp>
31 #include <boost/assert.hpp>
32 
33 #include <boost/container/small_vector.hpp>
34 
35 #include <nil/crypto3/detail/pack.hpp>
36 #include <nil/crypto3/detail/octet.hpp>
37 
38 namespace nil {
39  namespace crypto3 {
70  template<std::size_t DigestBits>
71  using digest = boost::container::small_vector<octet_type, DigestBits / octet_bits>;
72 
73  namespace detail {
74  template<std::size_t DigestBits, typename OutputIterator>
75  OutputIterator to_ascii(const boost::container::small_vector<octet_type, DigestBits / octet_bits> &d,
76  OutputIterator it) {
77  for (std::size_t j = 0; j < d.size(); ++j) {
78  octet_type b = d[j];
79  *it++ = "0123456789abcdef"[(b >> 4) & 0xF];
80  *it++ = "0123456789abcdef"[(b >> 0) & 0xF];
81  }
82  return it;
83  }
84 
85  template<std::size_t DigestBits>
86  digest<DigestBits / 4 + 1>
87  c_str(const boost::container::small_vector<octet_type, DigestBits / octet_bits> &d) {
88  digest<DigestBits / 4 + 1> s;
89  to_ascii<DigestBits>(d, std::back_inserter(s));
90  s.push_back('\0');
91  return s;
92  }
93  } // namespace detail
94 
103  template<unsigned NewBits, unsigned OldBits>
104  digest<NewBits> resize(const boost::container::small_vector<octet_type, OldBits / octet_bits> &od) {
105  digest<NewBits> nd;
106  unsigned bytes = sizeof(octet_type) * (NewBits < OldBits ? NewBits : OldBits) / octet_bits;
107  std::memcpy(nd.data(), od.data(), bytes);
108  return nd;
109  }
110 
121  template<unsigned NewBits, unsigned OldBits>
122  digest<NewBits> truncate(const boost::container::small_vector<octet_type, OldBits / octet_bits> &od) {
123  BOOST_STATIC_ASSERT(NewBits <= OldBits);
124  return resize<NewBits>(od);
125  }
126 
127  template<unsigned DB1, unsigned DB2>
128  bool operator==(const digest<DB1> &a, const digest<DB2> &b) {
129  unsigned const DB = DB1 < DB2 ? DB2 : DB1;
130  return resize<DB>(a).base_array() == resize<DB>(b).base_array();
131  }
132 
133  template<unsigned DB1, unsigned DB2>
134  bool operator!=(const digest<DB1> &a, const digest<DB2> &b) {
135  return !(a == b);
136  }
137 
138  template<unsigned DB1, unsigned DB2>
139  bool operator<(const digest<DB1> &a, const digest<DB2> &b) {
140  unsigned const DB = DB1 < DB2 ? DB2 : DB1;
141  return resize<DB>(a).base_array() < resize<DB>(b).base_array();
142  }
143 
144  template<unsigned DB1, unsigned DB2>
145  bool operator>(const digest<DB1> &a, const digest<DB2> &b) {
146  return b < a;
147  }
148 
149  template<unsigned DB1, unsigned DB2>
150  bool operator<=(const digest<DB1> &a, const digest<DB2> &b) {
151  return !(b < a);
152  }
153 
154  template<unsigned DB1, unsigned DB2>
155  bool operator>=(const digest<DB1> &a, const digest<DB2> &b) {
156  return !(b > a);
157  }
158 
159  template<unsigned DB>
160  bool operator!=(digest<DB> const &a, char const *b) {
161  BOOST_ASSERT(std::strlen(b) == DB / 4);
162  return static_cast<bool>(std::strcmp(a.cstring().data(), b));
163  }
164 
165  template<unsigned DB>
166  bool operator==(digest<DB> const &a, char const *b) {
167  return !(a != b);
168  }
169 
170  template<unsigned DB>
171  bool operator!=(char const *b, digest<DB> const &a) {
172  return a != b;
173  }
174 
175  template<unsigned DB>
176  bool operator==(char const *b, digest<DB> const &a) {
177  return a == b;
178  }
179 
180  template<unsigned DB>
181  std::ostream &operator<<(std::ostream &sink, digest<DB> const &d) {
182  d.to_ascii(std::ostream_iterator<char>(sink));
183  return sink;
184  }
185 
186  template<unsigned DB>
187  std::istream &operator>>(std::istream &source, digest<DB> &d) {
188  std::array<char, DB / 4> a = {{}};
189  for (unsigned i = 0; i < a.size(); ++i) {
190  char c;
191  if (!source.get(c)) {
192  source.setstate(std::ios::failbit);
193  break;
194  }
195  if (!std::isxdigit(c, source.getloc())) {
196  source.unget();
197  source.setstate(std::ios::failbit);
198  break;
199  }
200 
201  if (std::isdigit(c, source.getloc())) {
202  a[i] = (c - '0');
203  } else {
204  a[i] = std::toupper(c, source.getloc()) - 'A' + 0xA;
205  }
206  }
207  detail::pack<stream_endian::big_bit, 4, 8>(a, d);
208  return source;
209  }
210  } // namespace crypto3
211 } // namespace nil
212 
213 namespace std {
214  template<std::size_t DigestBits>
215  std::string to_string(const nil::crypto3::digest<DigestBits> &d) {
216  nil::crypto3::digest<DigestBits / 4 + 1> cstr = nil::crypto3::detail::c_str(d);
217  return std::string(cstr.begin(), cstr.begin() + cstr.size() - 1);
218  }
219 } // namespace std
220 
221 #endif // CRYPTO3_CODEC_DIGEST_HPP
std::string to_string(const nil::crypto3::digest< DigestBits > &d)
Definition: block/include/nil/crypto3/detail/digest.hpp:248
OutputIterator to_ascii(const digest< DigestBits > &d, OutputIterator it)
Definition: block/include/nil/crypto3/detail/digest.hpp:86
digest< DigestBits/4+1 > c_str(const digest< DigestBits > &d)
Definition: block/include/nil/crypto3/detail/digest.hpp:98
boost::uint_t< octet_bits >::least octet_type
Definition: algebra/include/nil/crypto3/detail/octet.hpp:33
std::istream & operator>>(std::istream &source, digest< DB > &d)
Definition: block/include/nil/crypto3/detail/digest.hpp:220
bool operator>(const digest< DB1 > &a, const digest< DB2 > &b)
Definition: block/include/nil/crypto3/detail/digest.hpp:178
bool operator<(const digest< DB1 > &a, const digest< DB2 > &b)
Definition: block/include/nil/crypto3/detail/digest.hpp:172
bool operator!=(const secure_allocator< T > &, const secure_allocator< U > &)
Definition: secure_allocator.hpp:98
std::ostream & operator<<(std::ostream &sink, digest< DB > const &d)
Definition: block/include/nil/crypto3/detail/digest.hpp:214
bool operator==(const secure_allocator< T > &, const secure_allocator< U > &)
Definition: secure_allocator.hpp:93
digest< DigestBits > resize(const digest< DigestBits > &od, std::size_t new_size)
Definition: block/include/nil/crypto3/detail/digest.hpp:131
boost::container::small_vector< octet_type, DigestBits/octet_bits > digest
Definition: codec/include/nil/crypto3/detail/digest.hpp:71
digest< NewBits > truncate(const digest< OldBits > &od)
Definition: block/include/nil/crypto3/detail/digest.hpp:155
bool operator<=(const digest< DB1 > &a, const digest< DB2 > &b)
Definition: block/include/nil/crypto3/detail/digest.hpp:183
bool operator>=(const digest< DB1 > &a, const digest< DB2 > &b)
Definition: block/include/nil/crypto3/detail/digest.hpp:188
Definition: pair.hpp:31
Definition: block/include/nil/crypto3/detail/digest.hpp:72