Skip to content
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

Support for ed25519 ssh client authentication keys #332

Open
amorsen opened this issue Jan 17, 2025 · 0 comments
Open

Support for ed25519 ssh client authentication keys #332

amorsen opened this issue Jan 17, 2025 · 0 comments

Comments

@amorsen
Copy link

amorsen commented Jan 17, 2025

Right now connect() in Ssh.java has the following:

					public String getAlgName() {
						switch (kpair.getKeyType()) {
						case KeyPair.RSA:
							return "ssh-rsa";
						case KeyPair.DSA:
							return "ssh-dss";
						case KeyPair.ERROR:
							return "ERROR";

Would it be possible to extend that to support other key types, such as ed25519? RSA and DSA keys are getting deprecated in many organizations.

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants