diff options
author | Ingela Anderton Andin <[email protected]> | 2013-04-18 10:47:52 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2013-05-08 10:39:18 +0200 |
commit | d565a551ff2605c8abca0009ab90fbb7687a4097 (patch) | |
tree | ac5eb32465c5b1d273fbb66bcd18d066eadc7792 /lib/ssl/src/ssl_handshake.erl | |
parent | 7030e089d1090e3b9a95c96737b36d6d6fc6ef97 (diff) | |
download | otp-d565a551ff2605c8abca0009ab90fbb7687a4097.tar.gz otp-d565a551ff2605c8abca0009ab90fbb7687a4097.tar.bz2 otp-d565a551ff2605c8abca0009ab90fbb7687a4097.zip |
ssl: Make better use of the crypto API
Use the functions in crypto that we want to keep in the API.
Diffstat (limited to 'lib/ssl/src/ssl_handshake.erl')
-rw-r--r-- | lib/ssl/src/ssl_handshake.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_handshake.erl b/lib/ssl/src/ssl_handshake.erl index bddae820ef..eca36ba650 100644 --- a/lib/ssl/src/ssl_handshake.erl +++ b/lib/ssl/src/ssl_handshake.erl @@ -696,8 +696,8 @@ decrypt_premaster_secret(Secret, RSAPrivateKey) -> %% Description: Calculate server key exchange hash %%-------------------------------------------------------------------- server_key_exchange_hash(md5sha, Value) -> - MD5 = crypto:md5(Value), - SHA = crypto:sha(Value), + MD5 = crypto:hash(md5, Value), + SHA = crypto:hash(sha, Value), <<MD5/binary, SHA/binary>>; server_key_exchange_hash(Hash, Value) -> |