diff options
author | Jussi Kivilinna <jussi.kivilinna@iki.fi> | 2013-04-07 16:43:56 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2013-04-25 21:01:47 +0800 |
commit | e448370d7377f064c2fef55f72e9b45184bf0926 (patch) | |
tree | c1b49a63b85eaee8eaa45faae985fe8f9ad4e973 | |
parent | e9b7441a9926b8091c01431f10231c9ceac52c8f (diff) | |
download | linux-3.10-e448370d7377f064c2fef55f72e9b45184bf0926.tar.gz linux-3.10-e448370d7377f064c2fef55f72e9b45184bf0926.tar.bz2 linux-3.10-e448370d7377f064c2fef55f72e9b45184bf0926.zip |
crypto: testmgr - add empty test vectors for null ciphers
Without these, kernel log shows:
[ 5.984881] alg: No test for cipher_null (cipher_null-generic)
[ 5.985096] alg: No test for ecb(cipher_null) (ecb-cipher_null)
[ 5.985170] alg: No test for compress_null (compress_null-generic)
[ 5.985297] alg: No test for digest_null (digest_null-generic)
Signed-off-by: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | crypto/testmgr.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c index 442ddb46bbe..f37e544dddf 100644 --- a/crypto/testmgr.c +++ b/crypto/testmgr.c @@ -1913,6 +1913,9 @@ static const struct alg_test_desc alg_test_descs[] = { } } }, { + .alg = "compress_null", + .test = alg_test_null, + }, { .alg = "crc32c", .test = alg_test_crc32c, .fips_allowed = 1, @@ -2127,6 +2130,9 @@ static const struct alg_test_desc alg_test_descs[] = { } } }, { + .alg = "digest_null", + .test = alg_test_null, + }, { .alg = "ecb(__aes-aesni)", .test = alg_test_null, .fips_allowed = 1, @@ -2237,6 +2243,9 @@ static const struct alg_test_desc alg_test_descs[] = { } } }, { + .alg = "ecb(cipher_null)", + .test = alg_test_null, + }, { .alg = "ecb(des)", .test = alg_test_skcipher, .fips_allowed = 1, |