veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
kiss99.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_KISS99_HPP
7#define VERIBLOCK_POP_CPP_KISS99_HPP
8
9#include <cstdint>
10
11namespace altintegration {
12
13struct kiss99_t;
14
24uint32_t kiss99(kiss99_t& st);
25
27struct kiss99_t {
28 uint32_t z, w, jsr, jcong;
29
30 inline uint32_t operator()() { return kiss99(*this); }
31
32 inline bool operator==(const kiss99_t& o) const {
33 return z == o.z && w == o.w && jsr == o.jsr && jcong == o.jcong;
34 }
35};
36
37} // namespace altintegration
38
39#endif // VERIBLOCK_POP_CPP_KISS99_HPP
Defines logging helpers.
Definition: block.hpp:14
uint32_t kiss99(kiss99_t &st)
Calculate KISS99.