diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2016-11-06 12:08:33 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2016-11-06 12:08:33 +0000 |
commit | 51cf27ff64d35de9a3662996fdc2e679dde4f9fe (patch) | |
tree | fb40bb206d50e9de87592bf9bad1602ce300900a /lib/libssl/ssl_algs.c | |
parent | 176babbfa09ca09c7e33d939161f6208ecd754d1 (diff) |
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__)) |