6#ifndef VERIBLOCK_POP_CPP_PROGPOW_HPP
7#define VERIBLOCK_POP_CPP_PROGPOW_HPP
9#include "progpow/cache.hpp"
10#include "veriblock/pop/serde.hpp"
11#include "veriblock/pop/uint.hpp"
22 uint32_t uint32s[32 /
sizeof(uint32_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);
32uint256 getVbkHeaderHash(Slice<const uint8_t> header);
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,
41 const hash32_t& digest);
43hash32_t keccak_f800_progpow(
const hash32_t& header,
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);
58inline uint32_t ethashGetEpochWithoutOffset(int64_t height) {
63inline uint32_t ethashGetEpoch(int64_t height) {
69void insertHeaderCacheEntry(Slice<const uint8_t> header,
uint192 progpowHash);
71void clearHeaderCache();
73void clearEthashCache();
77void setEthashCache(std::unique_ptr<EthashCacheI> cache);
79void setProgpowHeaderCache(std::unique_ptr<ProgpowHeaderCacheI> cache);
constexpr const auto VBK_ETHASH_EPOCH_LENGTH
size of 1 ethash epoch in progpow
Blob< VBK_BLOCK_HASH_SIZE > uint192
This is an overloaded member function, provided for convenience. It differs from the above function o...
Blob< SHA256_HASH_SIZE > uint256
This is an overloaded member function, provided for convenience. It differs from the above function o...
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
Contiguous byte array of fixed size.
Non-owning contiguous array.