X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/062e58118f35e04a9a899e2957545e7593ca5dfc..6668a75e54d5a0f3af36b57180177a7fc09868d4:/ssh.h?ds=sidebyside diff --git a/ssh.h b/ssh.h index 45405d3e..8357f0c4 100644 --- a/ssh.h +++ b/ssh.h @@ -206,6 +206,11 @@ struct ssh_kex { const struct ssh_hash *hash; }; +struct ssh_kexes { + int nkexes; + const struct ssh_kex *const *list; +}; + struct ssh_signkey { void *(*newkey) (char *data, int len); void (*freekey) (void *key); @@ -256,14 +261,16 @@ extern const struct ssh2_ciphers ssh2_blowfish; extern const struct ssh2_ciphers ssh2_arcfour; extern const struct ssh_hash ssh_sha1; extern const struct ssh_hash ssh_sha256; -extern const struct ssh_kex ssh_diffiehellman_group1; -extern const struct ssh_kex ssh_diffiehellman_group14; -extern const struct ssh_kex ssh_diffiehellman_gex; +extern const struct ssh_kexes ssh_diffiehellman_group1; +extern const struct ssh_kexes ssh_diffiehellman_group14; +extern const struct ssh_kexes ssh_diffiehellman_gex; extern const struct ssh_signkey ssh_dss; extern const struct ssh_signkey ssh_rsa; extern const struct ssh_mac ssh_hmac_md5; extern const struct ssh_mac ssh_hmac_sha1; extern const struct ssh_mac ssh_hmac_sha1_buggy; +extern const struct ssh_mac ssh_hmac_sha1_96; +extern const struct ssh_mac ssh_hmac_sha1_96_buggy; /*