Monero
hash.h
Go to the documentation of this file.
1 // Copyright (c) 2014-2018, The Monero Project
2 //
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without modification, are
6 // permitted provided that the following conditions are met:
7 //
8 // 1. Redistributions of source code must retain the above copyright notice, this list of
9 // conditions and the following disclaimer.
10 //
11 // 2. Redistributions in binary form must reproduce the above copyright notice, this list
12 // of conditions and the following disclaimer in the documentation and/or other
13 // materials provided with the distribution.
14 //
15 // 3. Neither the name of the copyright holder nor the names of its contributors may be
16 // used to endorse or promote products derived from this software without specific
17 // prior written permission.
18 //
19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22 // THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27 // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 //
29 // Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
30 
31 #pragma once
32 
33 #include <stddef.h>
34 #include <iostream>
35 #include <boost/utility/value_init.hpp>
36 
37 #include "common/pod-class.h"
38 #include "generic-ops.h"
39 #include "hex.h"
40 #include "span.h"
41 
42 namespace crypto {
43 
44  extern "C" {
45 #include "hash-ops.h"
46  }
47 
48 #pragma pack(push, 1)
50  char data[HASH_SIZE];
51  };
53  char data[8];
54  };
55 #pragma pack(pop)
56 
57  static_assert(sizeof(hash) == HASH_SIZE, "Invalid structure size");
58  static_assert(sizeof(hash8) == 8, "Invalid structure size");
59 
60  /*
61  Cryptonight hash functions
62  */
63 
64  inline void cn_fast_hash(const void *data, std::size_t length, hash &hash) {
65  cn_fast_hash(data, length, reinterpret_cast<char *>(&hash));
66  }
67 
68  inline hash cn_fast_hash(const void *data, std::size_t length) {
69  hash h;
70  cn_fast_hash(data, length, reinterpret_cast<char *>(&h));
71  return h;
72  }
73 
74  inline void cn_slow_hash(const void *data, std::size_t length, hash &hash, int variant = 0) {
75  cn_slow_hash(data, length, reinterpret_cast<char *>(&hash), variant, 0/*prehashed*/);
76  }
77 
78  inline void cn_slow_hash_prehashed(const void *data, std::size_t length, hash &hash, int variant = 0) {
79  cn_slow_hash(data, length, reinterpret_cast<char *>(&hash), variant, 1/*prehashed*/);
80  }
81 
82  inline void tree_hash(const hash *hashes, std::size_t count, hash &root_hash) {
83  tree_hash(reinterpret_cast<const char (*)[HASH_SIZE]>(hashes), count, reinterpret_cast<char *>(&root_hash));
84  }
85 
86  inline std::ostream &operator <<(std::ostream &o, const crypto::hash &v) {
87  epee::to_hex::formatted(o, epee::as_byte_span(v)); return o;
88  }
89  inline std::ostream &operator <<(std::ostream &o, const crypto::hash8 &v) {
90  epee::to_hex::formatted(o, epee::as_byte_span(v)); return o;
91  }
92 
93  const static crypto::hash null_hash = boost::value_initialized<crypto::hash>();
94  const static crypto::hash8 null_hash8 = boost::value_initialized<crypto::hash8>();
95 }
96 
#define CRYPTO_MAKE_COMPARABLE(type)
Definition: generic-ops.h:38
static const crypto::hash8 null_hash8
Definition: hash.h:94
void cn_slow_hash(const void *data, size_t length, char *hash, int variant, int prehashed)
Definition: slow-hash.c:1451
void tree_hash(const char(*hashes)[HASH_SIZE], size_t count, char *root_hash)
Definition: tree-hash.c:70
crypto namespace.
Definition: crypto.cpp:59
static const crypto::hash null_hash
Definition: hash.h:93
void cn_slow_hash_prehashed(const void *data, std::size_t length, hash &hash, int variant=0)
Definition: hash.h:78
#define POD_CLASS
Definition: pod-class.h:43
Definition: hash.h:78
void cn_fast_hash(const void *data, size_t length, char *hash)
Definition: hash.c:46
POD_CLASS hash8
Definition: hash.h:52
POD_CLASS hash
Definition: hash.h:49
std::ostream & operator<<(std::ostream &o, const crypto::public_key &v)
Definition: crypto.h:265
#define CRYPTO_MAKE_HASHABLE(type)
Definition: generic-ops.h:75