veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
ethash.hpp
1/*
2 This file is part of ethash.
3
4 ethash is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
8
9 ethash is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with ethash. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include <cstdint>
21#include <string>
22#include <veriblock/pop/uint.hpp>
23
24#define VBK_ETHASH_REVISION 23
25#define VBK_ETHASH_DATASET_BYTES_INIT 1073741824U // 2**30
26#define VBK_ETHASH_DATASET_BYTES_GROWTH 8388608U // 2**23
27#define VBK_ETHASH_CACHE_BYTES_INIT 1073741824U // 2**24
28#define VBK_ETHASH_CACHE_BYTES_GROWTH 131072U // 2**17
29#define VBK_ETHASH_MIX_BYTES 128
30#define VBK_ETHASH_HASH_BYTES 64
31#define VBK_ETHASH_DATASET_PARENTS 256
32#define VBK_ETHASH_CACHE_ROUNDS 3
33#define VBK_ETHASH_ACCESSES 64
34#define VBK_ETHASH_DAG_NODE_SIZE (VBK_ETHASH_HASH_BYTES / 4)
35
36namespace altintegration {
37namespace progpow {
38
40struct ethash_cache {
41 void* cache;
42 uint64_t cache_size;
43 uint64_t epoch;
44};
45
47typedef struct ethash_dag_node {
48 uint32_t words[VBK_ETHASH_DAG_NODE_SIZE];
49} ethash_dag_node_t;
50
52void ethash_calculate_dag_node(ethash_dag_node_t* out,
53 uint32_t node_index,
54 ethash_cache* const light);
55
66ethash_cache* ethash_light_new(uint64_t block_number);
72void ethash_light_delete(ethash_cache* light);
73
78uint256 ethash_calculate_seedhash(uint64_t block_number);
79
81uint256 ethash_get_seedhash(uint64_t block_number);
82
84std::shared_ptr<ethash_cache> ethash_make_cache(uint64_t block_number);
85
86} // namespace progpow
87} // namespace altintegration
Defines logging helpers.
Definition: block.hpp:14
Blob< SHA256_HASH_SIZE > uint256
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition: uint.hpp:24