summaryrefslogtreecommitdiff
path: root/lib/crypto/test
diff options
context:
space:
mode:
authorKian-Meng, Ang <kianmeng@cpan.org>2021-12-17 17:24:59 +0800
committerKian-Meng, Ang <kianmeng@cpan.org>2021-12-17 17:24:59 +0800
commit2fbcc5a82a7b742e41fdaef3cdcb1bea18566b3d (patch)
treead6fabc53fdde5637864b555dcf74fd65ba585e6 /lib/crypto/test
parentc8158461b6554d1a404c79ef633d77f9b6385c14 (diff)
downloaderlang-2fbcc5a82a7b742e41fdaef3cdcb1bea18566b3d.tar.gz
Fix typos in lib/crypto
Diffstat (limited to 'lib/crypto/test')
-rw-r--r--lib/crypto/test/crypto_SUITE.erl2
-rw-r--r--lib/crypto/test/engine_SUITE.erl12
-rw-r--r--lib/crypto/test/property_test/crypto_prop_generators.erl4
3 files changed, 9 insertions, 9 deletions
diff --git a/lib/crypto/test/crypto_SUITE.erl b/lib/crypto/test/crypto_SUITE.erl
index 3f6ec81794..2bd75a59ca 100644
--- a/lib/crypto/test/crypto_SUITE.erl
+++ b/lib/crypto/test/crypto_SUITE.erl
@@ -1276,7 +1276,7 @@ info(_Config) ->
ok;
Other ->
ct:log("Ver = ~p~ncrypto:info() -> ~p", [Ver,Other]),
- ct:fail("Version missmatch", [])
+ ct:fail("Version mismatch", [])
catch
C:E ->
ct:log("Exception ~p:~p", [C,E]),
diff --git a/lib/crypto/test/engine_SUITE.erl b/lib/crypto/test/engine_SUITE.erl
index 2f6017e1bf..cab519fdb9 100644
--- a/lib/crypto/test/engine_SUITE.erl
+++ b/lib/crypto/test/engine_SUITE.erl
@@ -552,7 +552,7 @@ bad_arguments(Config) when is_list(Config) ->
<<"LOAD">>],
[])
of
- {error,bad_engine_id} -> % should have happend in the previous try...catch end!
+ {error,bad_engine_id} -> % should have happened in the previous try...catch end!
throw(dynamic_engine_unsupported);
X3 ->
ct:fail("3 Got ~p",[X3])
@@ -655,7 +655,7 @@ failed_engine_init(Config) when is_list(Config) ->
%%-------------------------------------------------------------------------
%% Test the optional flag in ctrl comands
ctrl_cmd_string()->
- [{doc, "Test that a not known optional ctrl comand do not fail"}].
+ [{doc, "Test that a not known optional ctrl command do not fail"}].
ctrl_cmd_string(Config) when is_list(Config) ->
try
case crypto:get_test_engine() of
@@ -685,7 +685,7 @@ ctrl_cmd_string(Config) when is_list(Config) ->
end.
ctrl_cmd_string_optional()->
- [{doc, "Test that a not known optional ctrl comand do not fail"}].
+ [{doc, "Test that a not known optional ctrl command do not fail"}].
ctrl_cmd_string_optional(Config) when is_list(Config) ->
try
case crypto:get_test_engine() of
@@ -831,7 +831,7 @@ sign_verify_rsa_pwd_bad_pwd(Config) ->
Pub = #{engine => engine_ref(Config),
key_id => key_id(Config, "rsa_public_key_pwd.pem")},
try sign_verify(rsa, sha, Priv, Pub) of
- _ -> {fail, "PWD prot pubkey sign succeded with no pwd!"}
+ _ -> {fail, "PWD prot pubkey sign succeeded with no pwd!"}
catch
error:badarg -> ok
end.
@@ -909,7 +909,7 @@ get_pub_from_priv_key_rsa_pwd_no_pwd(Config) ->
{fail, {wrong_error,Error}};
Pub ->
ct:log("rsa Pub = ~p",[Pub]),
- {fail, "PWD prot pubkey fetch succeded although no pwd!"}
+ {fail, "PWD prot pubkey fetch succeeded although no pwd!"}
end.
get_pub_from_priv_key_rsa_pwd_bad_pwd(Config) ->
@@ -925,7 +925,7 @@ get_pub_from_priv_key_rsa_pwd_bad_pwd(Config) ->
{fail, {wrong_error,Error}};
Pub ->
ct:log("rsa Pub = ~p",[Pub]),
- {fail, "PWD prot pubkey fetch succeded with bad pwd!"}
+ {fail, "PWD prot pubkey fetch succeeded with bad pwd!"}
end.
get_pub_from_priv_key_dsa(Config) ->
diff --git a/lib/crypto/test/property_test/crypto_prop_generators.erl b/lib/crypto/test/property_test/crypto_prop_generators.erl
index 094d7360f9..2dd69cff4c 100644
--- a/lib/crypto/test/property_test/crypto_prop_generators.erl
+++ b/lib/crypto/test/property_test/crypto_prop_generators.erl
@@ -44,11 +44,11 @@ text_plain() -> iolist().
cipher() -> oneof(non_aead_ciphers()).
key(Cipher) ->
- %% Can't be shrinked
+ %% Can't be shrunk
crypto:strong_rand_bytes( key_length(Cipher) ).
iv(Cipher) ->
- %% Can't be shrinked
+ %% Can't be shrunk
crypto:strong_rand_bytes( iv_length(Cipher) ).
iolist() -> frequency([{5, list( oneof([list(byte()),