Fix missing includes.

This commit is contained in:
hashlag
2026-07-20 02:53:13 +03:00
parent e6eb390469
commit 1adec1115c
18 changed files with 42 additions and 0 deletions
+2
View File
@@ -2,6 +2,8 @@
#include <vector>
#include <string>
#include <array>
#include <cstdint>
#include <cstring>
#include "Cipher/Arc4/Arc4Crypt.hpp"
#include "Service/ChaosException.hpp"
+5
View File
@@ -1,6 +1,11 @@
#include <gtest/gtest.h>
#include <cstdint>
#include <array>
#include <iterator>
#include <cstring>
#include "Cipher/Arc4/Arc4Gen.hpp"
#include "Service/ChaosException.hpp"
using namespace Chaos::Cipher::Arc4;
+5
View File
@@ -1,7 +1,12 @@
#include <gtest/gtest.h>
#include <cstdint>
#include <array>
#include <vector>
#include "Cipher/Block/Des/DesCrypt.hpp"
#include "Cipher/Block/Encryptor.hpp"
#include "Cipher/Block/Decryptor.hpp"
#include "Service/ChaosException.hpp"
using namespace Chaos::Cipher::Block::Des;
using namespace Chaos::Cipher::Block;