1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
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 15:00:50 +01:00
#include <crypto/crypto.hpp>
#include <crypto/crypto_libsodium.hpp>
#include <messages/relay_commit.hpp>
2018-06-20 14:34:48 +02:00
2019-01-13 15:00:50 +01:00
#include <gtest/gtest.h>
2018-06-20 14:34:48 +02:00
using EncryptedFrame = llarp::EncryptedFrame;
using SecretKey = llarp::SecretKey;
using PubKey = llarp::PubKey;
2018-06-21 14:55:02 +02:00
using LRCR = llarp::LR_CommitRecord;
2018-06-20 14:34:48 +02:00
class FrameTest : public ::testing::Test
{
public:
llarp::sodium::CryptoLibSodium crypto;
2018-06-20 14:34:48 +02:00
SecretKey alice, bob;
FrameTest()
2018-06-20 14:34:48 +02: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 14:55:02 +02:00
LRCR record;
record.nextHop.Fill(1);
record.tunnelNonce.Fill(2);
2018-06-22 02:25:30 +02:00
record.rxid.Fill(3);
record.txid.Fill(4);
2018-06-20 14:34:48 +02:00
auto buf = f.Buffer();
2018-12-20 17:49:05 +01:00
buf->cur = buf->base + llarp::EncryptedFrameOverheadSize;
2018-06-20 14:34:48 +02:00
ASSERT_TRUE(record.BEncode(buf));
2018-06-21 14:55:02 +02:00
// rewind buffer
2018-12-20 17:49:05 +01:00
buf->cur = buf->base + llarp::EncryptedFrameOverheadSize;
2018-06-21 14:55:02 +02:00
// encrypt to alice
ASSERT_TRUE(f.EncryptInPlace(alice, bob.toPublic(), &crypto));
2018-06-21 14:55:02 +02:00
// decrypt from alice
2018-06-20 14:34:48 +02:00
ASSERT_TRUE(f.DecryptInPlace(bob, &crypto));
2018-06-21 14:55:02 +02:00
LRCR otherRecord;
ASSERT_TRUE(otherRecord.BDecode(buf));
ASSERT_TRUE(otherRecord == record);
};