diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-04 22:41:17 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-04 22:44:07 +0200 |
commit | 8da651ac4d25fbb48f77b8331b61f3cfa26e8f2c (patch) | |
tree | 684235ba6a8883bad70e2a249c03c04130361816 /src/core/crypto/key_manager.cpp | |
parent | key_manager: Use regular std::string instead of std::string_view (diff) | |
download | yuzu-8da651ac4d25fbb48f77b8331b61f3cfa26e8f2c.tar yuzu-8da651ac4d25fbb48f77b8331b61f3cfa26e8f2c.tar.gz yuzu-8da651ac4d25fbb48f77b8331b61f3cfa26e8f2c.tar.bz2 yuzu-8da651ac4d25fbb48f77b8331b61f3cfa26e8f2c.tar.lz yuzu-8da651ac4d25fbb48f77b8331b61f3cfa26e8f2c.tar.xz yuzu-8da651ac4d25fbb48f77b8331b61f3cfa26e8f2c.tar.zst yuzu-8da651ac4d25fbb48f77b8331b61f3cfa26e8f2c.zip |
Diffstat (limited to 'src/core/crypto/key_manager.cpp')
-rw-r--r-- | src/core/crypto/key_manager.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/core/crypto/key_manager.cpp b/src/core/crypto/key_manager.cpp index 45e7e8545..fc45e7ab5 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 { |