#pragma once #include "util/aligned.hpp" #include "util/status.hpp" namespace llarp { struct RouterID : public AlignedBuffer<32> { static constexpr size_t SIZE = 32; using Data = std::array; RouterID() = default; RouterID(const byte_t* buf) : AlignedBuffer(buf) {} RouterID(const Data& data) : AlignedBuffer(data) {} util::StatusObject ExtractStatus() const; std::string ToString() const; std::string ShortString() const; bool FromString(std::string_view str); RouterID& operator=(const byte_t* ptr) { std::copy(ptr, ptr + SIZE, begin()); return *this; } }; inline bool operator==(const RouterID& lhs, const RouterID& rhs) { return lhs.as_array() == rhs.as_array(); } template <> constexpr inline bool IsToStringFormattable = true; } // namespace llarp namespace std { template <> struct hash : hash> {}; } // namespace std