Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/Crypto.h')
-rw-r--r--src/crypto/Crypto.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crypto/Crypto.h b/src/crypto/Crypto.h
index 379068eb4..4346f5055 100644
--- a/src/crypto/Crypto.h
+++ b/src/crypto/Crypto.h
@@ -24,10 +24,10 @@ class Crypto
{
public:
static bool init();
- static bool initalized();
+ static bool initialized();
static bool backendSelfTest();
static QString errorString();
- static QString backendVersion();
+ static QString debugInfo();
private:
Crypto();
@@ -42,7 +42,7 @@ private:
static bool testSalsa20();
static bool testChaCha20();
- static bool m_initalized;
+ static bool m_initialized;
static QString m_errorStr;
static QString m_backendVersion;
};