summaryrefslogtreecommitdiffstats
path: root/src/core/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/crypto')
-rw-r--r--src/core/crypto/key_manager.cpp2
-rw-r--r--src/core/crypto/key_manager.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/crypto/key_manager.cpp b/src/core/crypto/key_manager.cpp
index 0bd5859d0..4ff2c50e5 100644
--- a/src/core/crypto/key_manager.cpp
+++ b/src/core/crypto/key_manager.cpp
@@ -706,7 +706,7 @@ void KeyManager::LoadFromFile(const std::filesystem::path& file_path, bool is_ti
}
}
-bool KeyManager::IsKeysLoaded() const {
+bool KeyManager::AreKeysLoaded() const {
return !s128_keys.empty() && !s256_keys.empty();
}
diff --git a/src/core/crypto/key_manager.h b/src/core/crypto/key_manager.h
index fb991ae54..8c864503b 100644
--- a/src/core/crypto/key_manager.h
+++ b/src/core/crypto/key_manager.h
@@ -268,7 +268,7 @@ public:
bool AddTicketPersonalized(Ticket raw);
void ReloadKeys();
- bool IsKeysLoaded() const;
+ bool AreKeysLoaded() const;
private:
KeyManager();