diff options
| author | 2023-02-04 00:44:33 -0800 | |
|---|---|---|
| committer | 2023-06-03 00:05:29 -0700 | |
| commit | 93bad47edb38484be11e77c5c447270badc6fb37 (patch) | |
| tree | f4e20b8e2a76a90460bab318c28a524c8c101850 /src/core/crypto/key_manager.cpp | |
| parent | android: EmulationActivity: Temporarily disable running notification. (diff) | |
| download | yuzu-93bad47edb38484be11e77c5c447270badc6fb37.tar.gz yuzu-93bad47edb38484be11e77c5c447270badc6fb37.tar.xz yuzu-93bad47edb38484be11e77c5c447270badc6fb37.zip | |
core: crypto: key_manager: Add methods to reload & validate keys.
Diffstat (limited to 'src/core/crypto/key_manager.cpp')
| -rw-r--r-- | src/core/crypto/key_manager.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/crypto/key_manager.cpp b/src/core/crypto/key_manager.cpp index 65a9fe802..0bd5859d0 100644 --- a/src/core/crypto/key_manager.cpp +++ b/src/core/crypto/key_manager.cpp | |||
| @@ -569,6 +569,10 @@ std::optional<std::pair<Key128, Key128>> ParseTicket(const Ticket& ticket, | |||
| 569 | } | 569 | } |
| 570 | 570 | ||
| 571 | KeyManager::KeyManager() { | 571 | KeyManager::KeyManager() { |
| 572 | ReloadKeys(); | ||
| 573 | } | ||
| 574 | |||
| 575 | void KeyManager::ReloadKeys() { | ||
| 572 | // Initialize keys | 576 | // Initialize keys |
| 573 | const auto yuzu_keys_dir = Common::FS::GetYuzuPath(Common::FS::YuzuPath::KeysDir); | 577 | const auto yuzu_keys_dir = Common::FS::GetYuzuPath(Common::FS::YuzuPath::KeysDir); |
| 574 | 578 | ||
| @@ -702,6 +706,10 @@ void KeyManager::LoadFromFile(const std::filesystem::path& file_path, bool is_ti | |||
| 702 | } | 706 | } |
| 703 | } | 707 | } |
| 704 | 708 | ||
| 709 | bool KeyManager::IsKeysLoaded() const { | ||
| 710 | return !s128_keys.empty() && !s256_keys.empty(); | ||
| 711 | } | ||
| 712 | |||
| 705 | bool KeyManager::BaseDeriveNecessary() const { | 713 | bool KeyManager::BaseDeriveNecessary() const { |
| 706 | const auto check_key_existence = [this](auto key_type, u64 index1 = 0, u64 index2 = 0) { | 714 | const auto check_key_existence = [this](auto key_type, u64 index1 = 0, u64 index2 = 0) { |
| 707 | return !HasKey(key_type, index1, index2); | 715 | return !HasKey(key_type, index1, index2); |