summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl_ciph.c
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2016-11-06 12:08:32 +0000
committerjsing <jsing@openbsd.org>2016-11-06 12:08:32 +0000
commit1ec615851ef0d27f0314f64d9c0ef773cf5cf921 (patch)
tree671edfc0bcb5d9821c325c8e60ecaab8aee21089 /lib/libssl/ssl_ciph.c
parentunifdef -m -UOPENSSL_NO_CHACHA -UOPENSSL_NO_POLY1305 (diff)
downloadwireguard-openbsd-1ec615851ef0d27f0314f64d9c0ef773cf5cf921.tar.xz
wireguard-openbsd-1ec615851ef0d27f0314f64d9c0ef773cf5cf921.zip
Remove the single IDEA cipher suite. There is no good reason to support
this. ok beck@ bcook@
Diffstat (limited to 'lib/libssl/ssl_ciph.c')
-rw-r--r--lib/libssl/ssl_ciph.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/libssl/ssl_ciph.c b/lib/libssl/ssl_ciph.c
index 2921933c286..af5c83fcaf0 100644
--- a/lib/libssl/ssl_ciph.c
+++ b/lib/libssl/ssl_ciph.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_ciph.c,v 1.88 2016/11/06 11:58:13 jsing Exp $ */
+/* $OpenBSD: ssl_ciph.c,v 1.89 2016/11/06 12:08:32 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -479,12 +479,7 @@ ssl_load_ciphers(void)
EVP_get_cipherbyname(SN_des_ede3_cbc);
ssl_cipher_methods[SSL_ENC_RC4_IDX] =
EVP_get_cipherbyname(SN_rc4);
-#ifndef OPENSSL_NO_IDEA
- ssl_cipher_methods[SSL_ENC_IDEA_IDX] =
- EVP_get_cipherbyname(SN_idea_cbc);
-#else
ssl_cipher_methods[SSL_ENC_IDEA_IDX] = NULL;
-#endif
ssl_cipher_methods[SSL_ENC_AES128_IDX] =
EVP_get_cipherbyname(SN_aes_128_cbc);
ssl_cipher_methods[SSL_ENC_AES256_IDX] =