summaryrefslogtreecommitdiff
path: root/src/core/stdcrypt/encrypt.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-12-01 21:50:29 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-12-01 21:50:29 +0000
commitf0dd963ab37b2ff412b4b1e0b9459d61d42ab9d4 (patch)
treecd685e29b724e79f34bcc085e224069658d0451e /src/core/stdcrypt/encrypt.cpp
parent9966d00cb781bae925ed367edf94c2772e3a8c5e (diff)
method for checking a password
git-svn-id: http://svn.miranda-ng.org/main/trunk@7027 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/stdcrypt/encrypt.cpp')
-rw-r--r--src/core/stdcrypt/encrypt.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/stdcrypt/encrypt.cpp b/src/core/stdcrypt/encrypt.cpp
index 5be76f1c54..1616ac376f 100644
--- a/src/core/stdcrypt/encrypt.cpp
+++ b/src/core/stdcrypt/encrypt.cpp
@@ -104,6 +104,12 @@ void CStdCrypt::purgeKey(void)
m_valid = false;
}
+// checks the master password (in utf-8)
+bool CStdCrypt::checkPassword(const char *pszPassword)
+{
+ return m_password == pszPassword;
+}
+
// sets the master password (in utf-8)
void CStdCrypt::setPassword(const char *pszPassword)
{