lokinet/test/test_llarp_encrypted_frame.cpp

67 lines
1.3 KiB
C++
Raw Normal View History

#include <crypto/encrypted_frame.hpp>
2019-01-13 14:00:50 +00:00
#include <crypto/crypto.hpp>
#include <crypto/crypto_libsodium.hpp>
#include <messages/relay_commit.hpp>
2018-06-20 12:34:48 +00:00
2019-01-13 14:00:50 +00:00
#include <gtest/gtest.h>
2018-06-20 12:34:48 +00:00
using EncryptedFrame = llarp::EncryptedFrame;
using SecretKey = llarp::SecretKey;
using PubKey = llarp::PubKey;
2018-06-21 12:55:02 +00:00
using LRCR = llarp::LR_CommitRecord;
2018-06-20 12:34:48 +00:00
class FrameTest : public ::testing::Test
{
public:
llarp::sodium::CryptoLibSodium crypto;
2018-06-20 12:34:48 +00:00
SecretKey alice, bob;
FrameTest()
2018-06-20 12:34:48 +00:00
{
}
~FrameTest()
{
}
void
SetUp()
{
crypto.encryption_keygen(alice);
crypto.encryption_keygen(bob);
}
void
TearDown()
{
}
};
TEST_F(FrameTest, TestFrameCrypto)
{
EncryptedFrame f(256);
f.Fill(0);
2018-06-21 12:55:02 +00:00
LRCR record;
record.nextHop.Fill(1);
record.tunnelNonce.Fill(2);
2018-06-22 00:25:30 +00:00
record.rxid.Fill(3);
record.txid.Fill(4);
2018-06-20 12:34:48 +00:00
auto buf = f.Buffer();
2018-12-20 16:49:05 +00:00
buf->cur = buf->base + llarp::EncryptedFrameOverheadSize;
2018-06-20 12:34:48 +00:00
ASSERT_TRUE(record.BEncode(buf));
2018-06-21 12:55:02 +00:00
// rewind buffer
2018-12-20 16:49:05 +00:00
buf->cur = buf->base + llarp::EncryptedFrameOverheadSize;
2018-06-21 12:55:02 +00:00
// encrypt to alice
ASSERT_TRUE(f.EncryptInPlace(alice, bob.toPublic(), &crypto));
2018-06-21 12:55:02 +00:00
// decrypt from alice
2018-06-20 12:34:48 +00:00
ASSERT_TRUE(f.DecryptInPlace(bob, &crypto));
2018-06-21 12:55:02 +00:00
LRCR otherRecord;
ASSERT_TRUE(otherRecord.BDecode(buf));
ASSERT_TRUE(otherRecord == record);
};