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:
3
ssh.c
3
ssh.c
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user