mirror of
https://github.com/QRouland/UTPass.git
synced 2025-02-11 23:17:15 +00:00
16 lines
284 B
C++
16 lines
284 B
C++
#include "decryptjob.h"
|
|
|
|
DecryptJob::DecryptJob(QString path, QString keyfile):
|
|
m_path(path)
|
|
{
|
|
this->setObjectName("DecryptJob");
|
|
}
|
|
|
|
|
|
void DecryptJob::run()
|
|
{
|
|
this->load_sec_keyring();
|
|
rnp_input_from_path(&keyfile, "secring.pgp"));
|
|
qFatal("To be implemented !")
|
|
}
|