diff options
author | Andreas Schultz <[email protected]> | 2012-10-12 15:02:50 +0200 |
---|---|---|
committer | Andreas Schultz <[email protected]> | 2012-11-18 11:06:57 +0100 |
commit | 3b69808d29e4872680cf19399ec6cacc82646433 (patch) | |
tree | 450d66ecb8a948b0f76f12d93fa823b19adb588b /lib/ssl/src | |
parent | d30cee99c662bf030ce035e56e342d7ebf155513 (diff) | |
download | otp-3b69808d29e4872680cf19399ec6cacc82646433.tar.gz otp-3b69808d29e4872680cf19399ec6cacc82646433.tar.bz2 otp-3b69808d29e4872680cf19399ec6cacc82646433.zip |
SSL: TLS 1.2, advertise sha224 support
SHA-224 is still better than SHA-1, so let the world know we support it
Diffstat (limited to 'lib/ssl/src')
-rw-r--r-- | lib/ssl/src/ssl_handshake.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ssl/src/ssl_handshake.erl b/lib/ssl/src/ssl_handshake.erl index fa1784714f..db21dac942 100644 --- a/lib/ssl/src/ssl_handshake.erl +++ b/lib/ssl/src/ssl_handshake.erl @@ -1401,6 +1401,7 @@ default_hash_signs() -> [?TLSEXT_SIGALG(sha512), ?TLSEXT_SIGALG(sha384), ?TLSEXT_SIGALG(sha256), + ?TLSEXT_SIGALG(sha224), ?TLSEXT_SIGALG(sha), ?TLSEXT_SIGALG_DSA(sha), ?TLSEXT_SIGALG_RSA(md5)]}. |