]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
crypto: testmgr - mark authenticated ctr(aes) also as FIPS able
authorMarcus Meissner <meissner@suse.de>
Sat, 6 Feb 2016 10:53:07 +0000 (11:53 +0100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 16 Feb 2016 20:07:40 +0000 (04:07 +0800)
(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>
crypto/testmgr.c

index 93f3527962eca23e1418c2c8f7691187228813f6..6e41a938786e0d2fac23be0fe6c4157d206f0bfa 100644 (file)
@@ -2069,6 +2069,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,
@@ -2156,6 +2160,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,
@@ -2183,6 +2191,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,
@@ -2224,6 +2236,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,