You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
Right now connect() in Ssh.java has the following:
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.
The text was updated successfully, but these errors were encountered: