diff options
author | Ingela Anderton Andin <[email protected]> | 2015-01-23 11:03:17 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-01-23 11:34:18 +0100 |
commit | 75ffa2a78cd44dbd4cd01a2ede537f27a4c09aa8 (patch) | |
tree | b5020825d2ec9ac8148dc74e4b108a6ae6e994cf /lib/ssl/src/ssl_v3.erl | |
parent | 519b07bca04bdd8585b48f2de6b7124ca6455358 (diff) | |
download | otp-75ffa2a78cd44dbd4cd01a2ede537f27a4c09aa8.tar.gz otp-75ffa2a78cd44dbd4cd01a2ede537f27a4c09aa8.tar.bz2 otp-75ffa2a78cd44dbd4cd01a2ede537f27a4c09aa8.zip |
ssl: Remove default support for RC4 ciphers
Diffstat (limited to 'lib/ssl/src/ssl_v3.erl')
-rw-r--r-- | lib/ssl/src/ssl_v3.erl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/ssl/src/ssl_v3.erl b/lib/ssl/src/ssl_v3.erl index 68f7f5dee2..169b39be32 100644 --- a/lib/ssl/src/ssl_v3.erl +++ b/lib/ssl/src/ssl_v3.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2007-2014. All Rights Reserved. +%% Copyright Ericsson AB 2007-2015. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -143,9 +143,6 @@ suites() -> ?TLS_DHE_RSA_WITH_AES_128_CBC_SHA, ?TLS_DHE_DSS_WITH_AES_128_CBC_SHA, ?TLS_RSA_WITH_AES_128_CBC_SHA, - %%?TLS_RSA_WITH_IDEA_CBC_SHA, - ?TLS_RSA_WITH_RC4_128_SHA, - ?TLS_RSA_WITH_RC4_128_MD5, ?TLS_RSA_WITH_DES_CBC_SHA ]. |