diff options
author | Sverker Eriksson <[email protected]> | 2013-05-14 19:07:51 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2013-05-20 08:41:53 +0200 |
commit | f941576f751fbf59049d982ca901cd3eab7dfe1f (patch) | |
tree | 52eec4a9a90b214bb09859bbf756edb07e4a4cae /lib/crypto/src | |
parent | 36a9e0a0dcb33c0cab6fdfcc6847e04b1b786a73 (diff) | |
download | otp-f941576f751fbf59049d982ca901cd3eab7dfe1f.tar.gz otp-f941576f751fbf59049d982ca901cd3eab7dfe1f.tar.bz2 otp-f941576f751fbf59049d982ca901cd3eab7dfe1f.zip |
crypto,public_key,ssl: Change return value of crypto:generate_key(ecdh,..)
to conform with the return value of the other types.
Diffstat (limited to 'lib/crypto/src')
-rw-r--r-- | lib/crypto/src/crypto.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/src/crypto.erl b/lib/crypto/src/crypto.erl index 8c61084f3e..4cfa8415b4 100644 --- a/lib/crypto/src/crypto.erl +++ b/lib/crypto/src/crypto.erl @@ -1489,7 +1489,7 @@ ecdh_compute_key_nif(_Others, _My) -> ?nif_stub. ec_key_to_term(Key) -> case ec_key_to_term_nif(Key) of {PrivKey, PubKey} -> - {bin_to_int(PrivKey), PubKey}; + {PubKey, bin_to_int(PrivKey)}; _ -> erlang:error(conversion_failed) end. |