3b6bb15e86
d9b8fa6098d fix: Fake broadcast address for 127.x.x.x aa649165a57 chore: Add code for future netprof TCP testing 9e5693de5ac chore: add to_string functions for netprof enums 52d915e6a90 cleanup: Heap allocate network profile objects 80fabd4a729 feat: Implement Tox network profiler 05abe083cb6 cleanup: Some random cleanups, mostly related to mem. 5cca24513b8 cleanup: Check that onion IP/Port packing worked. e092ecd1244 cleanup: Use tox memory allocator in some more places. 3cfe41c7587 fix: Avoid `memcpy`-ing structs into onion ping id data. e32ac001938 fix: Add more information on why the frame was not sent. ab887003687 fix: Allow TCP connections to fail `connect` calls. 7603170e663 refactor: Use tox memory in group connection allocations. 5bd8a85eb89 cleanup: Align internal logger with external on type of source line. e9bf524d9e1 cleanup: Add missing `#include` to sort_test.cc. d10c966b998 feat: Add `to_string` functions for toxencryptsave errors. 7bfd0dc8003 docs: Update the docs for group join functions 380dde9f2ae test: Add more logging to TCP connection constructor. 0f12f384c8c cleanup: Reduce stack frame sizes to below 4096 bytes. bc43cec0626 chore: Happy new year! fbe78f1702e cleanup: Add a `TOX_HIDE_DEPRECATED` check to hide deprecated symbols. 44d9da07e77 refactor: Use tox memory for group moderation/pack allocations. 7f26d520168 refactor: Use tox memory in group chats allocations. 2f62f3d0e77 refactor: Use tox Memory for group allocations. 8a968162041 chore: Add dispatch/events headers to bazel export. 2bbfb35abf6 docs: Output the error code string instead of int. in toxav logging d55d0e4eaef cleanup: Remove redundant code for checking if group exists 2a6dc643338 chore: Upgrade dependencies for websockify. fc0650601c1 fix: Allow peers to reconnect to group chats using a password git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: d9b8fa6098de6c074038b6664d2572627540b148
145 lines
3.9 KiB
C++
145 lines
3.9 KiB
C++
#include "crypto_core.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <algorithm>
|
|
#include <array>
|
|
#include <vector>
|
|
|
|
#include "crypto_core_test_util.hh"
|
|
#include "mem_test_util.hh"
|
|
|
|
namespace {
|
|
|
|
using HmacKey = std::array<uint8_t, CRYPTO_HMAC_KEY_SIZE>;
|
|
using Hmac = std::array<uint8_t, CRYPTO_HMAC_SIZE>;
|
|
using SecretKey = std::array<uint8_t, CRYPTO_SECRET_KEY_SIZE>;
|
|
using Signature = std::array<uint8_t, CRYPTO_SIGNATURE_SIZE>;
|
|
using Nonce = std::array<uint8_t, CRYPTO_NONCE_SIZE>;
|
|
|
|
TEST(PkEqual, TwoRandomIdsAreNotEqual)
|
|
{
|
|
std::mt19937 rng;
|
|
std::uniform_int_distribution<unsigned short> dist{0, UINT8_MAX};
|
|
|
|
uint8_t pk1[CRYPTO_PUBLIC_KEY_SIZE];
|
|
uint8_t pk2[CRYPTO_PUBLIC_KEY_SIZE];
|
|
|
|
std::generate(std::begin(pk1), std::end(pk1), [&]() { return dist(rng); });
|
|
std::generate(std::begin(pk2), std::end(pk2), [&]() { return dist(rng); });
|
|
|
|
EXPECT_FALSE(pk_equal(pk1, pk2));
|
|
}
|
|
|
|
TEST(PkEqual, IdCopyMakesKeysEqual)
|
|
{
|
|
std::mt19937 rng;
|
|
std::uniform_int_distribution<unsigned short> dist{0, UINT8_MAX};
|
|
|
|
uint8_t pk1[CRYPTO_PUBLIC_KEY_SIZE];
|
|
uint8_t pk2[CRYPTO_PUBLIC_KEY_SIZE] = {0};
|
|
|
|
std::generate(std::begin(pk1), std::end(pk1), [&]() { return dist(rng); });
|
|
|
|
pk_copy(pk2, pk1);
|
|
|
|
EXPECT_TRUE(pk_equal(pk1, pk2));
|
|
}
|
|
|
|
TEST(CryptoCore, EncryptLargeData)
|
|
{
|
|
Test_Memory mem;
|
|
Test_Random rng;
|
|
|
|
Nonce nonce{};
|
|
PublicKey pk;
|
|
SecretKey sk;
|
|
crypto_new_keypair(rng, pk.data(), sk.data());
|
|
|
|
// 100 MiB of data (all zeroes, doesn't matter what's inside).
|
|
std::vector<uint8_t> plain(100 * 1024 * 1024);
|
|
std::vector<uint8_t> encrypted(plain.size() + CRYPTO_MAC_SIZE);
|
|
|
|
encrypt_data(
|
|
mem, pk.data(), sk.data(), nonce.data(), plain.data(), plain.size(), encrypted.data());
|
|
}
|
|
|
|
TEST(CryptoCore, IncrementNonce)
|
|
{
|
|
Nonce nonce{};
|
|
increment_nonce(nonce.data());
|
|
EXPECT_EQ(
|
|
nonce, (Nonce{{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}}));
|
|
|
|
for (int i = 0; i < 0x1F4; ++i) {
|
|
increment_nonce(nonce.data());
|
|
}
|
|
|
|
EXPECT_EQ(nonce,
|
|
(Nonce{{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01, 0xF5}}));
|
|
}
|
|
|
|
TEST(CryptoCore, IncrementNonceNumber)
|
|
{
|
|
Nonce nonce{};
|
|
|
|
increment_nonce_number(nonce.data(), 0x1F5);
|
|
EXPECT_EQ(nonce,
|
|
(Nonce{{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01, 0xF5}}));
|
|
|
|
increment_nonce_number(nonce.data(), 0x1F5);
|
|
EXPECT_EQ(nonce,
|
|
(Nonce{{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x03, 0xEA}}));
|
|
|
|
increment_nonce_number(nonce.data(), 0x12345678);
|
|
EXPECT_EQ(nonce,
|
|
(Nonce{
|
|
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x12, 0x34, 0x5A, 0x62}}));
|
|
}
|
|
|
|
TEST(CryptoCore, Signatures)
|
|
{
|
|
Test_Random rng;
|
|
|
|
Extended_Public_Key pk;
|
|
Extended_Secret_Key sk;
|
|
|
|
EXPECT_TRUE(create_extended_keypair(&pk, &sk, rng));
|
|
|
|
std::vector<uint8_t> message{0};
|
|
message.clear();
|
|
|
|
// Try a few different sizes, including empty 0 length message.
|
|
for (uint8_t i = 0; i < 100; ++i) {
|
|
Signature signature;
|
|
EXPECT_TRUE(crypto_signature_create(
|
|
signature.data(), message.data(), message.size(), get_sig_sk(&sk)));
|
|
EXPECT_TRUE(crypto_signature_verify(
|
|
signature.data(), message.data(), message.size(), get_sig_pk(&pk)));
|
|
|
|
message.push_back(random_u08(rng));
|
|
}
|
|
}
|
|
|
|
TEST(CryptoCore, Hmac)
|
|
{
|
|
Test_Random rng;
|
|
|
|
HmacKey sk;
|
|
new_hmac_key(rng, sk.data());
|
|
|
|
std::vector<uint8_t> message{0};
|
|
message.clear();
|
|
|
|
// Try a few different sizes, including empty 0 length message.
|
|
for (uint8_t i = 0; i < 100; ++i) {
|
|
Hmac auth;
|
|
crypto_hmac(auth.data(), sk.data(), message.data(), message.size());
|
|
EXPECT_TRUE(crypto_hmac_verify(auth.data(), sk.data(), message.data(), message.size()));
|
|
|
|
message.push_back(random_u08(rng));
|
|
}
|
|
}
|
|
|
|
} // namespace
|