Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1327672 > unrolled thread
| Started by | Marcus Meissner <meissner@suse.de> |
|---|---|
| First post | 2016-02-05 14:30 +0100 |
| Last post | 2016-02-06 08:50 +0100 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] crypto: testmgr: mark more algorithms as FIPS compliant Marcus Meissner <meissner@suse.de> - 2016-02-05 14:30 +0100
Re: [PATCH] crypto: testmgr: mark more algorithms as FIPS compliant Stephan Mueller <smueller@chronox.de> - 2016-02-05 14:40 +0100
Re: [PATCH] crypto: testmgr: mark more algorithms as FIPS compliant Herbert Xu <herbert@gondor.apana.org.au> - 2016-02-06 08:50 +0100
| From | Marcus Meissner <meissner@suse.de> |
|---|---|
| Date | 2016-02-05 14:30 +0100 |
| Subject | [PATCH] crypto: testmgr: mark more algorithms as FIPS compliant |
| Message-ID | <qYOCu-Lw-17@gated-at.bofh.it> |
Some more authenc() wrapped algorithms are FIPS compliant, tag
them as such.
Signed-off-by: Marcus Meissner <meissner@suse.de>
---
crypto/testmgr.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index ff6a799..b0cbad8 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -2132,6 +2132,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}, {
.alg = "authenc(hmac(sha1),cbc(des3_ede))",
.test = alg_test_aead,
+ .fips_allowed = 1,
.suite = {
.aead = {
.enc = {
@@ -2181,6 +2182,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}, {
.alg = "authenc(hmac(sha224),cbc(des3_ede))",
.test = alg_test_aead,
+ .fips_allowed = 1,
.suite = {
.aead = {
.enc = {
@@ -2194,6 +2196,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}, {
.alg = "authenc(hmac(sha256),cbc(aes))",
.test = alg_test_aead,
+ .fips_allowed = 1,
.suite = {
.aead = {
.enc = {
@@ -2220,6 +2223,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}, {
.alg = "authenc(hmac(sha256),cbc(des3_ede))",
.test = alg_test_aead,
+ .fips_allowed = 1,
.suite = {
.aead = {
.enc = {
@@ -2250,6 +2254,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}, {
.alg = "authenc(hmac(sha384),cbc(des3_ede))",
.test = alg_test_aead,
+ .fips_allowed = 1,
.suite = {
.aead = {
.enc = {
@@ -2266,6 +2271,7 @@ static const struct alg_test_desc alg_test_descs[] = {
.fips_allowed = 1,
}, {
.alg = "authenc(hmac(sha512),cbc(aes))",
+ .fips_allowed = 1,
.test = alg_test_aead,
.suite = {
.aead = {
@@ -2293,6 +2299,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}, {
.alg = "authenc(hmac(sha512),cbc(des3_ede))",
.test = alg_test_aead,
+ .fips_allowed = 1,
.suite = {
.aead = {
.enc = {
--
2.1.4
[toc] | [next] | [standalone]
| From | Stephan Mueller <smueller@chronox.de> |
|---|---|
| Date | 2016-02-05 14:40 +0100 |
| Message-ID | <qYOMa-P6-17@gated-at.bofh.it> |
| In reply to | #1327672 |
Am Freitag, 5. Februar 2016, 14:23:33 schrieb Marcus Meissner: Hi Marcus, >Some more authenc() wrapped algorithms are FIPS compliant, tag >them as such. Acked-by: Stephan Mueller <smueller@chronox.de> Ciao Stephan
[toc] | [prev] | [next] | [standalone]
| From | Herbert Xu <herbert@gondor.apana.org.au> |
|---|---|
| Date | 2016-02-06 08:50 +0100 |
| Message-ID | <qZ5N0-46X-11@gated-at.bofh.it> |
| In reply to | #1327672 |
On Fri, Feb 05, 2016 at 02:23:33PM +0100, Marcus Meissner wrote: > Some more authenc() wrapped algorithms are FIPS compliant, tag > them as such. > > Signed-off-by: Marcus Meissner <meissner@suse.de> Applied. -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web