Rename Arc4 PRNG .hpp file appropriately
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
#ifndef CHAOS_CIPHER_ARC4_HPP
|
#ifndef CHAOS_CIPHER_ARC4GEN_HPP
|
||||||
#define CHAOS_CIPHER_ARC4_HPP
|
#define CHAOS_CIPHER_ARC4GEN_HPP
|
||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
@@ -14,7 +14,7 @@ FetchContent_MakeAvailable(googletest)
|
|||||||
set(ChaosTests_SOURCE Hash/Md4HasherTests.cpp
|
set(ChaosTests_SOURCE Hash/Md4HasherTests.cpp
|
||||||
Hash/Md5HasherTests.cpp
|
Hash/Md5HasherTests.cpp
|
||||||
Mac/HmacTests.cpp
|
Mac/HmacTests.cpp
|
||||||
Cipher/Arc4Tests.cpp)
|
Cipher/Arc4GenTests.cpp)
|
||||||
|
|
||||||
add_executable(ChaosTests ${ChaosTests_SOURCE})
|
add_executable(ChaosTests ${ChaosTests_SOURCE})
|
||||||
target_link_libraries(ChaosTests gtest gtest_main)
|
target_link_libraries(ChaosTests gtest gtest_main)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
#include "Cipher/Arc4/Arc4.hpp"
|
#include "Cipher/Arc4/Arc4Gen.hpp"
|
||||||
|
|
||||||
using namespace Chaos::Cipher::Arc4;
|
using namespace Chaos::Cipher::Arc4;
|
||||||
|
|
||||||
Reference in New Issue
Block a user