summaryrefslogtreecommitdiff
path: root/myproposal.h
diff options
context:
space:
mode:
Diffstat (limited to 'myproposal.h')
-rw-r--r--myproposal.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/myproposal.h b/myproposal.h
new file mode 100644
index 000000000..7e4baff9d
--- /dev/null
+++ b/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 "blowfish-cbc,3des-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
9static const 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};