1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/pow.hpp

54 lines
1.1 KiB
C++
Raw Normal View History

2018-06-19 00:03:50 +02:00
#ifndef LLARP_POW_HPP
#define LLARP_POW_HPP
2019-01-13 15:00:50 +01:00
#include <crypto/crypto.hpp>
#include <router_id.hpp>
#include <util/bencode.hpp>
2018-06-19 00:03:50 +02:00
namespace llarp
{
/// proof of work
struct PoW final : public IBEncodeMessage
2018-06-19 00:03:50 +02:00
{
static constexpr size_t MaxSize = 128;
2018-07-09 19:32:11 +02:00
uint64_t timestamp = 0;
uint32_t extendedLifetime = 0;
2018-06-21 14:55:02 +02:00
AlignedBuffer< 32 > nonce;
2018-06-19 00:03:50 +02:00
2018-07-09 19:32:11 +02:00
~PoW();
2018-06-19 00:03:50 +02:00
bool
IsValid(shorthash_func hashfunc, llarp_time_t now) const;
2018-06-19 00:03:50 +02:00
bool
2019-02-05 01:41:33 +01:00
DecodeKey(const llarp_buffer_t& k, llarp_buffer_t* val) override;
2018-07-09 19:32:11 +02:00
bool
BEncode(llarp_buffer_t* buf) const override;
2018-06-21 14:55:02 +02:00
bool
operator==(const PoW& other) const
{
2018-07-09 19:32:11 +02:00
return timestamp == other.timestamp && version == other.version
2018-06-21 14:55:02 +02:00
&& extendedLifetime == other.extendedLifetime && nonce == other.nonce;
}
bool
operator!=(const PoW& other) const
{
return !(*this == other);
}
2019-02-25 00:46:37 +01:00
std::ostream&
print(std::ostream& stream, int level, int spaces) const;
2018-06-19 00:03:50 +02:00
};
2019-02-25 00:46:37 +01:00
inline std::ostream&
operator<<(std::ostream& out, const PoW& p)
{
return p.print(out, -1, -1);
}
2018-06-19 00:03:50 +02:00
} // namespace llarp
#endif