1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-09 15:23:50 -05:00

Added support for RSA host keys (not user keys yet)

[originally from svn r969]
This commit is contained in:
Simon Tatham
2001-03-02 17:13:36 +00:00
parent 902d0636fc
commit 97ace7d80d
2 changed files with 194 additions and 1 deletions

3
ssh.c
View File

@ -197,7 +197,8 @@ const static struct ssh_kex *kex_algs[] = {
&ssh_diffiehellman };
extern const struct ssh_signkey ssh_dss;
const static struct ssh_signkey *hostkey_algs[] = { &ssh_dss };
extern const struct ssh_signkey ssh_rsa;
const static struct ssh_signkey *hostkey_algs[] = { &ssh_rsa, &ssh_dss };
extern const struct ssh_mac ssh_md5, ssh_sha1, ssh_sha1_buggy;