crypto: testmgr - mark xts(aes) as fips_allowed
authorJarod Wilson <jarod@redhat.com>
Sat, 29 Jan 2011 04:14:01 +0000 (15:14 +1100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Sat, 29 Jan 2011 04:14:01 +0000 (15:14 +1100)
We (Red Hat) are intending to include dm-crypt functionality, using
xts(aes) for disk encryption, as part of an upcoming FIPS-140-2
certification effort, and xts(aes) *is* on the list of possible
mode/cipher combinations that can be certified. To make that possible, we
need to mark xts(aes) as fips_allowed in the crypto subsystem.

A 'modprobe tcrypt mode=10' in fips mode shows xts(aes) self-tests
passing successfully after this change.

Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/testmgr.c

index 27ea9fe9476fb96aff90d7df5d13c1e4c21640c5..521fdb2f7cfdbd871e4ddf7b1e42772695fc9349 100644 (file)
@@ -2453,6 +2453,7 @@ static const struct alg_test_desc alg_test_descs[] = {
        }, {
                .alg = "xts(aes)",
                .test = alg_test_skcipher,
+               .fips_allowed = 1,
                .suite = {
                        .cipher = {
                                .enc = {
This page took 0.029528 seconds and 5 git commands to generate.