X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=putty.h;h=5f46b066f2ac6e48fcf9ec19f899ae55001d9106;hb=d06098622ce0d7dbbf29185dcdae8ed8a4c99823;hp=bdef61423dab08b78a24a5615c82ca781e624bfc;hpb=28f67586f568a3ec0388f58b5a87fa5cfed1a637;p=PuTTY.git diff --git a/putty.h b/putty.h index bdef6142..5f46b066 100644 --- a/putty.h +++ b/putty.h @@ -266,6 +266,18 @@ enum { KEX_MAX }; +enum { + /* + * SSH-2 host key algorithms + */ + HK_WARN, + HK_RSA, + HK_DSA, + HK_ECDSA, + HK_ED25519, + HK_MAX +}; + enum { /* * SSH ciphers (both SSH-1 and SSH-2) @@ -695,6 +707,7 @@ void cleanup_exit(int); X(INT, NONE, nopty) \ X(INT, NONE, compression) \ X(INT, INT, ssh_kexlist) \ + X(INT, INT, ssh_hklist) \ X(INT, NONE, ssh_rekey_time) /* in minutes */ \ X(STR, NONE, ssh_rekey_data) /* string encoding e.g. "100K", "2M", "1G" */ \ X(INT, NONE, tryagent) \