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

77 lines
2 KiB
C++
Raw Normal View History

#include <messages/exit.hpp>
2018-12-12 03:04:32 +01:00
#include <routing/handler.hpp>
#include <crypto/crypto.hpp>
namespace llarp
{
namespace routing
{
bool
CloseExitMessage::BEncode(llarp_buffer_t* buf) const
{
2018-11-14 19:02:27 +01:00
if(!bencode_start_dict(buf))
return false;
if(!BEncodeWriteDictMsgType(buf, "A", "C"))
return false;
if(!BEncodeWriteDictInt("S", S, buf))
return false;
if(!BEncodeWriteDictInt("V", version, buf))
return false;
if(!BEncodeWriteDictEntry("Y", Y, buf))
return false;
if(!BEncodeWriteDictEntry("Z", Z, buf))
return false;
return bencode_end(buf);
}
bool
2019-02-03 00:12:42 +01:00
CloseExitMessage::DecodeKey(const llarp_buffer_t& k, llarp_buffer_t* buf)
{
2018-11-14 19:02:27 +01:00
bool read = false;
if(!BEncodeMaybeReadDictInt("S", S, read, k, buf))
return false;
if(!BEncodeMaybeReadDictInt("V", version, read, k, buf))
return false;
if(!BEncodeMaybeReadDictEntry("Y", Y, read, k, buf))
return false;
if(!BEncodeMaybeReadDictEntry("Z", Z, read, k, buf))
return false;
return read;
}
bool
CloseExitMessage::Verify(const llarp::PubKey& pk) const
2018-11-14 19:02:27 +01:00
{
2019-02-03 00:12:42 +01:00
std::array< byte_t, 512 > tmp;
llarp_buffer_t buf(tmp);
2018-11-14 19:02:27 +01:00
CloseExitMessage copy;
copy = *this;
copy.Z.Zero();
if(!copy.BEncode(&buf))
return false;
buf.sz = buf.cur - buf.base;
return CryptoManager::instance()->verify(pk, buf, Z);
2018-11-14 19:02:27 +01:00
}
bool
CloseExitMessage::Sign(const llarp::SecretKey& sk)
2018-11-14 19:02:27 +01:00
{
2019-02-03 00:12:42 +01:00
std::array< byte_t, 512 > tmp;
llarp_buffer_t buf(tmp);
2018-11-14 19:02:27 +01:00
Z.Zero();
Y.Randomize();
if(!BEncode(&buf))
return false;
buf.sz = buf.cur - buf.base;
return CryptoManager::instance()->sign(Z, sk, buf);
2018-11-14 19:02:27 +01:00
}
bool
CloseExitMessage::HandleMessage(IMessageHandler* h, AbstractRouter* r) const
{
return h->HandleCloseExitMessage(*this, r);
}
} // namespace routing
} // namespace llarp