RetroShare/tests/unittests/libretroshare/crypto/chacha20_test.cc

13 lines
221 B
C++
Raw Normal View History

2016-10-25 08:09:39 -04:00
#include <gtest/gtest.h>
// from libretroshare
#include "crypto/chacha20.h"
TEST(libretroshare_crypto, ChaCha20)
{
std::cerr << "Testing Chacha20" << std::endl;
EXPECT_TRUE(librs::crypto::perform_tests()) ;
}