Implement support for parsing groups and entries from KeePass 1 databases.

Still missing:
- Key files.
- Twofish encryption.

Refs #2
This commit is contained in:
Felix Geyer 2012-05-09 23:14:27 +02:00
parent 6234065898
commit 79b15e2ac6
6 changed files with 454 additions and 2 deletions

View file

@ -18,6 +18,7 @@
#ifndef KEEPASSX_TESTKEEPASS1READER_H
#define KEEPASSX_TESTKEEPASS1READER_H
#include <QtCore/QDateTime>
#include <QtCore/QObject>
class TestKeePass1Reader : public QObject
@ -27,6 +28,9 @@ class TestKeePass1Reader : public QObject
private Q_SLOTS:
void initTestCase();
void testBasic();
private:
static QDateTime genDT(int year, int month, int day, int hour, int min);
};
#endif // KEEPASSX_TESTKEEPASS1READER_H