2018-12-12 02:52:51 +00:00
|
|
|
#include <messages/exit.hpp>
|
2019-01-13 22:39:10 +00:00
|
|
|
|
2019-02-11 19:45:42 +00:00
|
|
|
#include <crypto/crypto.hpp>
|
2018-12-12 02:04:32 +00:00
|
|
|
#include <routing/handler.hpp>
|
2018-11-12 16:43:40 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace routing
|
|
|
|
{
|
|
|
|
bool
|
2019-05-28 19:45:08 +00:00
|
|
|
ObtainExitMessage::Sign(const llarp::SecretKey& sk)
|
2018-11-12 16:43:40 +00:00
|
|
|
{
|
2019-02-02 23:12:42 +00:00
|
|
|
std::array< byte_t, 1024 > tmp;
|
|
|
|
llarp_buffer_t buf(tmp);
|
2019-02-11 19:45:42 +00:00
|
|
|
I = seckey_topublic(sk);
|
2018-11-12 16:43:40 +00:00
|
|
|
Z.Zero();
|
|
|
|
if(!BEncode(&buf))
|
2019-01-02 01:04:04 +00:00
|
|
|
{
|
2018-11-12 16:43:40 +00:00
|
|
|
return false;
|
2019-01-02 01:04:04 +00:00
|
|
|
}
|
2018-11-12 16:43:40 +00:00
|
|
|
buf.sz = buf.cur - buf.base;
|
2019-05-28 19:45:08 +00:00
|
|
|
return CryptoManager::instance()->sign(Z, sk, buf);
|
2018-11-12 16:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-05-28 19:45:08 +00:00
|
|
|
ObtainExitMessage::Verify() const
|
2018-11-12 16:43:40 +00:00
|
|
|
{
|
2019-02-02 23:12:42 +00:00
|
|
|
std::array< byte_t, 1024 > tmp;
|
|
|
|
llarp_buffer_t buf(tmp);
|
2018-11-12 16:43:40 +00:00
|
|
|
ObtainExitMessage copy;
|
|
|
|
copy = *this;
|
|
|
|
copy.Z.Zero();
|
|
|
|
if(!copy.BEncode(&buf))
|
2019-01-02 01:04:04 +00:00
|
|
|
{
|
2018-11-12 16:43:40 +00:00
|
|
|
return false;
|
2019-01-02 01:04:04 +00:00
|
|
|
}
|
2018-11-12 16:43:40 +00:00
|
|
|
// rewind buffer
|
|
|
|
buf.sz = buf.cur - buf.base;
|
2019-05-28 19:45:08 +00:00
|
|
|
return CryptoManager::instance()->verify(I, buf, Z);
|
2018-11-12 16:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ObtainExitMessage::BEncode(llarp_buffer_t* buf) const
|
|
|
|
{
|
|
|
|
if(!bencode_start_dict(buf))
|
|
|
|
return false;
|
2018-11-14 20:26:13 +00:00
|
|
|
if(!BEncodeWriteDictMsgType(buf, "A", "O"))
|
2018-11-12 16:43:40 +00:00
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictArray("B", B, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictInt("E", E, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictEntry("I", I, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictInt("S", S, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictInt("T", T, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictInt("V", version, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictArray("W", W, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictInt("X", X, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictEntry("Z", Z, buf))
|
|
|
|
return false;
|
|
|
|
return bencode_end(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-02-02 23:12:42 +00:00
|
|
|
ObtainExitMessage::DecodeKey(const llarp_buffer_t& k, llarp_buffer_t* buf)
|
2018-11-12 16:43:40 +00:00
|
|
|
{
|
|
|
|
bool read = false;
|
|
|
|
if(!BEncodeMaybeReadDictList("B", B, read, k, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictInt("E", E, read, k, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictEntry("I", I, read, k, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictInt("S", S, read, k, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictInt("T", T, read, k, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictInt("V", version, read, k, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictList("W", W, read, k, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictInt("X", X, read, k, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictEntry("Z", Z, read, k, buf))
|
|
|
|
return false;
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-02-11 19:45:42 +00:00
|
|
|
ObtainExitMessage::HandleMessage(IMessageHandler* h,
|
|
|
|
AbstractRouter* r) const
|
2018-11-12 16:43:40 +00:00
|
|
|
{
|
2019-04-22 17:38:29 +00:00
|
|
|
return h->HandleObtainExitMessage(*this, r);
|
2018-11-12 16:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace routing
|
2018-12-10 16:26:46 +00:00
|
|
|
} // namespace llarp
|