Skip to content

Commit

Permalink
fix the unintended "running" of the entropy window in the keygen dial…
Browse files Browse the repository at this point in the history
…og and bypasses the "unknown elliptic curve" bug in unattended key generation in newer GnupPG versions.
  • Loading branch information
lherschi committed Aug 20, 2023
1 parent f8e54ec commit ab8cd93
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/keygendialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@
# first test version please comment
#
%echo Generating a default key
Key-Type: default
Subkey-Type: default
Key-Type: RSA
Subkey-Type: RSA
Name-Real:
Name-Comment: QtPass
Name-Email:
Expand Down
3 changes: 3 additions & 0 deletions src/pass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,9 @@ void Pass::finished(int id, int exitCode, const QString &out,
case PASS_COPY:
emit finishedCopy(out, err);
break;
case GPG_GENKEYS:
emit finishedGenerateGPGKeys(out, err);
break;
default:
#ifdef QT_DEBUG
dbg() << "Unhandled process type" << pid;
Expand Down

0 comments on commit ab8cd93

Please sign in to comment.