From c6213570976455e6bdcb1147f3eb254bb446f843 Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Sun, 6 Feb 2022 22:06:46 +0100 Subject: [PATCH] Include-statement cleanup --- GhettoCrypt/GhettoCryptWrapper.cpp | 1 - GhettoCrypt/Util.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/GhettoCrypt/GhettoCryptWrapper.cpp b/GhettoCrypt/GhettoCryptWrapper.cpp index b610ae7..2e19a13 100644 --- a/GhettoCrypt/GhettoCryptWrapper.cpp +++ b/GhettoCrypt/GhettoCryptWrapper.cpp @@ -1,7 +1,6 @@ #include "GhettoCryptWrapper.h" #include "Cipher.h" #include "Util.h" -#include std::string GhettoCipher::GhettoCryptWrapper::EncryptString(const std::string& cleartext, const std::string& password) { diff --git a/GhettoCrypt/Util.h b/GhettoCrypt/Util.h index 18b9248..7db3e7c 100644 --- a/GhettoCrypt/Util.h +++ b/GhettoCrypt/Util.h @@ -2,11 +2,11 @@ #include #include #include +#include #include "SecureBitset.h" #include "Block.h" #include "Flexblock.h" #include "InitializationVector.h" -#include namespace GhettoCipher {