Rename Arc4 PRNG .hpp file appropriately

This commit is contained in:
hashlag
2025-08-26 00:01:37 +03:00
parent 1e6d964d26
commit b0f5367085
3 changed files with 4 additions and 4 deletions

View File

@@ -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>

View File

@@ -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)

View File

@@ -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;