aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2015-04-05 17:25:43 -0700
committerKenny Root <kenny@the-b.org>2015-04-05 17:27:32 -0700
commit149080bc7dcbdbe310e39891e6a9dff0ceec8e8b (patch)
tree829526c3482d765db27d3ef95b2c95897b8a3810 /src
parent9d23e76add914cfa58eaef6ecd900778a3d5a71b (diff)
downloadconnectbot-149080bc7dcbdbe310e39891e6a9dff0ceec8e8b.tar.gz
connectbot-149080bc7dcbdbe310e39891e6a9dff0ceec8e8b.tar.bz2
connectbot-149080bc7dcbdbe310e39891e6a9dff0ceec8e8b.zip
Fix ssh-dss host key support
This string was accidentally renamed to "ssh-dsa" during refactoring. DSA should die and go away, but the SSH standard said that was the only required algorithm when it was created. Change-Id: Ia533eac55692289de8042f6f95714b577941ca3f
Diffstat (limited to 'src')
-rw-r--r--src/com/trilead/ssh2/transport/KexManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/trilead/ssh2/transport/KexManager.java b/src/com/trilead/ssh2/transport/KexManager.java
index acf2812..ee0784a 100644
--- a/src/com/trilead/ssh2/transport/KexManager.java
+++ b/src/com/trilead/ssh2/transport/KexManager.java
@@ -70,7 +70,7 @@ public class KexManager
HOSTKEY_ALGS.add("ecdsa-sha2-nistp521");
}
HOSTKEY_ALGS.add("ssh-rsa");
- HOSTKEY_ALGS.add("ssh-dsa");
+ HOSTKEY_ALGS.add("ssh-dss");
}
private static final Set<String> KEX_ALGS = new LinkedHashSet<String>();