veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
progpow.hpp
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef VERIBLOCK_POP_CPP_PROGPOW_HPP
7#define VERIBLOCK_POP_CPP_PROGPOW_HPP
8
9#include "progpow/cache.hpp"
10#include "veriblock/pop/serde.hpp"
11#include "veriblock/pop/uint.hpp"
12
13namespace altintegration {
14
15struct kiss99_t;
16
18namespace progpow {
19
21struct hash32_t {
22 uint32_t uint32s[32 / sizeof(uint32_t)];
23
24 hash32_t();
25 std::string toHex() const;
26 bool operator==(const hash32_t& h) const;
27 static hash32_t readLE(ReadStream& rs);
28 static hash32_t readBE(ReadStream& rs);
29};
30
32uint256 getVbkHeaderHash(Slice<const uint8_t> header);
33
35void fill_mix(uint64_t seed, uint32_t lane_id, Slice<uint32_t> mix);
37void keccak_f800(Slice<uint32_t> state);
39hash32_t keccak_f800_progpow(const uint256& header,
40 uint64_t seed,
41 const hash32_t& digest);
43hash32_t keccak_f800_progpow(const hash32_t& header,
44 uint64_t seed,
45 const hash32_t& digest);
47uint32_t math(uint32_t a, uint32_t b, uint32_t r);
49uint32_t merge(uint32_t a, uint32_t b, uint32_t r);
51kiss99_t progPowInit(uint64_t prog_seed,
52 Slice<int> mix_seq_dst,
53 Slice<int> mix_seq_src);
54
55struct ethash_cache;
56
58inline uint32_t ethashGetEpochWithoutOffset(int64_t height) {
59 return (uint32_t)(height / VBK_ETHASH_EPOCH_LENGTH);
60}
61
63inline uint32_t ethashGetEpoch(int64_t height) {
64 return ethashGetEpochWithoutOffset(height) + VBK_ETHASH_EPOCH_OFFSET;
65}
66
69void insertHeaderCacheEntry(Slice<const uint8_t> header, uint192 progpowHash);
71void clearHeaderCache();
73void clearEthashCache();
74
75} // namespace progpow
76
77void setEthashCache(std::unique_ptr<EthashCacheI> cache);
78
79void setProgpowHeaderCache(std::unique_ptr<ProgpowHeaderCacheI> cache);
80
88
90uint192 progPowHash(Slice<const uint8_t> header, progpow::ethash_cache* light);
91
92} // namespace altintegration
93
94#endif // VERIBLOCK_POP_CPP_PROGPOW_HPP
Defines logging helpers.
Definition: block.hpp:14
constexpr const auto VBK_ETHASH_EPOCH_LENGTH
size of 1 ethash epoch in progpow
Definition: consts.hpp:119
Blob< VBK_BLOCK_HASH_SIZE > uint192
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition: uint.hpp:30
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
uint192 progPowHash(Slice< const uint8_t > header)
Calculate vPROGPOW hash of given VbkBlock header (65 bytes)
constexpr const auto VBK_ETHASH_EPOCH_OFFSET
we start at this epoch
Definition: consts.hpp:121
Contiguous byte array of fixed size.
Definition: blob.hpp:25
Non-owning contiguous array.
Definition: slice.hpp:22