mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-02 11:36:18 -04:00
Implement support for parsing groups and entries from KeePass 1 databases.
Still missing: - Key files. - Twofish encryption. Refs #2
This commit is contained in:
parent
6234065898
commit
79b15e2ac6
6 changed files with 454 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue