diff options
author | 2016-11-06 12:08:32 +0000 | |
---|---|---|
committer | 2016-11-06 12:08:32 +0000 | |
commit | 1ec615851ef0d27f0314f64d9c0ef773cf5cf921 (patch) | |
tree | 671edfc0bcb5d9821c325c8e60ecaab8aee21089 /lib/libssl/ssl_algs.c | |
parent | unifdef -m -UOPENSSL_NO_CHACHA -UOPENSSL_NO_POLY1305 (diff) | |
download | wireguard-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_algs.c')
-rw-r--r-- | lib/libssl/ssl_algs.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libssl/ssl_algs.c b/lib/libssl/ssl_algs.c index 3010a735c96..ee1919c7252 100644 --- a/lib/libssl/ssl_algs.c +++ b/lib/libssl/ssl_algs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_algs.c,v 1.22 2014/12/14 15:30:50 jsing Exp $ */ +/* $OpenBSD: ssl_algs.c,v 1.23 2016/11/06 12:08:32 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -71,9 +71,6 @@ SSL_library_init(void) EVP_add_cipher(EVP_des_cbc()); EVP_add_cipher(EVP_des_ede3_cbc()); #endif -#ifndef OPENSSL_NO_IDEA - EVP_add_cipher(EVP_idea_cbc()); -#endif #ifndef OPENSSL_NO_RC4 EVP_add_cipher(EVP_rc4()); #if !defined(OPENSSL_NO_MD5) && (defined(__x86_64) || defined(__x86_64__)) |