Add unit test TestKeePass2Reader.

This commit is contained in:
Felix Geyer
2010-09-20 00:16:30 +02:00
parent 8835565fe3
commit 537ffafefd
6 changed files with 70 additions and 0 deletions

View File

@@ -19,6 +19,15 @@
#include "crypto/CryptoHash.h"
PasswordKey::PasswordKey()
{
}
PasswordKey::PasswordKey(const QString& password)
{
setPassword(password);
}
QByteArray PasswordKey::rawKey() const
{
return m_key;