diff options
author | Ingela Anderton Andin <[email protected]> | 2019-02-08 20:19:30 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2019-02-08 20:19:30 +0100 |
commit | 10872a78891ca04916ca041148ba2119d3b61bdc (patch) | |
tree | 109b4358a985d31aee4e5f0076d10f7ff3105591 /lib/ssl/src/ssl_connection.hrl | |
parent | dcce921e494f4a54341da54c1c8f98ae5941ba00 (diff) | |
download | otp-10872a78891ca04916ca041148ba2119d3b61bdc.tar.gz otp-10872a78891ca04916ca041148ba2119d3b61bdc.tar.bz2 otp-10872a78891ca04916ca041148ba2119d3b61bdc.zip |
ssl: Move key_algorithm to handshake_env
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 1e4907661a..72fc2b2c40 100644 --- a/lib/ssl/src/ssl_connection.hrl +++ b/lib/ssl/src/ssl_connection.hrl @@ -69,6 +69,7 @@ hashsign_algorithm = {undefined, undefined}, cert_hashsign_algorithm = {undefined, undefined}, %% key exchange + kex_algorithm :: ssl:key_algo(), diffie_hellman_params:: #'DHParameter'{} | undefined | secret_printout(), srp_params :: #srp_user{} | secret_printout() | 'undefined', public_key_info :: ssl_handshake:public_key_info() | 'undefined', @@ -101,7 +102,6 @@ %% need to worry about packet loss in TLS. In DTLS we %% need to track DTLS handshake seqnr flight_buffer = [] :: list() | map(), - kex_algorithm :: ssl:key_algo(), client_certificate_requested = false :: boolean(), diffie_hellman_keys :: {PublicKey :: binary(), PrivateKey :: binary()} | #'ECPrivateKey'{} | undefined | secret_printout(), srp_keys ::{PublicKey :: binary(), PrivateKey :: binary()} | secret_printout() | 'undefined', |