aboutsummaryrefslogtreecommitdiffstats
path: root/lib/crypto
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2019-02-26 11:39:53 +0100
committerHans Nilsson <[email protected]>2019-02-27 15:03:19 +0100
commit24832247a501862f3ba083712da3d282e5458849 (patch)
tree0783620529c6748b6c23580e1e278634c3f9a335 /lib/crypto
parent7deef4433576e40a1cd337d2e62a7446eae4caa7 (diff)
downloadotp-24832247a501862f3ba083712da3d282e5458849.tar.gz
otp-24832247a501862f3ba083712da3d282e5458849.tar.bz2
otp-24832247a501862f3ba083712da3d282e5458849.zip
crypto: Remove assertion
This is not needed any more
Diffstat (limited to 'lib/crypto')
-rw-r--r--lib/crypto/test/crypto_SUITE.erl11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/crypto/test/crypto_SUITE.erl b/lib/crypto/test/crypto_SUITE.erl
index cda96ef693..cbfa96cc16 100644
--- a/lib/crypto/test/crypto_SUITE.erl
+++ b/lib/crypto/test/crypto_SUITE.erl
@@ -411,17 +411,6 @@ block() ->
block(Config) when is_list(Config) ->
Fips = proplists:get_bool(fips, Config),
Type = ?config(type, Config),
- %% See comment about EVP_CIPHER_CTX_set_key_length in
- %% block_crypt_nif in crypto.c.
- case {Fips, Type} of
- {true, aes_cfb8} ->
- throw({skip, "Cannot test aes_cfb8 in FIPS mode because of key length issue"});
- {true, aes_cfb128} ->
- throw({skip, "Cannot test aes_cfb128 in FIPS mode because of key length issue"});
- _ ->
- ok
- end,
-
Blocks = lazy_eval(proplists:get_value(block, Config)),
lists:foreach(fun block_cipher/1, Blocks),
lists:foreach(fun block_cipher/1, block_iolistify(Blocks)),