22#include <veriblock/pop/uint.hpp>
24#define VBK_ETHASH_REVISION 23
25#define VBK_ETHASH_DATASET_BYTES_INIT 1073741824U
26#define VBK_ETHASH_DATASET_BYTES_GROWTH 8388608U
27#define VBK_ETHASH_CACHE_BYTES_INIT 1073741824U
28#define VBK_ETHASH_CACHE_BYTES_GROWTH 131072U
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)
47typedef struct ethash_dag_node {
48 uint32_t words[VBK_ETHASH_DAG_NODE_SIZE];
52void ethash_calculate_dag_node(ethash_dag_node_t* out,
54 ethash_cache*
const light);
66ethash_cache* ethash_light_new(uint64_t block_number);
72void ethash_light_delete(ethash_cache* light);
78uint256 ethash_calculate_seedhash(uint64_t block_number);
81uint256 ethash_get_seedhash(uint64_t block_number);
84std::shared_ptr<ethash_cache> ethash_make_cache(uint64_t block_number);
Blob< SHA256_HASH_SIZE > uint256
This is an overloaded member function, provided for convenience. It differs from the above function o...