1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-02-11 23:17:15 +00:00
UTPass/plugins/Pass/jobs/decryptjob.cpp

16 lines
284 B
C++
Raw Normal View History

2025-01-29 16:42:37 +01:00
#include "decryptjob.h"
DecryptJob::DecryptJob(QString path, QString keyfile):
m_path(path)
{
this->setObjectName("DecryptJob");
}
void DecryptJob::run()
{
2025-02-01 13:45:55 +01:00
this->load_sec_keyring();
2025-01-29 16:42:37 +01:00
rnp_input_from_path(&keyfile, "secring.pgp"));
qFatal("To be implemented !")
}