diff options
author | Ingela Anderton Andin <[email protected]> | 2012-08-23 15:01:40 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2012-08-23 15:01:40 +0200 |
commit | f5c54053e4d99c7c6eb1163047632d16c1fd5f19 (patch) | |
tree | 5ece82a994b212551373fab18a58b0209baa2893 /lib/ssl/src/ssl_handshake.erl | |
parent | f87936b28199e4ed6e67ff188996108776fbfb1f (diff) | |
download | otp-f5c54053e4d99c7c6eb1163047632d16c1fd5f19.tar.gz otp-f5c54053e4d99c7c6eb1163047632d16c1fd5f19.tar.bz2 otp-f5c54053e4d99c7c6eb1163047632d16c1fd5f19.zip |
ssl: Clean up of code thanks to dialyzer
Diffstat (limited to 'lib/ssl/src/ssl_handshake.erl')
-rw-r--r-- | lib/ssl/src/ssl_handshake.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_handshake.erl b/lib/ssl/src/ssl_handshake.erl index f198591c93..28469dfa5f 100644 --- a/lib/ssl/src/ssl_handshake.erl +++ b/lib/ssl/src/ssl_handshake.erl @@ -334,7 +334,7 @@ certificate_request(ConnectionStates, CertDbHandle, CertDbRef) -> -spec key_exchange(client | server, tls_version(), {premaster_secret, binary(), public_key_info()} | {dh, binary()} | - {dh, {binary(), binary()}, #'DHParameter'{}, hash_algo(), + {dh, {binary(), binary()}, #'DHParameter'{}, {HashAlgo::atom(), SignAlgo::atom()}, binary(), binary(), private_key()}) -> #client_key_exchange{} | #server_key_exchange{}. %% |