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
11
namespace
altintegration
{
12
13
struct
kiss99_t;
14
24
uint32_t
kiss99
(kiss99_t& st);
25
27
struct
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
altintegration
Defines logging helpers.
Definition:
block.hpp:14
altintegration::kiss99
uint32_t kiss99(kiss99_t &st)
Calculate KISS99.