Monero
hash.h
Go to the documentation of this file.
1 // Copyright (c) 2014-2022, 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 
36 #include "common/pod-class.h"
37 #include "generic-ops.h"
38 #include "hex.h"
39 #include "span.h"
40 
41 namespace crypto {
42 
43  extern "C" {
44 #include "hash-ops.h"
45  }
46 
47 #pragma pack(push, 1)
49  char data[HASH_SIZE];
50  };
52  char data[8];
53  };
54 #pragma pack(pop)
55 
56  static_assert(sizeof(hash) == HASH_SIZE, "Invalid structure size");
57  static_assert(sizeof(hash8) == 8, "Invalid structure size");
58 
59  /*
60  Cryptonight hash functions
61  */
62 
63  inline void cn_fast_hash(const void *data, std::size_t length, hash &hash) {
64  cn_fast_hash(data, length, reinterpret_cast<char *>(&hash));
65  }
66 
67  inline hash cn_fast_hash(const void *data, std::size_t length) {
68  hash h;
69  cn_fast_hash(data, length, reinterpret_cast<char *>(&h));
70  return h;
71  }
72 
73  inline void cn_slow_hash(const void *data, std::size_t length, hash &hash, int variant = 0, uint64_t height = 0) {
74  cn_slow_hash(data, length, reinterpret_cast<char *>(&hash), variant, 0/*prehashed*/, height);
75  }
76 
77  inline void cn_slow_hash_prehashed(const void *data, std::size_t length, hash &hash, int variant = 0, uint64_t height = 0) {
78  cn_slow_hash(data, length, reinterpret_cast<char *>(&hash), variant, 1/*prehashed*/, height);
79  }
80 
81  inline void tree_hash(const hash *hashes, std::size_t count, hash &root_hash) {
82  tree_hash(reinterpret_cast<const char (*)[HASH_SIZE]>(hashes), count, reinterpret_cast<char *>(&root_hash));
83  }
84 
85  inline std::ostream &operator <<(std::ostream &o, const crypto::hash &v) {
87  }
88  inline std::ostream &operator <<(std::ostream &o, const crypto::hash8 &v) {
90  }
91 
92  constexpr static crypto::hash null_hash = {};
93  constexpr static crypto::hash8 null_hash8 = {};
94 }
95 
#define CRYPTO_MAKE_COMPARABLE(type)
Definition: generic-ops.h:39
span< const std::uint8_t > as_byte_span(const T &src) noexcept
Definition: span.h:161
int * count
Definition: gmock_stress_test.cc:176
static constexpr crypto::hash8 null_hash8
Definition: hash.h:93
void tree_hash(const char(*hashes)[HASH_SIZE], size_t count, char *root_hash)
Definition: tree-hash.c:62
std::string data
Definition: base58.cpp:37
crypto namespace.
Definition: crypto.cpp:60
struct hash_func hashes[]
#define POD_CLASS
Definition: pod-class.h:43
void cn_slow_hash_prehashed(const void *data, std::size_t length, hash &hash, int variant=0, uint64_t height=0)
Definition: hash.h:77
unsigned __int64 uint64_t
Definition: stdint.h:136
static constexpr crypto::hash null_hash
Definition: hash.h:92
void cn_fast_hash(const void *data, size_t length, char *hash)
Definition: hash.c:53
POD_CLASS hash8
Definition: hash.h:51
POD_CLASS hash
Definition: hash.h:48
void cn_slow_hash(const void *data, size_t length, char *hash, int variant, int prehashed, uint64_t height)
std::ostream & operator<<(std::ostream &o, const crypto::public_key &v)
Definition: crypto.h:316
#define CRYPTO_MAKE_HASHABLE(type)
Definition: generic-ops.h:80
static uint64_t h
Definition: blockchain_stats.cpp:55
static void formatted(std::ostream &out, const span< const std::uint8_t > src)
Append < + src + > as hex to out.
Definition: hex.cpp:77
Definition: hash.h:78