aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui/KeygenThread.h
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-05-18 16:05:26 +0000
committerSaturneric <[email protected]>2021-05-18 16:05:26 +0000
commit8f141756363725866ac4bf2be0af93b3bb46a0d2 (patch)
tree77bbffb97555ac8baae57fa4a8bd13e5793f5c67 /include/ui/KeygenThread.h
parentSupport more Key Generating Algo. (diff)
downloadGpgFrontend-8f141756363725866ac4bf2be0af93b3bb46a0d2.tar.gz
GpgFrontend-8f141756363725866ac4bf2be0af93b3bb46a0d2.zip
Generate Key Upgraded.
RSA & DSA Tested. Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to '')
-rw-r--r--include/ui/KeygenThread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ui/KeygenThread.h b/include/ui/KeygenThread.h
index 467d8338..5f73efdb 100644
--- a/include/ui/KeygenThread.h
+++ b/include/ui/KeygenThread.h
@@ -34,14 +34,14 @@ class KeyGenThread : public QThread {
Q_OBJECT
public:
- KeyGenThread(GenKeyInfo keyGenParams, GpgME::GpgContext *ctx);
+ KeyGenThread(GenKeyInfo *keyGenParams, GpgME::GpgContext *ctx);
signals:
- void signalKeyGenerated();
+ void signalKeyGenerated(bool success);
private:
- GenKeyInfo keyGenParams;
+ GenKeyInfo *keyGenParams;
GpgME::GpgContext *mCtx;
[[maybe_unused]] bool abort;
QMutex mutex;