diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-04 16:41:17 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-04 16:44:07 -0400 |
commit | 8da651ac4d25fbb48f77b8331b61f3cfa26e8f2c (patch) | |
tree | 684235ba6a8883bad70e2a249c03c04130361816 | |
parent | c1f76abfafc3723b3b216d7985ec18d895699afc (diff) |
core/crypto: Remove unnecessary includes
-rw-r--r-- | src/core/crypto/aes_util.cpp | 2 | ||||
-rw-r--r-- | src/core/crypto/aes_util.h | 2 | ||||
-rw-r--r-- | src/core/crypto/encryption_layer.h | 1 | ||||
-rw-r--r-- | src/core/crypto/key_manager.cpp | 5 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/core/crypto/aes_util.cpp b/src/core/crypto/aes_util.cpp index 4690af5f83..3d939da15d 100644 --- a/src/core/crypto/aes_util.cpp +++ b/src/core/crypto/aes_util.cpp @@ -3,6 +3,8 @@ // Refer to the license.txt file included. #include <mbedtls/cipher.h> +#include "common/assert.h" +#include "common/logging/log.h" #include "core/crypto/aes_util.h" #include "core/crypto/key_manager.h" diff --git a/src/core/crypto/aes_util.h b/src/core/crypto/aes_util.h index 5b0b02738e..81fa0d73f8 100644 --- a/src/core/crypto/aes_util.h +++ b/src/core/crypto/aes_util.h @@ -7,7 +7,7 @@ #include <memory> #include <type_traits> #include <vector> -#include "common/assert.h" +#include "common/common_types.h" #include "core/file_sys/vfs.h" namespace Core::Crypto { diff --git a/src/core/crypto/encryption_layer.h b/src/core/crypto/encryption_layer.h index 71bca1f23c..7f05af9b4f 100644 --- a/src/core/crypto/encryption_layer.h +++ b/src/core/crypto/encryption_layer.h @@ -4,6 +4,7 @@ #pragma once +#include "common/common_types.h" #include "core/file_sys/vfs.h" namespace Core::Crypto { diff --git a/src/core/crypto/key_manager.cpp b/src/core/crypto/key_manager.cpp index 45e7e85451..fc45e7ab57 100644 --- a/src/core/crypto/key_manager.cpp +++ b/src/core/crypto/key_manager.cpp @@ -2,19 +2,16 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <algorithm> #include <array> #include <fstream> #include <locale> #include <sstream> #include <string_view> -#include <mbedtls/sha256.h> -#include "common/assert.h" #include "common/common_paths.h" #include "common/file_util.h" -#include "common/logging/log.h" #include "core/crypto/key_manager.h" #include "core/settings.h" -#include "key_manager.h" namespace Core::Crypto { |