mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-10 09:28:47 +00:00
21 lines
359 B
C++
21 lines
359 B
C++
#ifndef PASS_H
|
|
#define PASS_H
|
|
|
|
#include <QObject>
|
|
#include <memory>
|
|
|
|
class Pass : public QObject
|
|
{
|
|
Q_OBJECT
|
|
QString m_password_store;
|
|
|
|
public:
|
|
Pass();
|
|
~Pass() override = default;
|
|
Q_INVOKABLE bool gpgImportKeyFromFile(QString path);
|
|
Q_INVOKABLE QStringList gpgListAllKeys();
|
|
Q_INVOKABLE bool gpgSetGpghome(QString path);
|
|
};
|
|
|
|
#endif
|