You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/router_id.cpp

28 lines
577 B
C++

#include <router_id.hpp>
namespace llarp
{
std::string
RouterID::ToString() const
{
char stack[64] = {0};
return std::string(llarp::Base32Encode(*this, stack)) + ".snode";
}
util::StatusObject
RouterID::ExtractStatus() const
{
util::StatusObject obj{{"snode", ToString()}, {"hex", ToHex()}};
return obj;
}
bool
RouterID::FromString(const std::string& str)
{
auto pos = str.find(".snode");
if(pos == std::string::npos || pos == 0)
return false;
return Base32Decode(str.substr(0, pos), *this);
}
} // namespace llarp