diff options
author | Andrew Thompson <[email protected]> | 2013-10-21 23:19:34 -0400 |
---|---|---|
committer | Andrew Thompson <[email protected]> | 2014-01-21 12:44:36 -0500 |
commit | cb16d84c66b6040ca668b2e23ad4e740a3f3d0af (patch) | |
tree | c27337f1930174a8746c11ad9ea2704415fda17e /lib/ssl/doc | |
parent | d4046b68c706ce5c4485185738256e5d7bc88138 (diff) | |
download | otp-cb16d84c66b6040ca668b2e23ad4e740a3f3d0af.tar.gz otp-cb16d84c66b6040ca668b2e23ad4e740a3f3d0af.tar.bz2 otp-cb16d84c66b6040ca668b2e23ad4e740a3f3d0af.zip |
Implement 'honor_cipher_order' SSL server-side option
HonorCipherOrder as implemented in Apache, nginx, lighttpd, etc. This
instructs the server to prefer its own cipher ordering rather than the
client's and can help protect against things like BEAST while
maintaining compatability with clients which only support older ciphers.
This code is mostly written by Andrew Thompson, only the test case was
added by Andreas Schultz.
Diffstat (limited to 'lib/ssl/doc')
-rw-r--r-- | lib/ssl/doc/src/ssl.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/ssl/doc/src/ssl.xml b/lib/ssl/doc/src/ssl.xml index 80ef419fb7..910dca3889 100644 --- a/lib/ssl/doc/src/ssl.xml +++ b/lib/ssl/doc/src/ssl.xml @@ -460,6 +460,10 @@ fun(srp, Username :: string(), UserState :: term()) -> </item> <tag>{log_alert, boolean()}</tag> <item>If false, error reports will not be displayed.</item> + <tag>{honor_cipher_order, boolean()}</tag> + <item>If true, use the server's preference for cipher selection. If false + (the default), use the client's preference. + </item> </taglist> </section> |