summaryrefslogtreecommitdiff
path: root/myproposal.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2013-06-11 12:10:02 +1000
committerDarren Tucker <dtucker@zip.com.au>2013-06-11 12:10:02 +1000
commitb8ae92d08b91beaef34232c6ef34b9941473fdd6 (patch)
tree9abeb124a93825fe7572b66945797abd7dd2b222 /myproposal.h
parent97b62f41adcb0dcbeff142d0540793a7ea17c910 (diff)
downloadopenssh-git-b8ae92d08b91beaef34232c6ef34b9941473fdd6.tar.gz
- (dtucker) [myproposal.h] Make the conditional algorithm support consistent
and add some comments so it's clear what goes where.
Diffstat (limited to 'myproposal.h')
-rw-r--r--myproposal.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/myproposal.h b/myproposal.h
index 276108bf..4e913e3c 100644
--- a/myproposal.h
+++ b/myproposal.h
@@ -26,6 +26,8 @@
#include <openssl/opensslv.h>
+/* conditional algorithm support */
+
#ifdef OPENSSL_HAS_ECC
# define KEX_ECDH_METHODS \
"ecdh-sha2-nistp256," \
@@ -52,12 +54,15 @@
# define AESGCM_CIPHER_MODES
#endif
-/* Old OpenSSL doesn't support what we need for DHGEX-sha256 */
#ifdef HAVE_EVP_SHA256
# define KEX_SHA256_METHODS \
"diffie-hellman-group-exchange-sha256,"
+#define SHA2_HMAC_MODES \
+ "hmac-sha2-256," \
+ "hmac-sha2-512,"
#else
# define KEX_SHA256_METHODS
+# define SHA2_HMAC_MODES
#endif
# define KEX_DEFAULT_KEX \
@@ -77,19 +82,15 @@
"ssh-rsa," \
"ssh-dss"
+/* the actual algorithms */
+
#define KEX_DEFAULT_ENCRYPT \
"aes128-ctr,aes192-ctr,aes256-ctr," \
"arcfour256,arcfour128," \
AESGCM_CIPHER_MODES \
"aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc," \
"aes192-cbc,aes256-cbc,arcfour,rijndael-cbc@lysator.liu.se"
-#ifdef HAVE_EVP_SHA256
-#define SHA2_HMAC_MODES \
- "hmac-sha2-256," \
- "hmac-sha2-512,"
-#else
-# define SHA2_HMAC_MODES
-#endif
+
#define KEX_DEFAULT_MAC \
"hmac-md5-etm@openssh.com," \
"hmac-sha1-etm@openssh.com," \