Skip to content

Commit

Permalink
crypto: testmgr - mark authenticated ctr(aes) also as FIPS able
Browse files Browse the repository at this point in the history
(2nd try that adds missing , to build.)

Signed-off-by: Marcus Meissner <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
msmeissn authored and herbertx committed Feb 16, 2016
1 parent f75516a commit fb16abc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions crypto/testmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit fb16abc

Please sign in to comment.