lokinet/llarp/pow.cpp

69 lines
1.4 KiB
C++
Raw Normal View History

2018-12-15 16:21:52 +00:00
#include <pow.hpp>
#include <crypto/crypto.hpp>
#include <util/buffer.hpp>
#include <cmath>
namespace llarp
{
2019-07-30 23:42:13 +00:00
PoW::~PoW() = default;
bool
2020-02-23 02:21:38 +00:00
PoW::DecodeKey(const llarp_buffer_t& /*k*/, llarp_buffer_t* /*val*/)
{
// TODO: implement me
return false;
}
bool
PoW::BEncode(llarp_buffer_t* buf) const
{
// TODO: implement me
if (!bencode_start_dict(buf))
return false;
return bencode_end(buf);
}
bool
PoW::IsValid(llarp_time_t now) const
{
if (now - timestamp > extendedLifetime)
return false;
ShortHash digest;
std::array<byte_t, MaxSize> tmp;
2019-02-02 23:12:42 +00:00
llarp_buffer_t buf(tmp);
// encode
if (!BEncode(&buf))
return false;
// rewind
buf.sz = buf.cur - buf.base;
buf.cur = buf.base;
// hash
if (!CryptoManager::instance()->shorthash(digest, buf))
return false;
// check bytes required
2020-02-24 19:40:45 +00:00
uint32_t required = std::floor(std::log(extendedLifetime.count()));
for (uint32_t idx = 0; idx < required; ++idx)
{
if (digest[idx])
return false;
}
return true;
}
2019-02-24 23:46:37 +00:00
std::ostream&
PoW::print(std::ostream& stream, int level, int spaces) const
{
Printer printer(stream, level, spaces);
2020-02-24 19:40:45 +00:00
printer.printAttribute("pow timestamp", timestamp.count());
printer.printAttribute("lifetime", extendedLifetime.count());
2019-02-24 23:46:37 +00:00
printer.printAttribute("nonce", nonce);
return stream;
}
} // namespace llarp