Skip to content

Commit

Permalink
crypto: testmgr - Reenable authenc tests
Browse files Browse the repository at this point in the history
Now that all implementations of authenc have been converted we can
reenable the tests.

Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
herbertx committed Aug 4, 2015
1 parent aeb4c13 commit a4198fd
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions crypto/testmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -2090,7 +2090,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
.alg = "authenc(hmac(sha1),cbc(aes))-disabled",
.alg = "authenc(hmac(sha1),cbc(aes))",
.test = alg_test_aead,
.fips_allowed = 1,
.suite = {
Expand All @@ -2104,7 +2104,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
.alg = "authenc(hmac(sha1),cbc(des))-disabled",
.alg = "authenc(hmac(sha1),cbc(des))",
.test = alg_test_aead,
.fips_allowed = 1,
.suite = {
Expand All @@ -2118,7 +2118,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
.alg = "authenc(hmac(sha1),cbc(des3_ede))-disabled",
.alg = "authenc(hmac(sha1),cbc(des3_ede))",
.test = alg_test_aead,
.fips_allowed = 1,
.suite = {
Expand Down Expand Up @@ -2152,7 +2152,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
.alg = "authenc(hmac(sha224),cbc(des))-disabled",
.alg = "authenc(hmac(sha224),cbc(des))",
.test = alg_test_aead,
.fips_allowed = 1,
.suite = {
Expand All @@ -2166,7 +2166,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
.alg = "authenc(hmac(sha224),cbc(des3_ede))-disabled",
.alg = "authenc(hmac(sha224),cbc(des3_ede))",
.test = alg_test_aead,
.fips_allowed = 1,
.suite = {
Expand All @@ -2180,7 +2180,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
.alg = "authenc(hmac(sha256),cbc(aes))-disabled",
.alg = "authenc(hmac(sha256),cbc(aes))",
.test = alg_test_aead,
.fips_allowed = 1,
.suite = {
Expand All @@ -2194,7 +2194,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
.alg = "authenc(hmac(sha256),cbc(des))-disabled",
.alg = "authenc(hmac(sha256),cbc(des))",
.test = alg_test_aead,
.fips_allowed = 1,
.suite = {
Expand All @@ -2208,7 +2208,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
.alg = "authenc(hmac(sha256),cbc(des3_ede))-disabled",
.alg = "authenc(hmac(sha256),cbc(des3_ede))",
.test = alg_test_aead,
.fips_allowed = 1,
.suite = {
Expand All @@ -2222,7 +2222,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
.alg = "authenc(hmac(sha384),cbc(des))-disabled",
.alg = "authenc(hmac(sha384),cbc(des))",
.test = alg_test_aead,
.fips_allowed = 1,
.suite = {
Expand All @@ -2236,7 +2236,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
.alg = "authenc(hmac(sha384),cbc(des3_ede))-disabled",
.alg = "authenc(hmac(sha384),cbc(des3_ede))",
.test = alg_test_aead,
.fips_allowed = 1,
.suite = {
Expand All @@ -2250,7 +2250,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
.alg = "authenc(hmac(sha512),cbc(aes))-disabled",
.alg = "authenc(hmac(sha512),cbc(aes))",
.test = alg_test_aead,
.fips_allowed = 1,
.suite = {
Expand All @@ -2264,7 +2264,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
.alg = "authenc(hmac(sha512),cbc(des))-disabled",
.alg = "authenc(hmac(sha512),cbc(des))",
.test = alg_test_aead,
.fips_allowed = 1,
.suite = {
Expand All @@ -2278,7 +2278,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}
}
}, {
.alg = "authenc(hmac(sha512),cbc(des3_ede))-disabled",
.alg = "authenc(hmac(sha512),cbc(des3_ede))",
.test = alg_test_aead,
.fips_allowed = 1,
.suite = {
Expand Down

0 comments on commit a4198fd

Please sign in to comment.