2018-12-15 16:21:52 +00:00
|
|
|
#include <pow.hpp>
|
2019-01-14 21:46:07 +00:00
|
|
|
|
2019-05-28 19:45:08 +00:00
|
|
|
#include <crypto/crypto.hpp>
|
2019-01-14 21:46:07 +00:00
|
|
|
#include <util/buffer.hpp>
|
|
|
|
|
|
|
|
#include <cmath>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
2019-07-30 23:42:13 +00:00
|
|
|
PoW::~PoW() = default;
|
2019-01-14 21:46:07 +00:00
|
|
|
|
|
|
|
bool
|
2020-02-23 02:21:38 +00:00
|
|
|
PoW::DecodeKey(const llarp_buffer_t& /*k*/, llarp_buffer_t* /*val*/)
|
2019-01-14 21:46:07 +00:00
|
|
|
{
|
|
|
|
// TODO: implement me
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PoW::BEncode(llarp_buffer_t* buf) const
|
|
|
|
{
|
|
|
|
// TODO: implement me
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!bencode_start_dict(buf))
|
2019-01-14 21:46:07 +00:00
|
|
|
return false;
|
|
|
|
return bencode_end(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-05-28 19:45:08 +00:00
|
|
|
PoW::IsValid(llarp_time_t now) const
|
2019-01-14 21:46:07 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
if (now - timestamp > extendedLifetime)
|
2019-01-14 21:46:07 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
ShortHash digest;
|
2020-04-07 18:38:56 +00:00
|
|
|
std::array<byte_t, MaxSize> tmp;
|
2019-02-02 23:12:42 +00:00
|
|
|
llarp_buffer_t buf(tmp);
|
2019-01-14 21:46:07 +00:00
|
|
|
// encode
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncode(&buf))
|
2019-01-14 21:46:07 +00:00
|
|
|
return false;
|
|
|
|
// rewind
|
2020-04-07 18:38:56 +00:00
|
|
|
buf.sz = buf.cur - buf.base;
|
2019-01-14 21:46:07 +00:00
|
|
|
buf.cur = buf.base;
|
|
|
|
// hash
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!CryptoManager::instance()->shorthash(digest, buf))
|
2019-01-14 21:46:07 +00:00
|
|
|
return false;
|
|
|
|
// check bytes required
|
2020-02-24 19:40:45 +00:00
|
|
|
uint32_t required = std::floor(std::log(extendedLifetime.count()));
|
2020-04-07 18:38:56 +00:00
|
|
|
for (uint32_t idx = 0; idx < required; ++idx)
|
2019-01-14 21:46:07 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
if (digest[idx])
|
2019-01-14 21:46:07 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-01-14 21:46:07 +00:00
|
|
|
} // namespace llarp
|