Opened 22 years ago
Last modified 22 years ago
#167 closed Bug report
bug & solution: private key decryption
Reported by: | elahn | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | Other |
Keywords: | Cc: | elahn, Tim Kosse | |
Component version: | Operating system type: | ||
Operating system version: |
Description
Password provided in FileZilla is not used to decrypt the
private key referenced in the PuTTY settings for the
specified host.
In "ssh.c" (revision 1.8):
4128: need_pw = FALSE;
needs to be replaced with:
4128: if (ssh2_userkey_encrypted(cfg.keyfile,
&comment)) {
4129: need_pw = TRUE;
4130: } else {
4131: need_pw = FALSE;
4132: }
Attached is "ssh.c" with the above changes made. I'd
commit them myself, but I'm not a project developer. :)
Regards,
Elahn
Attachments (1)
Change History (2)
by , 22 years ago
comment:1 by , 22 years ago
Thanks for the fix, I've modified it slightly and committed it to
the CVS repository.
FzSFtp/ssh.c modified from Rev. 1.8