summaryrefslogtreecommitdiff
path: root/crypto/testmgr.c
diff options
context:
space:
mode:
authorMarcus Meissner <meissner@suse.de>2016-02-06 11:53:07 +0100
committerHerbert Xu <herbert@gondor.apana.org.au>2016-02-17 04:07:40 +0800
commit98b31dcf2cfc7dbf9ad74c4e9bbf28f1bddecf19 (patch)
tree2de8d068d311de44d1af8ce221b492952b7c0246 /crypto/testmgr.c
parent9b557d30503de9d3f6ad042631c471c3445c9f33 (diff)
downloadlinux-crypto-98b31dcf2cfc7dbf9ad74c4e9bbf28f1bddecf19.tar.gz
linux-crypto-98b31dcf2cfc7dbf9ad74c4e9bbf28f1bddecf19.zip
crypto: testmgr - mark authenticated ctr(aes) also as FIPS able
(2nd try that adds missing , to build.) Signed-off-by: Marcus Meissner <meissner@suse.de> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r--crypto/testmgr.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index 93f35279..6e41a938 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -2070,6 +2070,10 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
+ .alg = "authenc(hmac(sha1),ctr(aes))",
+ .test = alg_test_null,
+ .fips_allowed = 1,
+ }, {
.alg = "authenc(hmac(sha1),ecb(cipher_null))",
.test = alg_test_aead,
.suite = {
@@ -2157,6 +2161,10 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
+ .alg = "authenc(hmac(sha256),ctr(aes))",
+ .test = alg_test_null,
+ .fips_allowed = 1,
+ }, {
.alg = "authenc(hmac(sha384),cbc(des))",
.test = alg_test_aead,
.suite = {
@@ -2184,6 +2192,10 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
+ .alg = "authenc(hmac(sha384),ctr(aes))",
+ .test = alg_test_null,
+ .fips_allowed = 1,
+ }, {
.alg = "authenc(hmac(sha512),cbc(aes))",
.fips_allowed = 1,
.test = alg_test_aead,
@@ -2225,6 +2237,10 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
+ .alg = "authenc(hmac(sha512),ctr(aes))",
+ .test = alg_test_null,
+ .fips_allowed = 1,
+ }, {
.alg = "cbc(aes)",
.test = alg_test_skcipher,
.fips_allowed = 1,