Page 2 of 2

Re: SSH client

Posted: Wed Aug 04, 2021 1:19 am
by punk_joker
It looks great. I will necessarily test when return to home.

Re: SSH client

Posted: Wed Aug 04, 2021 1:17 pm
by hidnplayr
V0.6: Added support for file '/sys/configuration/known_host.ini' to store remote host keys, that will be verified during connection.
V0.7: Added support for RSA with SHA2-256 host authentication
V0.8: Added support for RSA with SHA2-512 host authentication
punk_joker wrote:It looks great. I will necessarily test when return to home.
Thanks!
I'm interested to hear what algorithms your server(s) support, if you are willing to share.

Re: SSH client

Posted: Fri Oct 15, 2021 4:10 am
by dunkaist
I have updated libcrash in #9216, now it includes more algorithms that can be used by a SSH client.
hidnplayr wrote:I'm interested to hear what algorithms your server(s) support, if you are willing to share.
Here is a command to get the information (output attached):

Code: Select all

$ for opt in $(ssh -Q help); do echo -e "\n## $opt"; ssh -Q $opt; done

Re: SSH client

Posted: Fri Oct 15, 2021 9:55 pm
by punk_joker
From my Synology NAS

Re: SSH client

Posted: Wed Mar 06, 2024 11:25 pm
by hidnplayr
V0.10 (svn #9987) now uses the ChaCha20-Poly1305 algorithm.

Re: SSH client

Posted: Sat Mar 09, 2024 11:12 pm
by hidnplayr
V0.11 (svn #9990) now adds support for encrypt-then-mac modes. (Only tested hmac-sha2-256-etm so far)

Re: SSH client

Posted: Sun Mar 10, 2024 9:41 pm
by hidnplayr
V0.12 (svn #9991) encryption and authentication algorithms are no longer hard-coded and will now be selected automatically, as it should be.