-
Notifications
You must be signed in to change notification settings - Fork 81
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
Enable [email protected] cipher #317
Comments
In this app we have mina sshd 0.x. Your link points to version 2.x. Nevertheless it might be possible to enable chacha20, needs to be checked. |
On Sun Sep 3, 2023 at 3:58 PM CEST, wolpi wrote:
In this app we have mina sshd 0.x. Your link points to version 2.x.
Why do we have this old version?
In this old code base, and support for old Android versions, we still have Java 6. Mina 2.x demands newer Java.
After a short look it seems that Mina 2.x has completley different API. That means a lot of work to integrate it in this app.
Nevertheless it might be possible to enable chacha20, needs to be checked.
Thanks for the fast reply. I see...
|
There is a new attack on chacha20-poly1305: |
Hello, since modern OpenSSH removed arcfour and blowfish, this might be the fastest pure CPU (without AES-NI) cipher we have. But it doesn't seem to be available:
A quick read of mina-sshd (https://github.com/apache/mina-sshd/blob/master/sshd-common/src/main/java/org/apache/sshd/common/cipher/BuiltinCiphers.java#L380) shows it should be available, so why not?
The text was updated successfully, but these errors were encountered: