diff options
Diffstat (limited to 'other/openssh-2.1.1p4/myproposal.h')
| -rw-r--r-- | other/openssh-2.1.1p4/myproposal.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/other/openssh-2.1.1p4/myproposal.h b/other/openssh-2.1.1p4/myproposal.h new file mode 100644 index 0000000..9611d89 --- /dev/null +++ b/other/openssh-2.1.1p4/myproposal.h | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | #define KEX_DEFAULT_KEX "diffie-hellman-group1-sha1" | ||
| 2 | #define KEX_DEFAULT_PK_ALG "ssh-dss" | ||
| 3 | #define KEX_DEFAULT_ENCRYPT "3des-cbc,blowfish-cbc,arcfour,cast128-cbc" | ||
| 4 | #define KEX_DEFAULT_MAC "hmac-sha1,hmac-md5,hmac-ripemd160@openssh.com" | ||
| 5 | #define KEX_DEFAULT_COMP "zlib,none" | ||
| 6 | #define KEX_DEFAULT_LANG "" | ||
| 7 | |||
| 8 | |||
| 9 | static char *myproposal[PROPOSAL_MAX] = { | ||
| 10 | KEX_DEFAULT_KEX, | ||
| 11 | KEX_DEFAULT_PK_ALG, | ||
| 12 | KEX_DEFAULT_ENCRYPT, | ||
| 13 | KEX_DEFAULT_ENCRYPT, | ||
| 14 | KEX_DEFAULT_MAC, | ||
| 15 | KEX_DEFAULT_MAC, | ||
| 16 | KEX_DEFAULT_COMP, | ||
| 17 | KEX_DEFAULT_COMP, | ||
| 18 | KEX_DEFAULT_LANG, | ||
| 19 | KEX_DEFAULT_LANG | ||
| 20 | }; | ||
