ed25519 keys not working
See original GitHub issueNot sure if this is an issue here or upstream, but I just wanted to give a heads up that ed25519
host keys do not appear to be supported.
When running e.g.
conn = new require('ssh2')()
conn.connect({
host: 'host.local',
port: "22",
username: "bmh",
agent: process.env['SSH_AUTH_SOCK'],
debug: console.log})
The output includes:
DEBUG: (local) Host key formats: ssh-rsa,ssh-dss DEBUG: (remote) Host key formats: ssh-rsa,ssh-dss,ecdsa-sha2-nistp256,ssh-ed25519
I doubt there’s anything on my end (Mac OS X 10.11.1; node 5.0.0; fresh package install of ssh2@04.12
); it looks like the support is simply not yet in ssh2-streams. I can re-file a bug there, if that is preferable.
🍻
Issue Analytics
- State:
- Created 8 years ago
- Reactions:2
- Comments:18 (8 by maintainers)
Top Results From Across the Web
Ssh-ed25519 key not working with GitLab Enterprise Edition ...
I checked the documentation for Gitlab. It seems that ED25519 key has been supported by Gitlab since version 12.10. Any idea?
Read more >1962414 – ed25519 keys do not work when FIPS is enabled
1. Pull ocp 4.7 installer with 4.7.7 rhcos live iso 2. create ssh ed25519 keys using ssh-keygen -t ed25519 -N '' -f <path>...
Read more >SSH - Key signing of ED25519 style keys does not work
Trying to set up a SSH Cert Authority so I can centralize new key setup rather than modifying the authorized keys on each...
Read more >ED25519 Keys not supported for SSH authentication - JFrog
Problem Description: Currently, it is not possible to use the ED25519 keys with Artifactory. From, the Git client version 2.35.2, RSA keys ...
Read more >Enable ed25519 SSH Keys Auth on Ubuntu 18.04
Troubleshooting SSHD Key Problems · Verify Server Key Permissions · Verify SSH Key File Permissions on Cygwin Client · Verify SSH Key File ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Full Ed25519 support now available in
ssh2
v0.8.3 when used with node v12.0.0.https://github.com/openssl/openssl/issues/309 says “x25519 is in [OpenSSL] 1.1”
Can this be implemented now? I would appreciate it enormously 😃