Page 4 of 4

Posted: 2018-05-17, 10:22 UTC
by ghisler(Author)
OK, so it's about the Android version. Apparently the keys are using the method aes256-ctr for encrypting the key, which isn't supported by the plugin. Try encrypting the private key with a different method lile aes256-cbc.

Posted: 2018-05-17, 18:38 UTC
by bvsmdjktgc
Perfect with aes256-cbc it works!
Thanks!

Posted: 2018-05-18, 09:45 UTC
by ghisler(Author)
Great! I will check why aes256-ctr isn't supported.

Re:

Posted: 2020-11-20, 16:54 UTC
by gewone
ghisler(Author) wrote: 2016-12-19, 10:41 UTC You need to pass both the public key and private key to the SFTP plugin.
Oh, I've always wondered, why does the SFTP plugin need both keys (.PEM and .PUB) ? With regular SSH, as long as the public key is in the ~/.ssh/authorized_keys file, I only need to supply the private file. Isn't it the "engine" for SFTP as for regular SSH? I'm probably missing some important piece of the puzzle.

Just thought I'd ask.

Re: New plugin available: SFTP

Posted: 2020-11-20, 17:11 UTC
by ghisler(Author)
Yes, normally the private key should be sufficient, but the library I use seems to need both.