#include #include "getkeysjob.h" #include #include extern "C" { #include #include } GetKeysJob::GetKeysJob(QDir rnp_homedir): RnpJob(rnp_homedir) { this->setObjectName("GetKeysJob"); } void GetKeysJob::run() { qDebug() << "[GetKeysJob] Starting"; // Loading keyring QSet fingerprints = QSet(); this->load_full_keyring(&fingerprints); //Get all infos keys emit resultSuccess(fingerprints); qDebug() << "[GetKeysJob] Finished Successfully "; }