aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public_key
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2018-08-28 15:52:52 +0200
committerHans Nilsson <[email protected]>2018-09-13 12:07:53 +0200
commit5a67298324cc03454e659a1983fd7696451998aa (patch)
treee810b7e3d7bb5bf3fbfa53c727c91a46d88ad087 /lib/public_key
parent882fa794883e6dbc0e56f22645cd3aec21920c53 (diff)
downloadotp-5a67298324cc03454e659a1983fd7696451998aa.tar.gz
otp-5a67298324cc03454e659a1983fd7696451998aa.tar.bz2
otp-5a67298324cc03454e659a1983fd7696451998aa.zip
public_key: Remove special type signature for one test
Diffstat (limited to 'lib/public_key')
-rw-r--r--lib/public_key/test/public_key_SUITE.erl4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/public_key/test/public_key_SUITE.erl b/lib/public_key/test/public_key_SUITE.erl
index cfd8e7a34b..1955e9e119 100644
--- a/lib/public_key/test/public_key_SUITE.erl
+++ b/lib/public_key/test/public_key_SUITE.erl
@@ -718,12 +718,8 @@ encrypt_decrypt(Config) when is_list(Config) ->
Msg = list_to_binary(lists:duplicate(5, "Foo bar 100")),
RsaEncrypted = public_key:encrypt_private(Msg, PrivateKey),
Msg = public_key:decrypt_public(RsaEncrypted, PublicKey),
- Msg = public_key:decrypt_public(RsaEncrypted, PrivateKey),
RsaEncrypted2 = public_key:encrypt_public(Msg, PublicKey),
- RsaEncrypted3 = public_key:encrypt_public(Msg, PrivateKey),
Msg = public_key:decrypt_private(RsaEncrypted2, PrivateKey),
- Msg = public_key:decrypt_private(RsaEncrypted3, PrivateKey),
-
ok.
%%--------------------------------------------------------------------