-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed #392 : Added an option to disable SSH key decryption progress bar #395
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR. This looks good. Just a couple of suggestions.
KeeAgent/ExtensionMethods.cs
Outdated
@@ -362,7 +362,7 @@ static byte[] GetPassphrase(this PwEntry entry) | |||
return Encoding.UTF8.GetBytes(passphrase); | |||
} | |||
|
|||
public static ISshKey GetSshKey(this PwEntry entry) | |||
public static ISshKey GetSshKey(this PwEntry entry, KeeAgentExt ext) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of passing the entire extension, can we just have a boolean parameter for enabling/disabling UI?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dlech , sure
@@ -44,6 +44,10 @@ tab. | |||
external key files linked to password entries are missing. This option | |||
is useful when you use the same KeePass database on multiple computers. | |||
|
|||
|
|||
- **Disable SSH key decryption progress bar**: (default: disabled) Do not | |||
show a progress bar during SSH key decryption process. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be helpful to mention that the UI will still be frozen/unresponsive while the keys are being decrypted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dlech , done
…of a simple bool option
…f the new option
Fix for #392
Added an option to disable SSH key decryption progress bar: