aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/testmgr.c
diff options
context:
space:
mode:
authorJarod Wilson <jarod@redhat.com>2009-05-04 07:46:29 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2009-06-02 00:04:40 -0400
commite08ca2da39db22da569dc23578103cdc942fe3ac (patch)
tree2ea4b4d964492400a0930b8d77fbda600877b00d /crypto/testmgr.c
parent7647d6ce2077d9e1c3d72359f6b4492be129cfe8 (diff)
crypto: testmgr - Add ansi_cprng test vectors
Add ANSI X9.31 Continuous Pseudo-Random Number Generator (AES mode), aka 'ansi_cprng' test vectors, taken from Appendix B.2.9 and B.2.10 of the NIST RNGVS document, found here: http://csrc.nist.gov/groups/STM/cavp/documents/rng/RNGVS.pdf Successfully tested against both the cryptodev-2.6 tree and a Red Hat Enterprise Linux 5.4 kernel, via 'modprobe tcrypt mode=150'. The selection of 150 was semi-arbitrary, didn't seem like it should go any place in particular, so I started a new range for rng tests. Signed-off-by: Jarod Wilson <jarod@redhat.com> Acked-by: Neil Horman <nhorman@tuxdriver.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/testmgr.c')
-rw-r--r--crypto/testmgr.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index adc54cfd39df..5183ec5a4517 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -1380,6 +1380,15 @@ static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
1380/* Please keep this list sorted by algorithm name. */ 1380/* Please keep this list sorted by algorithm name. */
1381static const struct alg_test_desc alg_test_descs[] = { 1381static const struct alg_test_desc alg_test_descs[] = {
1382 { 1382 {
1383 .alg = "ansi_cprng",
1384 .test = alg_test_cprng,
1385 .suite = {
1386 .cprng = {
1387 .vecs = ansi_cprng_aes_tv_template,
1388 .count = ANSI_CPRNG_AES_TEST_VECTORS
1389 }
1390 }
1391 }, {
1383 .alg = "cbc(aes)", 1392 .alg = "cbc(aes)",
1384 .test = alg_test_skcipher, 1393 .test = alg_test_skcipher,
1385 .suite = { 1394 .suite = {