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