mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
24 lines
520 B
C++
24 lines
520 B
C++
#include <gtest/gtest.h>
|
|
#include <llarp/aligned.hpp>
|
|
#include <llarp/encode.hpp>
|
|
#include <llarp/logger.hpp>
|
|
|
|
struct Base32Test : public ::testing::Test
|
|
{
|
|
Base32Test()
|
|
{
|
|
llarp_crypto_libsodium_init(&crypto);
|
|
}
|
|
|
|
llarp_crypto crypto;
|
|
};
|
|
|
|
TEST_F(Base32Test, Serialize)
|
|
{
|
|
llarp::AlignedBuffer< 32 > addr, otherAddr;
|
|
addr.Randomize();
|
|
char tmp[64] = {0};
|
|
std::string encoded = llarp::Base32Encode(addr, tmp);
|
|
ASSERT_TRUE(llarp::Base32Decode(tmp, otherAddr));
|
|
ASSERT_TRUE(otherAddr == addr);
|
|
}; |