From ad10b33a70dcd7220d6cc6bdd177cee780602825 Mon Sep 17 00:00:00 2001 From: hashlag <90853356+hashlag@users.noreply.github.com> Date: Sat, 23 Aug 2025 00:36:39 +0300 Subject: [PATCH] Create basic file structure for Arc4 implementation --- Chaos/Cipher/Arc4.hpp | 9 +++++++++ ChaosTests/Cipher/Arc4Tests.cpp | 5 +++++ 2 files changed, 14 insertions(+) create mode 100644 Chaos/Cipher/Arc4.hpp create mode 100644 ChaosTests/Cipher/Arc4Tests.cpp diff --git a/Chaos/Cipher/Arc4.hpp b/Chaos/Cipher/Arc4.hpp new file mode 100644 index 0000000..b4c3cfc --- /dev/null +++ b/Chaos/Cipher/Arc4.hpp @@ -0,0 +1,9 @@ +#ifndef CHAOS_CIPHER_ARC4_HPP +#define CHAOS_CIPHER_ARC4_HPP + +namespace Chaos::Cipher::Arc4 +{ + +} // namespace Chaos::Cipher::Arc4 + +#endif diff --git a/ChaosTests/Cipher/Arc4Tests.cpp b/ChaosTests/Cipher/Arc4Tests.cpp new file mode 100644 index 0000000..3a01f9e --- /dev/null +++ b/ChaosTests/Cipher/Arc4Tests.cpp @@ -0,0 +1,5 @@ +#include + +#include "Cipher/Arc4.hpp" + +using namespace Chaos::Cipher::Arc4;