summaryrefslogtreecommitdiff
path: root/src/core/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/crypto')
-rw-r--r--src/core/crypto/aes_util.h2
-rw-r--r--src/core/crypto/encryption_layer.h2
-rw-r--r--src/core/crypto/partition_data_manager.cpp6
-rw-r--r--src/core/crypto/partition_data_manager.h2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/core/crypto/aes_util.h b/src/core/crypto/aes_util.h
index a67ba5352..c2fd587a7 100644
--- a/src/core/crypto/aes_util.h
+++ b/src/core/crypto/aes_util.h
@@ -7,7 +7,7 @@
7#include <span> 7#include <span>
8#include <type_traits> 8#include <type_traits>
9#include "common/common_types.h" 9#include "common/common_types.h"
10#include "core/file_sys/vfs.h" 10#include "core/file_sys/vfs/vfs.h"
11 11
12namespace Core::Crypto { 12namespace Core::Crypto {
13 13
diff --git a/src/core/crypto/encryption_layer.h b/src/core/crypto/encryption_layer.h
index d3082ba53..b53f0b12e 100644
--- a/src/core/crypto/encryption_layer.h
+++ b/src/core/crypto/encryption_layer.h
@@ -4,7 +4,7 @@
4#pragma once 4#pragma once
5 5
6#include "common/common_types.h" 6#include "common/common_types.h"
7#include "core/file_sys/vfs.h" 7#include "core/file_sys/vfs/vfs.h"
8 8
9namespace Core::Crypto { 9namespace Core::Crypto {
10 10
diff --git a/src/core/crypto/partition_data_manager.cpp b/src/core/crypto/partition_data_manager.cpp
index 97f5c8cea..4b45e72c4 100644
--- a/src/core/crypto/partition_data_manager.cpp
+++ b/src/core/crypto/partition_data_manager.cpp
@@ -21,9 +21,9 @@
21#include "core/crypto/partition_data_manager.h" 21#include "core/crypto/partition_data_manager.h"
22#include "core/crypto/xts_encryption_layer.h" 22#include "core/crypto/xts_encryption_layer.h"
23#include "core/file_sys/kernel_executable.h" 23#include "core/file_sys/kernel_executable.h"
24#include "core/file_sys/vfs.h" 24#include "core/file_sys/vfs/vfs.h"
25#include "core/file_sys/vfs_offset.h" 25#include "core/file_sys/vfs/vfs_offset.h"
26#include "core/file_sys/vfs_vector.h" 26#include "core/file_sys/vfs/vfs_vector.h"
27#include "core/loader/loader.h" 27#include "core/loader/loader.h"
28 28
29using Common::AsArray; 29using Common::AsArray;
diff --git a/src/core/crypto/partition_data_manager.h b/src/core/crypto/partition_data_manager.h
index 057a70683..4354a21e6 100644
--- a/src/core/crypto/partition_data_manager.h
+++ b/src/core/crypto/partition_data_manager.h
@@ -5,7 +5,7 @@
5 5
6#include <vector> 6#include <vector>
7#include "common/common_types.h" 7#include "common/common_types.h"
8#include "core/file_sys/vfs_types.h" 8#include "core/file_sys/vfs/vfs_types.h"
9 9
10namespace Core::Crypto { 10namespace Core::Crypto {
11 11