diff options
author | Ingela Anderton Andin <[email protected]> | 2018-04-26 16:58:28 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2018-04-26 16:58:28 +0200 |
commit | a80c4ea05450b429b9f9d12800f3a742fc69d19f (patch) | |
tree | e755081ecd509134a23aa1e876c61b3620932632 /lib/ssl/src/ssl_connection.hrl | |
parent | 381ab6129998cbd43216eaafabf7cef78c879c5d (diff) | |
download | otp-a80c4ea05450b429b9f9d12800f3a742fc69d19f.tar.gz otp-a80c4ea05450b429b9f9d12800f3a742fc69d19f.tar.bz2 otp-a80c4ea05450b429b9f9d12800f3a742fc69d19f.zip |
ssl: Proper handling of clients that choose to send an empty
answer to a certificate request
Solves ERL-599
Diffstat (limited to 'lib/ssl/src/ssl_connection.hrl')
-rw-r--r-- | lib/ssl/src/ssl_connection.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_connection.hrl b/lib/ssl/src/ssl_connection.hrl index d315c393b4..a61ff747ae 100644 --- a/lib/ssl/src/ssl_connection.hrl +++ b/lib/ssl/src/ssl_connection.hrl @@ -61,7 +61,7 @@ client_certificate_requested = false :: boolean(), key_algorithm :: ssl_cipher:key_algo(), hashsign_algorithm = {undefined, undefined}, - cert_hashsign_algorithm, + cert_hashsign_algorithm = {undefined, undefined}, public_key_info :: ssl_handshake:public_key_info() | 'undefined', private_key :: public_key:private_key() | secret_printout() | 'undefined', diffie_hellman_params:: #'DHParameter'{} | undefined | secret_printout(), |