Rjaylyn / connectbot

Automatically exported from code.google.com/p/connectbot
https://www.google.com.ph/search?ie=UTF-8&client=ms-android-samsung&source=android-browser&q=goolplay+store&gws_rd=cr&ei=59nsVtusNaS1mAXXxJzwBw#aie=aig:xpd&gws_rd=cr
Apache License 2.0
1 stars 0 forks source link

error in DSA host key algorithm name #668

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Can cause problem during negociations of host keys.

In com.trilead.ssh2.transport.KexManager, we have at line 58 :
HOSTKEY_ALGS.add("ssh-dsa");
but should be 
HOSTKEY_ALGS.add("ssh-dss");

since using DSA is the Algorithm used in the DSS Standard.
See the authorized values, e.g. here : 
http://www.ssh.com/manuals/server-zos-admin/62/ConfiguringHostKeyAlgorithms.html

Original issue reported on code.google.com by Houlec...@gmail.com on 6 Oct 2013 at 6:19