diff options
author | Lioncash <mathew1800@gmail.com> | 2018-09-04 03:58:19 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-09-04 04:52:24 +0200 |
commit | a813c10e1c71318925f2e65f2b0926099485bbc4 (patch) | |
tree | fc7894ea6e04e565ff4eb29c94b95f8d72a61521 /src/core/crypto/key_manager.cpp | |
parent | Merge pull request #1231 from lioncash/global (diff) | |
download | yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.gz yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.bz2 yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.lz yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.xz yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.zst yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.zip |
Diffstat (limited to 'src/core/crypto/key_manager.cpp')
-rw-r--r-- | src/core/crypto/key_manager.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/crypto/key_manager.cpp b/src/core/crypto/key_manager.cpp index 0b6c07de8..f768533da 100644 --- a/src/core/crypto/key_manager.cpp +++ b/src/core/crypto/key_manager.cpp @@ -8,12 +8,15 @@ #include <locale> #include <sstream> #include <string_view> +#include <tuple> +#include <vector> #include "common/common_paths.h" #include "common/file_util.h" #include "common/hex_util.h" #include "common/logging/log.h" #include "core/crypto/aes_util.h" #include "core/crypto/key_manager.h" +#include "core/loader/loader.h" #include "core/settings.h" namespace Core::Crypto { |