Browse Source

core/crypto: Remove unnecessary includes

nce_cpp
Lioncash 8 years ago
parent
commit
8b86a89dd5
  1. 2
      src/core/crypto/aes_util.cpp
  2. 2
      src/core/crypto/aes_util.h
  3. 1
      src/core/crypto/encryption_layer.h
  4. 5
      src/core/crypto/key_manager.cpp

2
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"

2
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 {

1
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 {

5
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 {

Loading…
Cancel
Save