aboutsummaryrefslogtreecommitdiffstats
path: root/lib/crypto/test/crypto_SUITE.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2019-04-09 12:10:31 +0200
committerHans Nilsson <[email protected]>2019-04-11 13:02:30 +0200
commitdc4c62ca5220cfc8def7ec5275036c7fb7dc370d (patch)
tree3ac2e6a92b671589e8fb12a67d92a3c782debf81 /lib/crypto/test/crypto_SUITE.erl
parent5c3a51b042806d7d953424948b6c65cbcde6900b (diff)
downloadotp-dc4c62ca5220cfc8def7ec5275036c7fb7dc370d.tar.gz
otp-dc4c62ca5220cfc8def7ec5275036c7fb7dc370d.tar.bz2
otp-dc4c62ca5220cfc8def7ec5275036c7fb7dc370d.zip
crypto: Rename crypto_aead to crypto_one_time_aead
Diffstat (limited to 'lib/crypto/test/crypto_SUITE.erl')
-rw-r--r--lib/crypto/test/crypto_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/test/crypto_SUITE.erl b/lib/crypto/test/crypto_SUITE.erl
index 6a2727a622..b7d6d0805f 100644
--- a/lib/crypto/test/crypto_SUITE.erl
+++ b/lib/crypto/test/crypto_SUITE.erl
@@ -1183,7 +1183,7 @@ aead_cipher({Type, Key, PlainText, IV, AAD, CipherText, CipherTag, TagLen, Info}
catch
error:E ->
ct:log("~p",[{Type, Key, PlainText, IV, AAD, CipherText, CipherTag, TagLen, Info}]),
- try crypto:crypto_aead(Type, Key, IV, PlainText, AAD, TagLen, true)
+ try crypto:crypto_one_time_aead(Type, Key, IV, PlainText, AAD, TagLen, true)
of
RR ->
ct:log("Works: ~p",[RR])