mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
13 lines
221 B
C++
13 lines
221 B
C++
#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()) ;
|
|
}
|