2 * Algorithm testing framework and tests.
4 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
5 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
6 * Copyright (c) 2007 Nokia Siemens Networks
7 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
9 * Updated RFC4106 AES-GCM testing.
10 * Authors: Aidan O'Mahony (aidan.o.mahony@intel.com)
11 * Adrian Hoban <adrian.hoban@intel.com>
12 * Gabriele Paoloni <gabriele.paoloni@intel.com>
13 * Tadeusz Struk (tadeusz.struk@intel.com)
14 * Copyright (c) 2010, Intel Corporation.
16 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the Free
18 * Software Foundation; either version 2 of the License, or (at your option)
23 #include <crypto/aead.h>
24 #include <crypto/hash.h>
25 #include <crypto/skcipher.h>
26 #include <linux/err.h>
27 #include <linux/fips.h>
28 #include <linux/module.h>
29 #include <linux/scatterlist.h>
30 #include <linux/slab.h>
31 #include <linux/string.h>
32 #include <crypto/rng.h>
33 #include <crypto/drbg.h>
34 #include <crypto/akcipher.h>
38 #ifdef CONFIG_CRYPTO_MANAGER_DISABLE_TESTS
41 int alg_test(const char *driver
, const char *alg
, u32 type
, u32 mask
)
51 * Need slab memory for testing (size in number of pages).
56 * Indexes into the xbuf to simulate cross-page access.
68 * Used by test_cipher()
73 struct tcrypt_result
{
74 struct completion completion
;
78 struct aead_test_suite
{
80 struct aead_testvec
*vecs
;
85 struct cipher_test_suite
{
87 struct cipher_testvec
*vecs
;
92 struct comp_test_suite
{
94 struct comp_testvec
*vecs
;
99 struct pcomp_test_suite
{
101 struct pcomp_testvec
*vecs
;
106 struct hash_test_suite
{
107 struct hash_testvec
*vecs
;
111 struct cprng_test_suite
{
112 struct cprng_testvec
*vecs
;
116 struct drbg_test_suite
{
117 struct drbg_testvec
*vecs
;
121 struct akcipher_test_suite
{
122 struct akcipher_testvec
*vecs
;
126 struct alg_test_desc
{
128 int (*test
)(const struct alg_test_desc
*desc
, const char *driver
,
130 int fips_allowed
; /* set if alg is allowed in fips mode */
133 struct aead_test_suite aead
;
134 struct cipher_test_suite cipher
;
135 struct comp_test_suite comp
;
136 struct pcomp_test_suite pcomp
;
137 struct hash_test_suite hash
;
138 struct cprng_test_suite cprng
;
139 struct drbg_test_suite drbg
;
140 struct akcipher_test_suite akcipher
;
144 static unsigned int IDX
[8] = { IDX1
, IDX2
, IDX3
, IDX4
, IDX5
, IDX6
, IDX7
, IDX8
};
146 static void hexdump(unsigned char *buf
, unsigned int len
)
148 print_hex_dump(KERN_CONT
, "", DUMP_PREFIX_OFFSET
,
153 static void tcrypt_complete(struct crypto_async_request
*req
, int err
)
155 struct tcrypt_result
*res
= req
->data
;
157 if (err
== -EINPROGRESS
)
161 complete(&res
->completion
);
164 static int testmgr_alloc_buf(char *buf
[XBUFSIZE
])
168 for (i
= 0; i
< XBUFSIZE
; i
++) {
169 buf
[i
] = (void *)__get_free_page(GFP_KERNEL
);
178 free_page((unsigned long)buf
[i
]);
183 static void testmgr_free_buf(char *buf
[XBUFSIZE
])
187 for (i
= 0; i
< XBUFSIZE
; i
++)
188 free_page((unsigned long)buf
[i
]);
191 static int wait_async_op(struct tcrypt_result
*tr
, int ret
)
193 if (ret
== -EINPROGRESS
|| ret
== -EBUSY
) {
194 wait_for_completion(&tr
->completion
);
195 reinit_completion(&tr
->completion
);
201 static int __test_hash(struct crypto_ahash
*tfm
, struct hash_testvec
*template,
202 unsigned int tcount
, bool use_digest
,
203 const int align_offset
)
205 const char *algo
= crypto_tfm_alg_driver_name(crypto_ahash_tfm(tfm
));
206 unsigned int i
, j
, k
, temp
;
207 struct scatterlist sg
[8];
210 struct ahash_request
*req
;
211 struct tcrypt_result tresult
;
213 char *xbuf
[XBUFSIZE
];
216 result
= kmalloc(MAX_DIGEST_SIZE
, GFP_KERNEL
);
219 key
= kmalloc(MAX_KEYLEN
, GFP_KERNEL
);
222 if (testmgr_alloc_buf(xbuf
))
225 init_completion(&tresult
.completion
);
227 req
= ahash_request_alloc(tfm
, GFP_KERNEL
);
229 printk(KERN_ERR
"alg: hash: Failed to allocate request for "
233 ahash_request_set_callback(req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
234 tcrypt_complete
, &tresult
);
237 for (i
= 0; i
< tcount
; i
++) {
242 if (WARN_ON(align_offset
+ template[i
].psize
> PAGE_SIZE
))
246 memset(result
, 0, MAX_DIGEST_SIZE
);
249 hash_buff
+= align_offset
;
251 memcpy(hash_buff
, template[i
].plaintext
, template[i
].psize
);
252 sg_init_one(&sg
[0], hash_buff
, template[i
].psize
);
254 if (template[i
].ksize
) {
255 crypto_ahash_clear_flags(tfm
, ~0);
256 if (template[i
].ksize
> MAX_KEYLEN
) {
257 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
258 j
, algo
, template[i
].ksize
, MAX_KEYLEN
);
262 memcpy(key
, template[i
].key
, template[i
].ksize
);
263 ret
= crypto_ahash_setkey(tfm
, key
, template[i
].ksize
);
265 printk(KERN_ERR
"alg: hash: setkey failed on "
266 "test %d for %s: ret=%d\n", j
, algo
,
272 ahash_request_set_crypt(req
, sg
, result
, template[i
].psize
);
274 ret
= wait_async_op(&tresult
, crypto_ahash_digest(req
));
276 pr_err("alg: hash: digest failed on test %d "
277 "for %s: ret=%d\n", j
, algo
, -ret
);
281 ret
= wait_async_op(&tresult
, crypto_ahash_init(req
));
283 pr_err("alt: hash: init failed on test %d "
284 "for %s: ret=%d\n", j
, algo
, -ret
);
287 ret
= wait_async_op(&tresult
, crypto_ahash_update(req
));
289 pr_err("alt: hash: update failed on test %d "
290 "for %s: ret=%d\n", j
, algo
, -ret
);
293 ret
= wait_async_op(&tresult
, crypto_ahash_final(req
));
295 pr_err("alt: hash: final failed on test %d "
296 "for %s: ret=%d\n", j
, algo
, -ret
);
301 if (memcmp(result
, template[i
].digest
,
302 crypto_ahash_digestsize(tfm
))) {
303 printk(KERN_ERR
"alg: hash: Test %d failed for %s\n",
305 hexdump(result
, crypto_ahash_digestsize(tfm
));
312 for (i
= 0; i
< tcount
; i
++) {
313 /* alignment tests are only done with continuous buffers */
314 if (align_offset
!= 0)
321 memset(result
, 0, MAX_DIGEST_SIZE
);
324 sg_init_table(sg
, template[i
].np
);
326 for (k
= 0; k
< template[i
].np
; k
++) {
327 if (WARN_ON(offset_in_page(IDX
[k
]) +
328 template[i
].tap
[k
] > PAGE_SIZE
))
331 memcpy(xbuf
[IDX
[k
] >> PAGE_SHIFT
] +
332 offset_in_page(IDX
[k
]),
333 template[i
].plaintext
+ temp
,
336 temp
+= template[i
].tap
[k
];
339 if (template[i
].ksize
) {
340 if (template[i
].ksize
> MAX_KEYLEN
) {
341 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
342 j
, algo
, template[i
].ksize
, MAX_KEYLEN
);
346 crypto_ahash_clear_flags(tfm
, ~0);
347 memcpy(key
, template[i
].key
, template[i
].ksize
);
348 ret
= crypto_ahash_setkey(tfm
, key
, template[i
].ksize
);
351 printk(KERN_ERR
"alg: hash: setkey "
352 "failed on chunking test %d "
353 "for %s: ret=%d\n", j
, algo
, -ret
);
358 ahash_request_set_crypt(req
, sg
, result
, template[i
].psize
);
359 ret
= crypto_ahash_digest(req
);
365 wait_for_completion(&tresult
.completion
);
366 reinit_completion(&tresult
.completion
);
372 printk(KERN_ERR
"alg: hash: digest failed "
373 "on chunking test %d for %s: "
374 "ret=%d\n", j
, algo
, -ret
);
378 if (memcmp(result
, template[i
].digest
,
379 crypto_ahash_digestsize(tfm
))) {
380 printk(KERN_ERR
"alg: hash: Chunking test %d "
381 "failed for %s\n", j
, algo
);
382 hexdump(result
, crypto_ahash_digestsize(tfm
));
391 ahash_request_free(req
);
393 testmgr_free_buf(xbuf
);
400 static int test_hash(struct crypto_ahash
*tfm
, struct hash_testvec
*template,
401 unsigned int tcount
, bool use_digest
)
403 unsigned int alignmask
;
406 ret
= __test_hash(tfm
, template, tcount
, use_digest
, 0);
410 /* test unaligned buffers, check with one byte offset */
411 ret
= __test_hash(tfm
, template, tcount
, use_digest
, 1);
415 alignmask
= crypto_tfm_alg_alignmask(&tfm
->base
);
417 /* Check if alignment mask for tfm is correctly set. */
418 ret
= __test_hash(tfm
, template, tcount
, use_digest
,
427 static int __test_aead(struct crypto_aead
*tfm
, int enc
,
428 struct aead_testvec
*template, unsigned int tcount
,
429 const bool diff_dst
, const int align_offset
)
431 const char *algo
= crypto_tfm_alg_driver_name(crypto_aead_tfm(tfm
));
432 unsigned int i
, j
, k
, n
, temp
;
436 struct aead_request
*req
;
437 struct scatterlist
*sg
;
438 struct scatterlist
*sgout
;
440 struct tcrypt_result result
;
441 unsigned int authsize
, iv_len
;
446 char *xbuf
[XBUFSIZE
];
447 char *xoutbuf
[XBUFSIZE
];
448 char *axbuf
[XBUFSIZE
];
450 iv
= kzalloc(MAX_IVLEN
, GFP_KERNEL
);
453 key
= kmalloc(MAX_KEYLEN
, GFP_KERNEL
);
456 if (testmgr_alloc_buf(xbuf
))
458 if (testmgr_alloc_buf(axbuf
))
460 if (diff_dst
&& testmgr_alloc_buf(xoutbuf
))
463 /* avoid "the frame size is larger than 1024 bytes" compiler warning */
464 sg
= kmalloc(sizeof(*sg
) * 8 * (diff_dst
? 4 : 2), GFP_KERNEL
);
479 init_completion(&result
.completion
);
481 req
= aead_request_alloc(tfm
, GFP_KERNEL
);
483 pr_err("alg: aead%s: Failed to allocate request for %s\n",
488 aead_request_set_callback(req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
489 tcrypt_complete
, &result
);
491 for (i
= 0, j
= 0; i
< tcount
; i
++) {
497 /* some templates have no input data but they will
501 input
+= align_offset
;
505 if (WARN_ON(align_offset
+ template[i
].ilen
>
506 PAGE_SIZE
|| template[i
].alen
> PAGE_SIZE
))
509 memcpy(input
, template[i
].input
, template[i
].ilen
);
510 memcpy(assoc
, template[i
].assoc
, template[i
].alen
);
511 iv_len
= crypto_aead_ivsize(tfm
);
513 memcpy(iv
, template[i
].iv
, iv_len
);
515 memset(iv
, 0, iv_len
);
517 crypto_aead_clear_flags(tfm
, ~0);
519 crypto_aead_set_flags(tfm
, CRYPTO_TFM_REQ_WEAK_KEY
);
521 if (template[i
].klen
> MAX_KEYLEN
) {
522 pr_err("alg: aead%s: setkey failed on test %d for %s: key size %d > %d\n",
523 d
, j
, algo
, template[i
].klen
,
528 memcpy(key
, template[i
].key
, template[i
].klen
);
530 ret
= crypto_aead_setkey(tfm
, key
, template[i
].klen
);
531 if (!ret
== template[i
].fail
) {
532 pr_err("alg: aead%s: setkey failed on test %d for %s: flags=%x\n",
533 d
, j
, algo
, crypto_aead_get_flags(tfm
));
538 authsize
= abs(template[i
].rlen
- template[i
].ilen
);
539 ret
= crypto_aead_setauthsize(tfm
, authsize
);
541 pr_err("alg: aead%s: Failed to set authsize to %u on test %d for %s\n",
542 d
, authsize
, j
, algo
);
546 k
= !!template[i
].alen
;
547 sg_init_table(sg
, k
+ 1);
548 sg_set_buf(&sg
[0], assoc
, template[i
].alen
);
549 sg_set_buf(&sg
[k
], input
,
550 template[i
].ilen
+ (enc
? authsize
: 0));
554 sg_init_table(sgout
, k
+ 1);
555 sg_set_buf(&sgout
[0], assoc
, template[i
].alen
);
558 output
+= align_offset
;
559 sg_set_buf(&sgout
[k
], output
,
560 template[i
].rlen
+ (enc
? 0 : authsize
));
563 aead_request_set_crypt(req
, sg
, (diff_dst
) ? sgout
: sg
,
564 template[i
].ilen
, iv
);
566 aead_request_set_ad(req
, template[i
].alen
);
568 ret
= enc
? crypto_aead_encrypt(req
) : crypto_aead_decrypt(req
);
572 if (template[i
].novrfy
) {
573 /* verification was supposed to fail */
574 pr_err("alg: aead%s: %s failed on test %d for %s: ret was 0, expected -EBADMSG\n",
576 /* so really, we got a bad message */
583 wait_for_completion(&result
.completion
);
584 reinit_completion(&result
.completion
);
589 if (template[i
].novrfy
)
590 /* verification failure was expected */
594 pr_err("alg: aead%s: %s failed on test %d for %s: ret=%d\n",
595 d
, e
, j
, algo
, -ret
);
600 if (memcmp(q
, template[i
].result
, template[i
].rlen
)) {
601 pr_err("alg: aead%s: Test %d failed on %s for %s\n",
603 hexdump(q
, template[i
].rlen
);
609 for (i
= 0, j
= 0; i
< tcount
; i
++) {
610 /* alignment tests are only done with continuous buffers */
611 if (align_offset
!= 0)
620 memcpy(iv
, template[i
].iv
, MAX_IVLEN
);
622 memset(iv
, 0, MAX_IVLEN
);
624 crypto_aead_clear_flags(tfm
, ~0);
626 crypto_aead_set_flags(tfm
, CRYPTO_TFM_REQ_WEAK_KEY
);
627 if (template[i
].klen
> MAX_KEYLEN
) {
628 pr_err("alg: aead%s: setkey failed on test %d for %s: key size %d > %d\n",
629 d
, j
, algo
, template[i
].klen
, MAX_KEYLEN
);
633 memcpy(key
, template[i
].key
, template[i
].klen
);
635 ret
= crypto_aead_setkey(tfm
, key
, template[i
].klen
);
636 if (!ret
== template[i
].fail
) {
637 pr_err("alg: aead%s: setkey failed on chunk test %d for %s: flags=%x\n",
638 d
, j
, algo
, crypto_aead_get_flags(tfm
));
643 authsize
= abs(template[i
].rlen
- template[i
].ilen
);
646 sg_init_table(sg
, template[i
].anp
+ template[i
].np
);
648 sg_init_table(sgout
, template[i
].anp
+ template[i
].np
);
651 for (k
= 0, temp
= 0; k
< template[i
].anp
; k
++) {
652 if (WARN_ON(offset_in_page(IDX
[k
]) +
653 template[i
].atap
[k
] > PAGE_SIZE
))
656 memcpy(axbuf
[IDX
[k
] >> PAGE_SHIFT
] +
657 offset_in_page(IDX
[k
]),
658 template[i
].assoc
+ temp
,
659 template[i
].atap
[k
]),
660 template[i
].atap
[k
]);
662 sg_set_buf(&sgout
[k
],
663 axbuf
[IDX
[k
] >> PAGE_SHIFT
] +
664 offset_in_page(IDX
[k
]),
665 template[i
].atap
[k
]);
666 temp
+= template[i
].atap
[k
];
669 for (k
= 0, temp
= 0; k
< template[i
].np
; k
++) {
670 if (WARN_ON(offset_in_page(IDX
[k
]) +
671 template[i
].tap
[k
] > PAGE_SIZE
))
674 q
= xbuf
[IDX
[k
] >> PAGE_SHIFT
] + offset_in_page(IDX
[k
]);
675 memcpy(q
, template[i
].input
+ temp
, template[i
].tap
[k
]);
676 sg_set_buf(&sg
[template[i
].anp
+ k
],
677 q
, template[i
].tap
[k
]);
680 q
= xoutbuf
[IDX
[k
] >> PAGE_SHIFT
] +
681 offset_in_page(IDX
[k
]);
683 memset(q
, 0, template[i
].tap
[k
]);
685 sg_set_buf(&sgout
[template[i
].anp
+ k
],
686 q
, template[i
].tap
[k
]);
689 n
= template[i
].tap
[k
];
690 if (k
== template[i
].np
- 1 && enc
)
692 if (offset_in_page(q
) + n
< PAGE_SIZE
)
695 temp
+= template[i
].tap
[k
];
698 ret
= crypto_aead_setauthsize(tfm
, authsize
);
700 pr_err("alg: aead%s: Failed to set authsize to %u on chunk test %d for %s\n",
701 d
, authsize
, j
, algo
);
706 if (WARN_ON(sg
[template[i
].anp
+ k
- 1].offset
+
707 sg
[template[i
].anp
+ k
- 1].length
+
708 authsize
> PAGE_SIZE
)) {
714 sgout
[template[i
].anp
+ k
- 1].length
+=
716 sg
[template[i
].anp
+ k
- 1].length
+= authsize
;
719 aead_request_set_crypt(req
, sg
, (diff_dst
) ? sgout
: sg
,
723 aead_request_set_ad(req
, template[i
].alen
);
725 ret
= enc
? crypto_aead_encrypt(req
) : crypto_aead_decrypt(req
);
729 if (template[i
].novrfy
) {
730 /* verification was supposed to fail */
731 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret was 0, expected -EBADMSG\n",
733 /* so really, we got a bad message */
740 wait_for_completion(&result
.completion
);
741 reinit_completion(&result
.completion
);
746 if (template[i
].novrfy
)
747 /* verification failure was expected */
751 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret=%d\n",
752 d
, e
, j
, algo
, -ret
);
757 for (k
= 0, temp
= 0; k
< template[i
].np
; k
++) {
759 q
= xoutbuf
[IDX
[k
] >> PAGE_SHIFT
] +
760 offset_in_page(IDX
[k
]);
762 q
= xbuf
[IDX
[k
] >> PAGE_SHIFT
] +
763 offset_in_page(IDX
[k
]);
765 n
= template[i
].tap
[k
];
766 if (k
== template[i
].np
- 1)
767 n
+= enc
? authsize
: -authsize
;
769 if (memcmp(q
, template[i
].result
+ temp
, n
)) {
770 pr_err("alg: aead%s: Chunk test %d failed on %s at page %u for %s\n",
777 if (k
== template[i
].np
- 1 && !enc
) {
779 memcmp(q
, template[i
].input
+
785 for (n
= 0; offset_in_page(q
+ n
) && q
[n
]; n
++)
789 pr_err("alg: aead%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
790 d
, j
, e
, k
, algo
, n
);
795 temp
+= template[i
].tap
[k
];
802 aead_request_free(req
);
806 testmgr_free_buf(xoutbuf
);
808 testmgr_free_buf(axbuf
);
810 testmgr_free_buf(xbuf
);
817 static int test_aead(struct crypto_aead
*tfm
, int enc
,
818 struct aead_testvec
*template, unsigned int tcount
)
820 unsigned int alignmask
;
823 /* test 'dst == src' case */
824 ret
= __test_aead(tfm
, enc
, template, tcount
, false, 0);
828 /* test 'dst != src' case */
829 ret
= __test_aead(tfm
, enc
, template, tcount
, true, 0);
833 /* test unaligned buffers, check with one byte offset */
834 ret
= __test_aead(tfm
, enc
, template, tcount
, true, 1);
838 alignmask
= crypto_tfm_alg_alignmask(&tfm
->base
);
840 /* Check if alignment mask for tfm is correctly set. */
841 ret
= __test_aead(tfm
, enc
, template, tcount
, true,
850 static int test_cipher(struct crypto_cipher
*tfm
, int enc
,
851 struct cipher_testvec
*template, unsigned int tcount
)
853 const char *algo
= crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm
));
854 unsigned int i
, j
, k
;
858 char *xbuf
[XBUFSIZE
];
861 if (testmgr_alloc_buf(xbuf
))
870 for (i
= 0; i
< tcount
; i
++) {
877 if (WARN_ON(template[i
].ilen
> PAGE_SIZE
))
881 memcpy(data
, template[i
].input
, template[i
].ilen
);
883 crypto_cipher_clear_flags(tfm
, ~0);
885 crypto_cipher_set_flags(tfm
, CRYPTO_TFM_REQ_WEAK_KEY
);
887 ret
= crypto_cipher_setkey(tfm
, template[i
].key
,
889 if (!ret
== template[i
].fail
) {
890 printk(KERN_ERR
"alg: cipher: setkey failed "
891 "on test %d for %s: flags=%x\n", j
,
892 algo
, crypto_cipher_get_flags(tfm
));
897 for (k
= 0; k
< template[i
].ilen
;
898 k
+= crypto_cipher_blocksize(tfm
)) {
900 crypto_cipher_encrypt_one(tfm
, data
+ k
,
903 crypto_cipher_decrypt_one(tfm
, data
+ k
,
908 if (memcmp(q
, template[i
].result
, template[i
].rlen
)) {
909 printk(KERN_ERR
"alg: cipher: Test %d failed "
910 "on %s for %s\n", j
, e
, algo
);
911 hexdump(q
, template[i
].rlen
);
920 testmgr_free_buf(xbuf
);
925 static int __test_skcipher(struct crypto_skcipher
*tfm
, int enc
,
926 struct cipher_testvec
*template, unsigned int tcount
,
927 const bool diff_dst
, const int align_offset
)
930 crypto_tfm_alg_driver_name(crypto_skcipher_tfm(tfm
));
931 unsigned int i
, j
, k
, n
, temp
;
933 struct skcipher_request
*req
;
934 struct scatterlist sg
[8];
935 struct scatterlist sgout
[8];
937 struct tcrypt_result result
;
940 char *xbuf
[XBUFSIZE
];
941 char *xoutbuf
[XBUFSIZE
];
943 unsigned int ivsize
= crypto_skcipher_ivsize(tfm
);
945 if (testmgr_alloc_buf(xbuf
))
948 if (diff_dst
&& testmgr_alloc_buf(xoutbuf
))
961 init_completion(&result
.completion
);
963 req
= skcipher_request_alloc(tfm
, GFP_KERNEL
);
965 pr_err("alg: skcipher%s: Failed to allocate request for %s\n",
970 skcipher_request_set_callback(req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
971 tcrypt_complete
, &result
);
974 for (i
= 0; i
< tcount
; i
++) {
975 if (template[i
].np
&& !template[i
].also_non_np
)
979 memcpy(iv
, template[i
].iv
, ivsize
);
981 memset(iv
, 0, MAX_IVLEN
);
985 if (WARN_ON(align_offset
+ template[i
].ilen
> PAGE_SIZE
))
989 data
+= align_offset
;
990 memcpy(data
, template[i
].input
, template[i
].ilen
);
992 crypto_skcipher_clear_flags(tfm
, ~0);
994 crypto_skcipher_set_flags(tfm
,
995 CRYPTO_TFM_REQ_WEAK_KEY
);
997 ret
= crypto_skcipher_setkey(tfm
, template[i
].key
,
999 if (!ret
== template[i
].fail
) {
1000 pr_err("alg: skcipher%s: setkey failed on test %d for %s: flags=%x\n",
1001 d
, j
, algo
, crypto_skcipher_get_flags(tfm
));
1006 sg_init_one(&sg
[0], data
, template[i
].ilen
);
1009 data
+= align_offset
;
1010 sg_init_one(&sgout
[0], data
, template[i
].ilen
);
1013 skcipher_request_set_crypt(req
, sg
, (diff_dst
) ? sgout
: sg
,
1014 template[i
].ilen
, iv
);
1015 ret
= enc
? crypto_skcipher_encrypt(req
) :
1016 crypto_skcipher_decrypt(req
);
1023 wait_for_completion(&result
.completion
);
1024 reinit_completion(&result
.completion
);
1030 pr_err("alg: skcipher%s: %s failed on test %d for %s: ret=%d\n",
1031 d
, e
, j
, algo
, -ret
);
1036 if (memcmp(q
, template[i
].result
, template[i
].rlen
)) {
1037 pr_err("alg: skcipher%s: Test %d failed on %s for %s\n",
1039 hexdump(q
, template[i
].rlen
);
1046 for (i
= 0; i
< tcount
; i
++) {
1047 /* alignment tests are only done with continuous buffers */
1048 if (align_offset
!= 0)
1051 if (!template[i
].np
)
1055 memcpy(iv
, template[i
].iv
, ivsize
);
1057 memset(iv
, 0, MAX_IVLEN
);
1060 crypto_skcipher_clear_flags(tfm
, ~0);
1062 crypto_skcipher_set_flags(tfm
,
1063 CRYPTO_TFM_REQ_WEAK_KEY
);
1065 ret
= crypto_skcipher_setkey(tfm
, template[i
].key
,
1067 if (!ret
== template[i
].fail
) {
1068 pr_err("alg: skcipher%s: setkey failed on chunk test %d for %s: flags=%x\n",
1069 d
, j
, algo
, crypto_skcipher_get_flags(tfm
));
1076 sg_init_table(sg
, template[i
].np
);
1078 sg_init_table(sgout
, template[i
].np
);
1079 for (k
= 0; k
< template[i
].np
; k
++) {
1080 if (WARN_ON(offset_in_page(IDX
[k
]) +
1081 template[i
].tap
[k
] > PAGE_SIZE
))
1084 q
= xbuf
[IDX
[k
] >> PAGE_SHIFT
] + offset_in_page(IDX
[k
]);
1086 memcpy(q
, template[i
].input
+ temp
, template[i
].tap
[k
]);
1088 if (offset_in_page(q
) + template[i
].tap
[k
] < PAGE_SIZE
)
1089 q
[template[i
].tap
[k
]] = 0;
1091 sg_set_buf(&sg
[k
], q
, template[i
].tap
[k
]);
1093 q
= xoutbuf
[IDX
[k
] >> PAGE_SHIFT
] +
1094 offset_in_page(IDX
[k
]);
1096 sg_set_buf(&sgout
[k
], q
, template[i
].tap
[k
]);
1098 memset(q
, 0, template[i
].tap
[k
]);
1099 if (offset_in_page(q
) +
1100 template[i
].tap
[k
] < PAGE_SIZE
)
1101 q
[template[i
].tap
[k
]] = 0;
1104 temp
+= template[i
].tap
[k
];
1107 skcipher_request_set_crypt(req
, sg
, (diff_dst
) ? sgout
: sg
,
1108 template[i
].ilen
, iv
);
1110 ret
= enc
? crypto_skcipher_encrypt(req
) :
1111 crypto_skcipher_decrypt(req
);
1118 wait_for_completion(&result
.completion
);
1119 reinit_completion(&result
.completion
);
1125 pr_err("alg: skcipher%s: %s failed on chunk test %d for %s: ret=%d\n",
1126 d
, e
, j
, algo
, -ret
);
1132 for (k
= 0; k
< template[i
].np
; k
++) {
1134 q
= xoutbuf
[IDX
[k
] >> PAGE_SHIFT
] +
1135 offset_in_page(IDX
[k
]);
1137 q
= xbuf
[IDX
[k
] >> PAGE_SHIFT
] +
1138 offset_in_page(IDX
[k
]);
1140 if (memcmp(q
, template[i
].result
+ temp
,
1141 template[i
].tap
[k
])) {
1142 pr_err("alg: skcipher%s: Chunk test %d failed on %s at page %u for %s\n",
1144 hexdump(q
, template[i
].tap
[k
]);
1148 q
+= template[i
].tap
[k
];
1149 for (n
= 0; offset_in_page(q
+ n
) && q
[n
]; n
++)
1152 pr_err("alg: skcipher%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
1153 d
, j
, e
, k
, algo
, n
);
1157 temp
+= template[i
].tap
[k
];
1164 skcipher_request_free(req
);
1166 testmgr_free_buf(xoutbuf
);
1168 testmgr_free_buf(xbuf
);
1173 static int test_skcipher(struct crypto_skcipher
*tfm
, int enc
,
1174 struct cipher_testvec
*template, unsigned int tcount
)
1176 unsigned int alignmask
;
1179 /* test 'dst == src' case */
1180 ret
= __test_skcipher(tfm
, enc
, template, tcount
, false, 0);
1184 /* test 'dst != src' case */
1185 ret
= __test_skcipher(tfm
, enc
, template, tcount
, true, 0);
1189 /* test unaligned buffers, check with one byte offset */
1190 ret
= __test_skcipher(tfm
, enc
, template, tcount
, true, 1);
1194 alignmask
= crypto_tfm_alg_alignmask(&tfm
->base
);
1196 /* Check if alignment mask for tfm is correctly set. */
1197 ret
= __test_skcipher(tfm
, enc
, template, tcount
, true,
1206 static int test_comp(struct crypto_comp
*tfm
, struct comp_testvec
*ctemplate
,
1207 struct comp_testvec
*dtemplate
, int ctcount
, int dtcount
)
1209 const char *algo
= crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm
));
1211 char result
[COMP_BUF_SIZE
];
1214 for (i
= 0; i
< ctcount
; i
++) {
1216 unsigned int dlen
= COMP_BUF_SIZE
;
1218 memset(result
, 0, sizeof (result
));
1220 ilen
= ctemplate
[i
].inlen
;
1221 ret
= crypto_comp_compress(tfm
, ctemplate
[i
].input
,
1222 ilen
, result
, &dlen
);
1224 printk(KERN_ERR
"alg: comp: compression failed "
1225 "on test %d for %s: ret=%d\n", i
+ 1, algo
,
1230 if (dlen
!= ctemplate
[i
].outlen
) {
1231 printk(KERN_ERR
"alg: comp: Compression test %d "
1232 "failed for %s: output len = %d\n", i
+ 1, algo
,
1238 if (memcmp(result
, ctemplate
[i
].output
, dlen
)) {
1239 printk(KERN_ERR
"alg: comp: Compression test %d "
1240 "failed for %s\n", i
+ 1, algo
);
1241 hexdump(result
, dlen
);
1247 for (i
= 0; i
< dtcount
; i
++) {
1249 unsigned int dlen
= COMP_BUF_SIZE
;
1251 memset(result
, 0, sizeof (result
));
1253 ilen
= dtemplate
[i
].inlen
;
1254 ret
= crypto_comp_decompress(tfm
, dtemplate
[i
].input
,
1255 ilen
, result
, &dlen
);
1257 printk(KERN_ERR
"alg: comp: decompression failed "
1258 "on test %d for %s: ret=%d\n", i
+ 1, algo
,
1263 if (dlen
!= dtemplate
[i
].outlen
) {
1264 printk(KERN_ERR
"alg: comp: Decompression test %d "
1265 "failed for %s: output len = %d\n", i
+ 1, algo
,
1271 if (memcmp(result
, dtemplate
[i
].output
, dlen
)) {
1272 printk(KERN_ERR
"alg: comp: Decompression test %d "
1273 "failed for %s\n", i
+ 1, algo
);
1274 hexdump(result
, dlen
);
1286 static int test_pcomp(struct crypto_pcomp
*tfm
,
1287 struct pcomp_testvec
*ctemplate
,
1288 struct pcomp_testvec
*dtemplate
, int ctcount
,
1291 const char *algo
= crypto_tfm_alg_driver_name(crypto_pcomp_tfm(tfm
));
1293 char result
[COMP_BUF_SIZE
];
1296 for (i
= 0; i
< ctcount
; i
++) {
1297 struct comp_request req
;
1298 unsigned int produced
= 0;
1300 res
= crypto_compress_setup(tfm
, ctemplate
[i
].params
,
1301 ctemplate
[i
].paramsize
);
1303 pr_err("alg: pcomp: compression setup failed on test "
1304 "%d for %s: error=%d\n", i
+ 1, algo
, res
);
1308 res
= crypto_compress_init(tfm
);
1310 pr_err("alg: pcomp: compression init failed on test "
1311 "%d for %s: error=%d\n", i
+ 1, algo
, res
);
1315 memset(result
, 0, sizeof(result
));
1317 req
.next_in
= ctemplate
[i
].input
;
1318 req
.avail_in
= ctemplate
[i
].inlen
/ 2;
1319 req
.next_out
= result
;
1320 req
.avail_out
= ctemplate
[i
].outlen
/ 2;
1322 res
= crypto_compress_update(tfm
, &req
);
1323 if (res
< 0 && (res
!= -EAGAIN
|| req
.avail_in
)) {
1324 pr_err("alg: pcomp: compression update failed on test "
1325 "%d for %s: error=%d\n", i
+ 1, algo
, res
);
1331 /* Add remaining input data */
1332 req
.avail_in
+= (ctemplate
[i
].inlen
+ 1) / 2;
1334 res
= crypto_compress_update(tfm
, &req
);
1335 if (res
< 0 && (res
!= -EAGAIN
|| req
.avail_in
)) {
1336 pr_err("alg: pcomp: compression update failed on test "
1337 "%d for %s: error=%d\n", i
+ 1, algo
, res
);
1343 /* Provide remaining output space */
1344 req
.avail_out
+= COMP_BUF_SIZE
- ctemplate
[i
].outlen
/ 2;
1346 res
= crypto_compress_final(tfm
, &req
);
1348 pr_err("alg: pcomp: compression final failed on test "
1349 "%d for %s: error=%d\n", i
+ 1, algo
, res
);
1354 if (COMP_BUF_SIZE
- req
.avail_out
!= ctemplate
[i
].outlen
) {
1355 pr_err("alg: comp: Compression test %d failed for %s: "
1356 "output len = %d (expected %d)\n", i
+ 1, algo
,
1357 COMP_BUF_SIZE
- req
.avail_out
,
1358 ctemplate
[i
].outlen
);
1362 if (produced
!= ctemplate
[i
].outlen
) {
1363 pr_err("alg: comp: Compression test %d failed for %s: "
1364 "returned len = %u (expected %d)\n", i
+ 1,
1365 algo
, produced
, ctemplate
[i
].outlen
);
1369 if (memcmp(result
, ctemplate
[i
].output
, ctemplate
[i
].outlen
)) {
1370 pr_err("alg: pcomp: Compression test %d failed for "
1371 "%s\n", i
+ 1, algo
);
1372 hexdump(result
, ctemplate
[i
].outlen
);
1377 for (i
= 0; i
< dtcount
; i
++) {
1378 struct comp_request req
;
1379 unsigned int produced
= 0;
1381 res
= crypto_decompress_setup(tfm
, dtemplate
[i
].params
,
1382 dtemplate
[i
].paramsize
);
1384 pr_err("alg: pcomp: decompression setup failed on "
1385 "test %d for %s: error=%d\n", i
+ 1, algo
, res
);
1389 res
= crypto_decompress_init(tfm
);
1391 pr_err("alg: pcomp: decompression init failed on test "
1392 "%d for %s: error=%d\n", i
+ 1, algo
, res
);
1396 memset(result
, 0, sizeof(result
));
1398 req
.next_in
= dtemplate
[i
].input
;
1399 req
.avail_in
= dtemplate
[i
].inlen
/ 2;
1400 req
.next_out
= result
;
1401 req
.avail_out
= dtemplate
[i
].outlen
/ 2;
1403 res
= crypto_decompress_update(tfm
, &req
);
1404 if (res
< 0 && (res
!= -EAGAIN
|| req
.avail_in
)) {
1405 pr_err("alg: pcomp: decompression update failed on "
1406 "test %d for %s: error=%d\n", i
+ 1, algo
, res
);
1412 /* Add remaining input data */
1413 req
.avail_in
+= (dtemplate
[i
].inlen
+ 1) / 2;
1415 res
= crypto_decompress_update(tfm
, &req
);
1416 if (res
< 0 && (res
!= -EAGAIN
|| req
.avail_in
)) {
1417 pr_err("alg: pcomp: decompression update failed on "
1418 "test %d for %s: error=%d\n", i
+ 1, algo
, res
);
1424 /* Provide remaining output space */
1425 req
.avail_out
+= COMP_BUF_SIZE
- dtemplate
[i
].outlen
/ 2;
1427 res
= crypto_decompress_final(tfm
, &req
);
1428 if (res
< 0 && (res
!= -EAGAIN
|| req
.avail_in
)) {
1429 pr_err("alg: pcomp: decompression final failed on "
1430 "test %d for %s: error=%d\n", i
+ 1, algo
, res
);
1436 if (COMP_BUF_SIZE
- req
.avail_out
!= dtemplate
[i
].outlen
) {
1437 pr_err("alg: comp: Decompression test %d failed for "
1438 "%s: output len = %d (expected %d)\n", i
+ 1,
1439 algo
, COMP_BUF_SIZE
- req
.avail_out
,
1440 dtemplate
[i
].outlen
);
1444 if (produced
!= dtemplate
[i
].outlen
) {
1445 pr_err("alg: comp: Decompression test %d failed for "
1446 "%s: returned len = %u (expected %d)\n", i
+ 1,
1447 algo
, produced
, dtemplate
[i
].outlen
);
1451 if (memcmp(result
, dtemplate
[i
].output
, dtemplate
[i
].outlen
)) {
1452 pr_err("alg: pcomp: Decompression test %d failed for "
1453 "%s\n", i
+ 1, algo
);
1454 hexdump(result
, dtemplate
[i
].outlen
);
1463 static int test_cprng(struct crypto_rng
*tfm
, struct cprng_testvec
*template,
1464 unsigned int tcount
)
1466 const char *algo
= crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm
));
1467 int err
= 0, i
, j
, seedsize
;
1471 seedsize
= crypto_rng_seedsize(tfm
);
1473 seed
= kmalloc(seedsize
, GFP_KERNEL
);
1475 printk(KERN_ERR
"alg: cprng: Failed to allocate seed space "
1480 for (i
= 0; i
< tcount
; i
++) {
1481 memset(result
, 0, 32);
1483 memcpy(seed
, template[i
].v
, template[i
].vlen
);
1484 memcpy(seed
+ template[i
].vlen
, template[i
].key
,
1486 memcpy(seed
+ template[i
].vlen
+ template[i
].klen
,
1487 template[i
].dt
, template[i
].dtlen
);
1489 err
= crypto_rng_reset(tfm
, seed
, seedsize
);
1491 printk(KERN_ERR
"alg: cprng: Failed to reset rng "
1496 for (j
= 0; j
< template[i
].loops
; j
++) {
1497 err
= crypto_rng_get_bytes(tfm
, result
,
1500 printk(KERN_ERR
"alg: cprng: Failed to obtain "
1501 "the correct amount of random data for "
1502 "%s (requested %d)\n", algo
,
1508 err
= memcmp(result
, template[i
].result
,
1511 printk(KERN_ERR
"alg: cprng: Test %d failed for %s\n",
1513 hexdump(result
, template[i
].rlen
);
1524 static int alg_test_aead(const struct alg_test_desc
*desc
, const char *driver
,
1527 struct crypto_aead
*tfm
;
1530 tfm
= crypto_alloc_aead(driver
, type
| CRYPTO_ALG_INTERNAL
, mask
);
1532 printk(KERN_ERR
"alg: aead: Failed to load transform for %s: "
1533 "%ld\n", driver
, PTR_ERR(tfm
));
1534 return PTR_ERR(tfm
);
1537 if (desc
->suite
.aead
.enc
.vecs
) {
1538 err
= test_aead(tfm
, ENCRYPT
, desc
->suite
.aead
.enc
.vecs
,
1539 desc
->suite
.aead
.enc
.count
);
1544 if (!err
&& desc
->suite
.aead
.dec
.vecs
)
1545 err
= test_aead(tfm
, DECRYPT
, desc
->suite
.aead
.dec
.vecs
,
1546 desc
->suite
.aead
.dec
.count
);
1549 crypto_free_aead(tfm
);
1553 static int alg_test_cipher(const struct alg_test_desc
*desc
,
1554 const char *driver
, u32 type
, u32 mask
)
1556 struct crypto_cipher
*tfm
;
1559 tfm
= crypto_alloc_cipher(driver
, type
| CRYPTO_ALG_INTERNAL
, mask
);
1561 printk(KERN_ERR
"alg: cipher: Failed to load transform for "
1562 "%s: %ld\n", driver
, PTR_ERR(tfm
));
1563 return PTR_ERR(tfm
);
1566 if (desc
->suite
.cipher
.enc
.vecs
) {
1567 err
= test_cipher(tfm
, ENCRYPT
, desc
->suite
.cipher
.enc
.vecs
,
1568 desc
->suite
.cipher
.enc
.count
);
1573 if (desc
->suite
.cipher
.dec
.vecs
)
1574 err
= test_cipher(tfm
, DECRYPT
, desc
->suite
.cipher
.dec
.vecs
,
1575 desc
->suite
.cipher
.dec
.count
);
1578 crypto_free_cipher(tfm
);
1582 static int alg_test_skcipher(const struct alg_test_desc
*desc
,
1583 const char *driver
, u32 type
, u32 mask
)
1585 struct crypto_skcipher
*tfm
;
1588 tfm
= crypto_alloc_skcipher(driver
, type
| CRYPTO_ALG_INTERNAL
, mask
);
1590 printk(KERN_ERR
"alg: skcipher: Failed to load transform for "
1591 "%s: %ld\n", driver
, PTR_ERR(tfm
));
1592 return PTR_ERR(tfm
);
1595 if (desc
->suite
.cipher
.enc
.vecs
) {
1596 err
= test_skcipher(tfm
, ENCRYPT
, desc
->suite
.cipher
.enc
.vecs
,
1597 desc
->suite
.cipher
.enc
.count
);
1602 if (desc
->suite
.cipher
.dec
.vecs
)
1603 err
= test_skcipher(tfm
, DECRYPT
, desc
->suite
.cipher
.dec
.vecs
,
1604 desc
->suite
.cipher
.dec
.count
);
1607 crypto_free_skcipher(tfm
);
1611 static int alg_test_comp(const struct alg_test_desc
*desc
, const char *driver
,
1614 struct crypto_comp
*tfm
;
1617 tfm
= crypto_alloc_comp(driver
, type
, mask
);
1619 printk(KERN_ERR
"alg: comp: Failed to load transform for %s: "
1620 "%ld\n", driver
, PTR_ERR(tfm
));
1621 return PTR_ERR(tfm
);
1624 err
= test_comp(tfm
, desc
->suite
.comp
.comp
.vecs
,
1625 desc
->suite
.comp
.decomp
.vecs
,
1626 desc
->suite
.comp
.comp
.count
,
1627 desc
->suite
.comp
.decomp
.count
);
1629 crypto_free_comp(tfm
);
1633 static int alg_test_pcomp(const struct alg_test_desc
*desc
, const char *driver
,
1636 struct crypto_pcomp
*tfm
;
1639 tfm
= crypto_alloc_pcomp(driver
, type
, mask
);
1641 pr_err("alg: pcomp: Failed to load transform for %s: %ld\n",
1642 driver
, PTR_ERR(tfm
));
1643 return PTR_ERR(tfm
);
1646 err
= test_pcomp(tfm
, desc
->suite
.pcomp
.comp
.vecs
,
1647 desc
->suite
.pcomp
.decomp
.vecs
,
1648 desc
->suite
.pcomp
.comp
.count
,
1649 desc
->suite
.pcomp
.decomp
.count
);
1651 crypto_free_pcomp(tfm
);
1655 static int alg_test_hash(const struct alg_test_desc
*desc
, const char *driver
,
1658 struct crypto_ahash
*tfm
;
1661 tfm
= crypto_alloc_ahash(driver
, type
| CRYPTO_ALG_INTERNAL
, mask
);
1663 printk(KERN_ERR
"alg: hash: Failed to load transform for %s: "
1664 "%ld\n", driver
, PTR_ERR(tfm
));
1665 return PTR_ERR(tfm
);
1668 err
= test_hash(tfm
, desc
->suite
.hash
.vecs
,
1669 desc
->suite
.hash
.count
, true);
1671 err
= test_hash(tfm
, desc
->suite
.hash
.vecs
,
1672 desc
->suite
.hash
.count
, false);
1674 crypto_free_ahash(tfm
);
1678 static int alg_test_crc32c(const struct alg_test_desc
*desc
,
1679 const char *driver
, u32 type
, u32 mask
)
1681 struct crypto_shash
*tfm
;
1685 err
= alg_test_hash(desc
, driver
, type
, mask
);
1689 tfm
= crypto_alloc_shash(driver
, type
| CRYPTO_ALG_INTERNAL
, mask
);
1691 printk(KERN_ERR
"alg: crc32c: Failed to load transform for %s: "
1692 "%ld\n", driver
, PTR_ERR(tfm
));
1698 SHASH_DESC_ON_STACK(shash
, tfm
);
1699 u32
*ctx
= (u32
*)shash_desc_ctx(shash
);
1704 *ctx
= le32_to_cpu(420553207);
1705 err
= crypto_shash_final(shash
, (u8
*)&val
);
1707 printk(KERN_ERR
"alg: crc32c: Operation failed for "
1708 "%s: %d\n", driver
, err
);
1712 if (val
!= ~420553207) {
1713 printk(KERN_ERR
"alg: crc32c: Test failed for %s: "
1714 "%d\n", driver
, val
);
1719 crypto_free_shash(tfm
);
1725 static int alg_test_cprng(const struct alg_test_desc
*desc
, const char *driver
,
1728 struct crypto_rng
*rng
;
1731 rng
= crypto_alloc_rng(driver
, type
| CRYPTO_ALG_INTERNAL
, mask
);
1733 printk(KERN_ERR
"alg: cprng: Failed to load transform for %s: "
1734 "%ld\n", driver
, PTR_ERR(rng
));
1735 return PTR_ERR(rng
);
1738 err
= test_cprng(rng
, desc
->suite
.cprng
.vecs
, desc
->suite
.cprng
.count
);
1740 crypto_free_rng(rng
);
1746 static int drbg_cavs_test(struct drbg_testvec
*test
, int pr
,
1747 const char *driver
, u32 type
, u32 mask
)
1750 struct crypto_rng
*drng
;
1751 struct drbg_test_data test_data
;
1752 struct drbg_string addtl
, pers
, testentropy
;
1753 unsigned char *buf
= kzalloc(test
->expectedlen
, GFP_KERNEL
);
1758 drng
= crypto_alloc_rng(driver
, type
| CRYPTO_ALG_INTERNAL
, mask
);
1760 printk(KERN_ERR
"alg: drbg: could not allocate DRNG handle for "
1766 test_data
.testentropy
= &testentropy
;
1767 drbg_string_fill(&testentropy
, test
->entropy
, test
->entropylen
);
1768 drbg_string_fill(&pers
, test
->pers
, test
->perslen
);
1769 ret
= crypto_drbg_reset_test(drng
, &pers
, &test_data
);
1771 printk(KERN_ERR
"alg: drbg: Failed to reset rng\n");
1775 drbg_string_fill(&addtl
, test
->addtla
, test
->addtllen
);
1777 drbg_string_fill(&testentropy
, test
->entpra
, test
->entprlen
);
1778 ret
= crypto_drbg_get_bytes_addtl_test(drng
,
1779 buf
, test
->expectedlen
, &addtl
, &test_data
);
1781 ret
= crypto_drbg_get_bytes_addtl(drng
,
1782 buf
, test
->expectedlen
, &addtl
);
1785 printk(KERN_ERR
"alg: drbg: could not obtain random data for "
1786 "driver %s\n", driver
);
1790 drbg_string_fill(&addtl
, test
->addtlb
, test
->addtllen
);
1792 drbg_string_fill(&testentropy
, test
->entprb
, test
->entprlen
);
1793 ret
= crypto_drbg_get_bytes_addtl_test(drng
,
1794 buf
, test
->expectedlen
, &addtl
, &test_data
);
1796 ret
= crypto_drbg_get_bytes_addtl(drng
,
1797 buf
, test
->expectedlen
, &addtl
);
1800 printk(KERN_ERR
"alg: drbg: could not obtain random data for "
1801 "driver %s\n", driver
);
1805 ret
= memcmp(test
->expected
, buf
, test
->expectedlen
);
1808 crypto_free_rng(drng
);
1814 static int alg_test_drbg(const struct alg_test_desc
*desc
, const char *driver
,
1820 struct drbg_testvec
*template = desc
->suite
.drbg
.vecs
;
1821 unsigned int tcount
= desc
->suite
.drbg
.count
;
1823 if (0 == memcmp(driver
, "drbg_pr_", 8))
1826 for (i
= 0; i
< tcount
; i
++) {
1827 err
= drbg_cavs_test(&template[i
], pr
, driver
, type
, mask
);
1829 printk(KERN_ERR
"alg: drbg: Test %d failed for %s\n",
1839 static int do_test_rsa(struct crypto_akcipher
*tfm
,
1840 struct akcipher_testvec
*vecs
)
1842 struct akcipher_request
*req
;
1843 void *outbuf_enc
= NULL
;
1844 void *outbuf_dec
= NULL
;
1845 struct tcrypt_result result
;
1846 unsigned int out_len_max
, out_len
= 0;
1849 req
= akcipher_request_alloc(tfm
, GFP_KERNEL
);
1853 init_completion(&result
.completion
);
1854 err
= crypto_akcipher_setkey(tfm
, vecs
->key
, vecs
->key_len
);
1858 akcipher_request_set_crypt(req
, vecs
->m
, outbuf_enc
, vecs
->m_size
,
1860 /* expect this to fail, and update the required buf len */
1861 crypto_akcipher_encrypt(req
);
1862 out_len
= req
->dst_len
;
1868 out_len_max
= out_len
;
1870 outbuf_enc
= kzalloc(out_len_max
, GFP_KERNEL
);
1874 akcipher_request_set_crypt(req
, vecs
->m
, outbuf_enc
, vecs
->m_size
,
1876 akcipher_request_set_callback(req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
1877 tcrypt_complete
, &result
);
1879 /* Run RSA encrypt - c = m^e mod n;*/
1880 err
= wait_async_op(&result
, crypto_akcipher_encrypt(req
));
1882 pr_err("alg: rsa: encrypt test failed. err %d\n", err
);
1885 if (out_len
!= vecs
->c_size
) {
1886 pr_err("alg: rsa: encrypt test failed. Invalid output len\n");
1890 /* verify that encrypted message is equal to expected */
1891 if (memcmp(vecs
->c
, outbuf_enc
, vecs
->c_size
)) {
1892 pr_err("alg: rsa: encrypt test failed. Invalid output\n");
1896 /* Don't invoke decrypt for vectors with public key */
1897 if (vecs
->public_key_vec
) {
1901 outbuf_dec
= kzalloc(out_len_max
, GFP_KERNEL
);
1906 init_completion(&result
.completion
);
1907 akcipher_request_set_crypt(req
, outbuf_enc
, outbuf_dec
, vecs
->c_size
,
1910 /* Run RSA decrypt - m = c^d mod n;*/
1911 err
= wait_async_op(&result
, crypto_akcipher_decrypt(req
));
1913 pr_err("alg: rsa: decrypt test failed. err %d\n", err
);
1916 out_len
= req
->dst_len
;
1917 if (out_len
!= vecs
->m_size
) {
1918 pr_err("alg: rsa: decrypt test failed. Invalid output len\n");
1922 /* verify that decrypted message is equal to the original msg */
1923 if (memcmp(vecs
->m
, outbuf_dec
, vecs
->m_size
)) {
1924 pr_err("alg: rsa: decrypt test failed. Invalid output\n");
1931 akcipher_request_free(req
);
1935 static int test_rsa(struct crypto_akcipher
*tfm
, struct akcipher_testvec
*vecs
,
1936 unsigned int tcount
)
1940 for (i
= 0; i
< tcount
; i
++) {
1941 ret
= do_test_rsa(tfm
, vecs
++);
1943 pr_err("alg: rsa: test failed on vector %d, err=%d\n",
1951 static int test_akcipher(struct crypto_akcipher
*tfm
, const char *alg
,
1952 struct akcipher_testvec
*vecs
, unsigned int tcount
)
1954 if (strncmp(alg
, "rsa", 3) == 0)
1955 return test_rsa(tfm
, vecs
, tcount
);
1960 static int alg_test_akcipher(const struct alg_test_desc
*desc
,
1961 const char *driver
, u32 type
, u32 mask
)
1963 struct crypto_akcipher
*tfm
;
1966 tfm
= crypto_alloc_akcipher(driver
, type
| CRYPTO_ALG_INTERNAL
, mask
);
1968 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
1969 driver
, PTR_ERR(tfm
));
1970 return PTR_ERR(tfm
);
1972 if (desc
->suite
.akcipher
.vecs
)
1973 err
= test_akcipher(tfm
, desc
->alg
, desc
->suite
.akcipher
.vecs
,
1974 desc
->suite
.akcipher
.count
);
1976 crypto_free_akcipher(tfm
);
1980 static int alg_test_null(const struct alg_test_desc
*desc
,
1981 const char *driver
, u32 type
, u32 mask
)
1986 /* Please keep this list sorted by algorithm name. */
1987 static const struct alg_test_desc alg_test_descs
[] = {
1989 .alg
= "__cbc-cast5-avx",
1990 .test
= alg_test_null
,
1992 .alg
= "__cbc-cast6-avx",
1993 .test
= alg_test_null
,
1995 .alg
= "__cbc-serpent-avx",
1996 .test
= alg_test_null
,
1998 .alg
= "__cbc-serpent-avx2",
1999 .test
= alg_test_null
,
2001 .alg
= "__cbc-serpent-sse2",
2002 .test
= alg_test_null
,
2004 .alg
= "__cbc-twofish-avx",
2005 .test
= alg_test_null
,
2007 .alg
= "__driver-cbc-aes-aesni",
2008 .test
= alg_test_null
,
2011 .alg
= "__driver-cbc-camellia-aesni",
2012 .test
= alg_test_null
,
2014 .alg
= "__driver-cbc-camellia-aesni-avx2",
2015 .test
= alg_test_null
,
2017 .alg
= "__driver-cbc-cast5-avx",
2018 .test
= alg_test_null
,
2020 .alg
= "__driver-cbc-cast6-avx",
2021 .test
= alg_test_null
,
2023 .alg
= "__driver-cbc-serpent-avx",
2024 .test
= alg_test_null
,
2026 .alg
= "__driver-cbc-serpent-avx2",
2027 .test
= alg_test_null
,
2029 .alg
= "__driver-cbc-serpent-sse2",
2030 .test
= alg_test_null
,
2032 .alg
= "__driver-cbc-twofish-avx",
2033 .test
= alg_test_null
,
2035 .alg
= "__driver-ecb-aes-aesni",
2036 .test
= alg_test_null
,
2039 .alg
= "__driver-ecb-camellia-aesni",
2040 .test
= alg_test_null
,
2042 .alg
= "__driver-ecb-camellia-aesni-avx2",
2043 .test
= alg_test_null
,
2045 .alg
= "__driver-ecb-cast5-avx",
2046 .test
= alg_test_null
,
2048 .alg
= "__driver-ecb-cast6-avx",
2049 .test
= alg_test_null
,
2051 .alg
= "__driver-ecb-serpent-avx",
2052 .test
= alg_test_null
,
2054 .alg
= "__driver-ecb-serpent-avx2",
2055 .test
= alg_test_null
,
2057 .alg
= "__driver-ecb-serpent-sse2",
2058 .test
= alg_test_null
,
2060 .alg
= "__driver-ecb-twofish-avx",
2061 .test
= alg_test_null
,
2063 .alg
= "__driver-gcm-aes-aesni",
2064 .test
= alg_test_null
,
2067 .alg
= "__ghash-pclmulqdqni",
2068 .test
= alg_test_null
,
2071 .alg
= "ansi_cprng",
2072 .test
= alg_test_cprng
,
2076 .vecs
= ansi_cprng_aes_tv_template
,
2077 .count
= ANSI_CPRNG_AES_TEST_VECTORS
2081 .alg
= "authenc(hmac(md5),ecb(cipher_null))",
2082 .test
= alg_test_aead
,
2087 .vecs
= hmac_md5_ecb_cipher_null_enc_tv_template
,
2088 .count
= HMAC_MD5_ECB_CIPHER_NULL_ENC_TEST_VECTORS
2091 .vecs
= hmac_md5_ecb_cipher_null_dec_tv_template
,
2092 .count
= HMAC_MD5_ECB_CIPHER_NULL_DEC_TEST_VECTORS
2097 .alg
= "authenc(hmac(sha1),cbc(aes))",
2098 .test
= alg_test_aead
,
2104 hmac_sha1_aes_cbc_enc_tv_temp
,
2106 HMAC_SHA1_AES_CBC_ENC_TEST_VEC
2111 .alg
= "authenc(hmac(sha1),cbc(des))",
2112 .test
= alg_test_aead
,
2118 hmac_sha1_des_cbc_enc_tv_temp
,
2120 HMAC_SHA1_DES_CBC_ENC_TEST_VEC
2125 .alg
= "authenc(hmac(sha1),cbc(des3_ede))",
2126 .test
= alg_test_aead
,
2132 hmac_sha1_des3_ede_cbc_enc_tv_temp
,
2134 HMAC_SHA1_DES3_EDE_CBC_ENC_TEST_VEC
2139 .alg
= "authenc(hmac(sha1),ecb(cipher_null))",
2140 .test
= alg_test_aead
,
2146 hmac_sha1_ecb_cipher_null_enc_tv_temp
,
2148 HMAC_SHA1_ECB_CIPHER_NULL_ENC_TEST_VEC
2152 hmac_sha1_ecb_cipher_null_dec_tv_temp
,
2154 HMAC_SHA1_ECB_CIPHER_NULL_DEC_TEST_VEC
2159 .alg
= "authenc(hmac(sha224),cbc(des))",
2160 .test
= alg_test_aead
,
2166 hmac_sha224_des_cbc_enc_tv_temp
,
2168 HMAC_SHA224_DES_CBC_ENC_TEST_VEC
2173 .alg
= "authenc(hmac(sha224),cbc(des3_ede))",
2174 .test
= alg_test_aead
,
2180 hmac_sha224_des3_ede_cbc_enc_tv_temp
,
2182 HMAC_SHA224_DES3_EDE_CBC_ENC_TEST_VEC
2187 .alg
= "authenc(hmac(sha256),cbc(aes))",
2188 .test
= alg_test_aead
,
2194 hmac_sha256_aes_cbc_enc_tv_temp
,
2196 HMAC_SHA256_AES_CBC_ENC_TEST_VEC
2201 .alg
= "authenc(hmac(sha256),cbc(des))",
2202 .test
= alg_test_aead
,
2208 hmac_sha256_des_cbc_enc_tv_temp
,
2210 HMAC_SHA256_DES_CBC_ENC_TEST_VEC
2215 .alg
= "authenc(hmac(sha256),cbc(des3_ede))",
2216 .test
= alg_test_aead
,
2222 hmac_sha256_des3_ede_cbc_enc_tv_temp
,
2224 HMAC_SHA256_DES3_EDE_CBC_ENC_TEST_VEC
2229 .alg
= "authenc(hmac(sha384),cbc(des))",
2230 .test
= alg_test_aead
,
2236 hmac_sha384_des_cbc_enc_tv_temp
,
2238 HMAC_SHA384_DES_CBC_ENC_TEST_VEC
2243 .alg
= "authenc(hmac(sha384),cbc(des3_ede))",
2244 .test
= alg_test_aead
,
2250 hmac_sha384_des3_ede_cbc_enc_tv_temp
,
2252 HMAC_SHA384_DES3_EDE_CBC_ENC_TEST_VEC
2257 .alg
= "authenc(hmac(sha512),cbc(aes))",
2258 .test
= alg_test_aead
,
2264 hmac_sha512_aes_cbc_enc_tv_temp
,
2266 HMAC_SHA512_AES_CBC_ENC_TEST_VEC
2271 .alg
= "authenc(hmac(sha512),cbc(des))",
2272 .test
= alg_test_aead
,
2278 hmac_sha512_des_cbc_enc_tv_temp
,
2280 HMAC_SHA512_DES_CBC_ENC_TEST_VEC
2285 .alg
= "authenc(hmac(sha512),cbc(des3_ede))",
2286 .test
= alg_test_aead
,
2292 hmac_sha512_des3_ede_cbc_enc_tv_temp
,
2294 HMAC_SHA512_DES3_EDE_CBC_ENC_TEST_VEC
2300 .test
= alg_test_skcipher
,
2305 .vecs
= aes_cbc_enc_tv_template
,
2306 .count
= AES_CBC_ENC_TEST_VECTORS
2309 .vecs
= aes_cbc_dec_tv_template
,
2310 .count
= AES_CBC_DEC_TEST_VECTORS
2315 .alg
= "cbc(anubis)",
2316 .test
= alg_test_skcipher
,
2320 .vecs
= anubis_cbc_enc_tv_template
,
2321 .count
= ANUBIS_CBC_ENC_TEST_VECTORS
2324 .vecs
= anubis_cbc_dec_tv_template
,
2325 .count
= ANUBIS_CBC_DEC_TEST_VECTORS
2330 .alg
= "cbc(blowfish)",
2331 .test
= alg_test_skcipher
,
2335 .vecs
= bf_cbc_enc_tv_template
,
2336 .count
= BF_CBC_ENC_TEST_VECTORS
2339 .vecs
= bf_cbc_dec_tv_template
,
2340 .count
= BF_CBC_DEC_TEST_VECTORS
2345 .alg
= "cbc(camellia)",
2346 .test
= alg_test_skcipher
,
2350 .vecs
= camellia_cbc_enc_tv_template
,
2351 .count
= CAMELLIA_CBC_ENC_TEST_VECTORS
2354 .vecs
= camellia_cbc_dec_tv_template
,
2355 .count
= CAMELLIA_CBC_DEC_TEST_VECTORS
2360 .alg
= "cbc(cast5)",
2361 .test
= alg_test_skcipher
,
2365 .vecs
= cast5_cbc_enc_tv_template
,
2366 .count
= CAST5_CBC_ENC_TEST_VECTORS
2369 .vecs
= cast5_cbc_dec_tv_template
,
2370 .count
= CAST5_CBC_DEC_TEST_VECTORS
2375 .alg
= "cbc(cast6)",
2376 .test
= alg_test_skcipher
,
2380 .vecs
= cast6_cbc_enc_tv_template
,
2381 .count
= CAST6_CBC_ENC_TEST_VECTORS
2384 .vecs
= cast6_cbc_dec_tv_template
,
2385 .count
= CAST6_CBC_DEC_TEST_VECTORS
2391 .test
= alg_test_skcipher
,
2395 .vecs
= des_cbc_enc_tv_template
,
2396 .count
= DES_CBC_ENC_TEST_VECTORS
2399 .vecs
= des_cbc_dec_tv_template
,
2400 .count
= DES_CBC_DEC_TEST_VECTORS
2405 .alg
= "cbc(des3_ede)",
2406 .test
= alg_test_skcipher
,
2411 .vecs
= des3_ede_cbc_enc_tv_template
,
2412 .count
= DES3_EDE_CBC_ENC_TEST_VECTORS
2415 .vecs
= des3_ede_cbc_dec_tv_template
,
2416 .count
= DES3_EDE_CBC_DEC_TEST_VECTORS
2421 .alg
= "cbc(serpent)",
2422 .test
= alg_test_skcipher
,
2426 .vecs
= serpent_cbc_enc_tv_template
,
2427 .count
= SERPENT_CBC_ENC_TEST_VECTORS
2430 .vecs
= serpent_cbc_dec_tv_template
,
2431 .count
= SERPENT_CBC_DEC_TEST_VECTORS
2436 .alg
= "cbc(twofish)",
2437 .test
= alg_test_skcipher
,
2441 .vecs
= tf_cbc_enc_tv_template
,
2442 .count
= TF_CBC_ENC_TEST_VECTORS
2445 .vecs
= tf_cbc_dec_tv_template
,
2446 .count
= TF_CBC_DEC_TEST_VECTORS
2452 .test
= alg_test_aead
,
2457 .vecs
= aes_ccm_enc_tv_template
,
2458 .count
= AES_CCM_ENC_TEST_VECTORS
2461 .vecs
= aes_ccm_dec_tv_template
,
2462 .count
= AES_CCM_DEC_TEST_VECTORS
2468 .test
= alg_test_skcipher
,
2472 .vecs
= chacha20_enc_tv_template
,
2473 .count
= CHACHA20_ENC_TEST_VECTORS
2476 .vecs
= chacha20_enc_tv_template
,
2477 .count
= CHACHA20_ENC_TEST_VECTORS
2484 .test
= alg_test_hash
,
2487 .vecs
= aes_cmac128_tv_template
,
2488 .count
= CMAC_AES_TEST_VECTORS
2492 .alg
= "cmac(des3_ede)",
2494 .test
= alg_test_hash
,
2497 .vecs
= des3_ede_cmac64_tv_template
,
2498 .count
= CMAC_DES3_EDE_TEST_VECTORS
2502 .alg
= "compress_null",
2503 .test
= alg_test_null
,
2506 .test
= alg_test_hash
,
2509 .vecs
= crc32_tv_template
,
2510 .count
= CRC32_TEST_VECTORS
2515 .test
= alg_test_crc32c
,
2519 .vecs
= crc32c_tv_template
,
2520 .count
= CRC32C_TEST_VECTORS
2525 .test
= alg_test_hash
,
2529 .vecs
= crct10dif_tv_template
,
2530 .count
= CRCT10DIF_TEST_VECTORS
2534 .alg
= "cryptd(__driver-cbc-aes-aesni)",
2535 .test
= alg_test_null
,
2538 .alg
= "cryptd(__driver-cbc-camellia-aesni)",
2539 .test
= alg_test_null
,
2541 .alg
= "cryptd(__driver-cbc-camellia-aesni-avx2)",
2542 .test
= alg_test_null
,
2544 .alg
= "cryptd(__driver-cbc-serpent-avx2)",
2545 .test
= alg_test_null
,
2547 .alg
= "cryptd(__driver-ecb-aes-aesni)",
2548 .test
= alg_test_null
,
2551 .alg
= "cryptd(__driver-ecb-camellia-aesni)",
2552 .test
= alg_test_null
,
2554 .alg
= "cryptd(__driver-ecb-camellia-aesni-avx2)",
2555 .test
= alg_test_null
,
2557 .alg
= "cryptd(__driver-ecb-cast5-avx)",
2558 .test
= alg_test_null
,
2560 .alg
= "cryptd(__driver-ecb-cast6-avx)",
2561 .test
= alg_test_null
,
2563 .alg
= "cryptd(__driver-ecb-serpent-avx)",
2564 .test
= alg_test_null
,
2566 .alg
= "cryptd(__driver-ecb-serpent-avx2)",
2567 .test
= alg_test_null
,
2569 .alg
= "cryptd(__driver-ecb-serpent-sse2)",
2570 .test
= alg_test_null
,
2572 .alg
= "cryptd(__driver-ecb-twofish-avx)",
2573 .test
= alg_test_null
,
2575 .alg
= "cryptd(__driver-gcm-aes-aesni)",
2576 .test
= alg_test_null
,
2579 .alg
= "cryptd(__ghash-pclmulqdqni)",
2580 .test
= alg_test_null
,
2584 .test
= alg_test_skcipher
,
2589 .vecs
= aes_ctr_enc_tv_template
,
2590 .count
= AES_CTR_ENC_TEST_VECTORS
2593 .vecs
= aes_ctr_dec_tv_template
,
2594 .count
= AES_CTR_DEC_TEST_VECTORS
2599 .alg
= "ctr(blowfish)",
2600 .test
= alg_test_skcipher
,
2604 .vecs
= bf_ctr_enc_tv_template
,
2605 .count
= BF_CTR_ENC_TEST_VECTORS
2608 .vecs
= bf_ctr_dec_tv_template
,
2609 .count
= BF_CTR_DEC_TEST_VECTORS
2614 .alg
= "ctr(camellia)",
2615 .test
= alg_test_skcipher
,
2619 .vecs
= camellia_ctr_enc_tv_template
,
2620 .count
= CAMELLIA_CTR_ENC_TEST_VECTORS
2623 .vecs
= camellia_ctr_dec_tv_template
,
2624 .count
= CAMELLIA_CTR_DEC_TEST_VECTORS
2629 .alg
= "ctr(cast5)",
2630 .test
= alg_test_skcipher
,
2634 .vecs
= cast5_ctr_enc_tv_template
,
2635 .count
= CAST5_CTR_ENC_TEST_VECTORS
2638 .vecs
= cast5_ctr_dec_tv_template
,
2639 .count
= CAST5_CTR_DEC_TEST_VECTORS
2644 .alg
= "ctr(cast6)",
2645 .test
= alg_test_skcipher
,
2649 .vecs
= cast6_ctr_enc_tv_template
,
2650 .count
= CAST6_CTR_ENC_TEST_VECTORS
2653 .vecs
= cast6_ctr_dec_tv_template
,
2654 .count
= CAST6_CTR_DEC_TEST_VECTORS
2660 .test
= alg_test_skcipher
,
2664 .vecs
= des_ctr_enc_tv_template
,
2665 .count
= DES_CTR_ENC_TEST_VECTORS
2668 .vecs
= des_ctr_dec_tv_template
,
2669 .count
= DES_CTR_DEC_TEST_VECTORS
2674 .alg
= "ctr(des3_ede)",
2675 .test
= alg_test_skcipher
,
2679 .vecs
= des3_ede_ctr_enc_tv_template
,
2680 .count
= DES3_EDE_CTR_ENC_TEST_VECTORS
2683 .vecs
= des3_ede_ctr_dec_tv_template
,
2684 .count
= DES3_EDE_CTR_DEC_TEST_VECTORS
2689 .alg
= "ctr(serpent)",
2690 .test
= alg_test_skcipher
,
2694 .vecs
= serpent_ctr_enc_tv_template
,
2695 .count
= SERPENT_CTR_ENC_TEST_VECTORS
2698 .vecs
= serpent_ctr_dec_tv_template
,
2699 .count
= SERPENT_CTR_DEC_TEST_VECTORS
2704 .alg
= "ctr(twofish)",
2705 .test
= alg_test_skcipher
,
2709 .vecs
= tf_ctr_enc_tv_template
,
2710 .count
= TF_CTR_ENC_TEST_VECTORS
2713 .vecs
= tf_ctr_dec_tv_template
,
2714 .count
= TF_CTR_DEC_TEST_VECTORS
2719 .alg
= "cts(cbc(aes))",
2720 .test
= alg_test_skcipher
,
2724 .vecs
= cts_mode_enc_tv_template
,
2725 .count
= CTS_MODE_ENC_TEST_VECTORS
2728 .vecs
= cts_mode_dec_tv_template
,
2729 .count
= CTS_MODE_DEC_TEST_VECTORS
2735 .test
= alg_test_comp
,
2740 .vecs
= deflate_comp_tv_template
,
2741 .count
= DEFLATE_COMP_TEST_VECTORS
2744 .vecs
= deflate_decomp_tv_template
,
2745 .count
= DEFLATE_DECOMP_TEST_VECTORS
2750 .alg
= "digest_null",
2751 .test
= alg_test_null
,
2753 .alg
= "drbg_nopr_ctr_aes128",
2754 .test
= alg_test_drbg
,
2758 .vecs
= drbg_nopr_ctr_aes128_tv_template
,
2759 .count
= ARRAY_SIZE(drbg_nopr_ctr_aes128_tv_template
)
2763 .alg
= "drbg_nopr_ctr_aes192",
2764 .test
= alg_test_drbg
,
2768 .vecs
= drbg_nopr_ctr_aes192_tv_template
,
2769 .count
= ARRAY_SIZE(drbg_nopr_ctr_aes192_tv_template
)
2773 .alg
= "drbg_nopr_ctr_aes256",
2774 .test
= alg_test_drbg
,
2778 .vecs
= drbg_nopr_ctr_aes256_tv_template
,
2779 .count
= ARRAY_SIZE(drbg_nopr_ctr_aes256_tv_template
)
2784 * There is no need to specifically test the DRBG with every
2785 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
2787 .alg
= "drbg_nopr_hmac_sha1",
2789 .test
= alg_test_null
,
2791 .alg
= "drbg_nopr_hmac_sha256",
2792 .test
= alg_test_drbg
,
2796 .vecs
= drbg_nopr_hmac_sha256_tv_template
,
2798 ARRAY_SIZE(drbg_nopr_hmac_sha256_tv_template
)
2802 /* covered by drbg_nopr_hmac_sha256 test */
2803 .alg
= "drbg_nopr_hmac_sha384",
2805 .test
= alg_test_null
,
2807 .alg
= "drbg_nopr_hmac_sha512",
2808 .test
= alg_test_null
,
2811 .alg
= "drbg_nopr_sha1",
2813 .test
= alg_test_null
,
2815 .alg
= "drbg_nopr_sha256",
2816 .test
= alg_test_drbg
,
2820 .vecs
= drbg_nopr_sha256_tv_template
,
2821 .count
= ARRAY_SIZE(drbg_nopr_sha256_tv_template
)
2825 /* covered by drbg_nopr_sha256 test */
2826 .alg
= "drbg_nopr_sha384",
2828 .test
= alg_test_null
,
2830 .alg
= "drbg_nopr_sha512",
2832 .test
= alg_test_null
,
2834 .alg
= "drbg_pr_ctr_aes128",
2835 .test
= alg_test_drbg
,
2839 .vecs
= drbg_pr_ctr_aes128_tv_template
,
2840 .count
= ARRAY_SIZE(drbg_pr_ctr_aes128_tv_template
)
2844 /* covered by drbg_pr_ctr_aes128 test */
2845 .alg
= "drbg_pr_ctr_aes192",
2847 .test
= alg_test_null
,
2849 .alg
= "drbg_pr_ctr_aes256",
2851 .test
= alg_test_null
,
2853 .alg
= "drbg_pr_hmac_sha1",
2855 .test
= alg_test_null
,
2857 .alg
= "drbg_pr_hmac_sha256",
2858 .test
= alg_test_drbg
,
2862 .vecs
= drbg_pr_hmac_sha256_tv_template
,
2863 .count
= ARRAY_SIZE(drbg_pr_hmac_sha256_tv_template
)
2867 /* covered by drbg_pr_hmac_sha256 test */
2868 .alg
= "drbg_pr_hmac_sha384",
2870 .test
= alg_test_null
,
2872 .alg
= "drbg_pr_hmac_sha512",
2873 .test
= alg_test_null
,
2876 .alg
= "drbg_pr_sha1",
2878 .test
= alg_test_null
,
2880 .alg
= "drbg_pr_sha256",
2881 .test
= alg_test_drbg
,
2885 .vecs
= drbg_pr_sha256_tv_template
,
2886 .count
= ARRAY_SIZE(drbg_pr_sha256_tv_template
)
2890 /* covered by drbg_pr_sha256 test */
2891 .alg
= "drbg_pr_sha384",
2893 .test
= alg_test_null
,
2895 .alg
= "drbg_pr_sha512",
2897 .test
= alg_test_null
,
2899 .alg
= "ecb(__aes-aesni)",
2900 .test
= alg_test_null
,
2904 .test
= alg_test_skcipher
,
2909 .vecs
= aes_enc_tv_template
,
2910 .count
= AES_ENC_TEST_VECTORS
2913 .vecs
= aes_dec_tv_template
,
2914 .count
= AES_DEC_TEST_VECTORS
2919 .alg
= "ecb(anubis)",
2920 .test
= alg_test_skcipher
,
2924 .vecs
= anubis_enc_tv_template
,
2925 .count
= ANUBIS_ENC_TEST_VECTORS
2928 .vecs
= anubis_dec_tv_template
,
2929 .count
= ANUBIS_DEC_TEST_VECTORS
2935 .test
= alg_test_skcipher
,
2939 .vecs
= arc4_enc_tv_template
,
2940 .count
= ARC4_ENC_TEST_VECTORS
2943 .vecs
= arc4_dec_tv_template
,
2944 .count
= ARC4_DEC_TEST_VECTORS
2949 .alg
= "ecb(blowfish)",
2950 .test
= alg_test_skcipher
,
2954 .vecs
= bf_enc_tv_template
,
2955 .count
= BF_ENC_TEST_VECTORS
2958 .vecs
= bf_dec_tv_template
,
2959 .count
= BF_DEC_TEST_VECTORS
2964 .alg
= "ecb(camellia)",
2965 .test
= alg_test_skcipher
,
2969 .vecs
= camellia_enc_tv_template
,
2970 .count
= CAMELLIA_ENC_TEST_VECTORS
2973 .vecs
= camellia_dec_tv_template
,
2974 .count
= CAMELLIA_DEC_TEST_VECTORS
2979 .alg
= "ecb(cast5)",
2980 .test
= alg_test_skcipher
,
2984 .vecs
= cast5_enc_tv_template
,
2985 .count
= CAST5_ENC_TEST_VECTORS
2988 .vecs
= cast5_dec_tv_template
,
2989 .count
= CAST5_DEC_TEST_VECTORS
2994 .alg
= "ecb(cast6)",
2995 .test
= alg_test_skcipher
,
2999 .vecs
= cast6_enc_tv_template
,
3000 .count
= CAST6_ENC_TEST_VECTORS
3003 .vecs
= cast6_dec_tv_template
,
3004 .count
= CAST6_DEC_TEST_VECTORS
3009 .alg
= "ecb(cipher_null)",
3010 .test
= alg_test_null
,
3013 .test
= alg_test_skcipher
,
3018 .vecs
= des_enc_tv_template
,
3019 .count
= DES_ENC_TEST_VECTORS
3022 .vecs
= des_dec_tv_template
,
3023 .count
= DES_DEC_TEST_VECTORS
3028 .alg
= "ecb(des3_ede)",
3029 .test
= alg_test_skcipher
,
3034 .vecs
= des3_ede_enc_tv_template
,
3035 .count
= DES3_EDE_ENC_TEST_VECTORS
3038 .vecs
= des3_ede_dec_tv_template
,
3039 .count
= DES3_EDE_DEC_TEST_VECTORS
3044 .alg
= "ecb(fcrypt)",
3045 .test
= alg_test_skcipher
,
3049 .vecs
= fcrypt_pcbc_enc_tv_template
,
3053 .vecs
= fcrypt_pcbc_dec_tv_template
,
3059 .alg
= "ecb(khazad)",
3060 .test
= alg_test_skcipher
,
3064 .vecs
= khazad_enc_tv_template
,
3065 .count
= KHAZAD_ENC_TEST_VECTORS
3068 .vecs
= khazad_dec_tv_template
,
3069 .count
= KHAZAD_DEC_TEST_VECTORS
3075 .test
= alg_test_skcipher
,
3079 .vecs
= seed_enc_tv_template
,
3080 .count
= SEED_ENC_TEST_VECTORS
3083 .vecs
= seed_dec_tv_template
,
3084 .count
= SEED_DEC_TEST_VECTORS
3089 .alg
= "ecb(serpent)",
3090 .test
= alg_test_skcipher
,
3094 .vecs
= serpent_enc_tv_template
,
3095 .count
= SERPENT_ENC_TEST_VECTORS
3098 .vecs
= serpent_dec_tv_template
,
3099 .count
= SERPENT_DEC_TEST_VECTORS
3105 .test
= alg_test_skcipher
,
3109 .vecs
= tea_enc_tv_template
,
3110 .count
= TEA_ENC_TEST_VECTORS
3113 .vecs
= tea_dec_tv_template
,
3114 .count
= TEA_DEC_TEST_VECTORS
3119 .alg
= "ecb(tnepres)",
3120 .test
= alg_test_skcipher
,
3124 .vecs
= tnepres_enc_tv_template
,
3125 .count
= TNEPRES_ENC_TEST_VECTORS
3128 .vecs
= tnepres_dec_tv_template
,
3129 .count
= TNEPRES_DEC_TEST_VECTORS
3134 .alg
= "ecb(twofish)",
3135 .test
= alg_test_skcipher
,
3139 .vecs
= tf_enc_tv_template
,
3140 .count
= TF_ENC_TEST_VECTORS
3143 .vecs
= tf_dec_tv_template
,
3144 .count
= TF_DEC_TEST_VECTORS
3150 .test
= alg_test_skcipher
,
3154 .vecs
= xeta_enc_tv_template
,
3155 .count
= XETA_ENC_TEST_VECTORS
3158 .vecs
= xeta_dec_tv_template
,
3159 .count
= XETA_DEC_TEST_VECTORS
3165 .test
= alg_test_skcipher
,
3169 .vecs
= xtea_enc_tv_template
,
3170 .count
= XTEA_ENC_TEST_VECTORS
3173 .vecs
= xtea_dec_tv_template
,
3174 .count
= XTEA_DEC_TEST_VECTORS
3180 .test
= alg_test_aead
,
3185 .vecs
= aes_gcm_enc_tv_template
,
3186 .count
= AES_GCM_ENC_TEST_VECTORS
3189 .vecs
= aes_gcm_dec_tv_template
,
3190 .count
= AES_GCM_DEC_TEST_VECTORS
3196 .test
= alg_test_hash
,
3200 .vecs
= ghash_tv_template
,
3201 .count
= GHASH_TEST_VECTORS
3205 .alg
= "hmac(crc32)",
3206 .test
= alg_test_hash
,
3209 .vecs
= bfin_crc_tv_template
,
3210 .count
= BFIN_CRC_TEST_VECTORS
3215 .test
= alg_test_hash
,
3218 .vecs
= hmac_md5_tv_template
,
3219 .count
= HMAC_MD5_TEST_VECTORS
3223 .alg
= "hmac(rmd128)",
3224 .test
= alg_test_hash
,
3227 .vecs
= hmac_rmd128_tv_template
,
3228 .count
= HMAC_RMD128_TEST_VECTORS
3232 .alg
= "hmac(rmd160)",
3233 .test
= alg_test_hash
,
3236 .vecs
= hmac_rmd160_tv_template
,
3237 .count
= HMAC_RMD160_TEST_VECTORS
3241 .alg
= "hmac(sha1)",
3242 .test
= alg_test_hash
,
3246 .vecs
= hmac_sha1_tv_template
,
3247 .count
= HMAC_SHA1_TEST_VECTORS
3251 .alg
= "hmac(sha224)",
3252 .test
= alg_test_hash
,
3256 .vecs
= hmac_sha224_tv_template
,
3257 .count
= HMAC_SHA224_TEST_VECTORS
3261 .alg
= "hmac(sha256)",
3262 .test
= alg_test_hash
,
3266 .vecs
= hmac_sha256_tv_template
,
3267 .count
= HMAC_SHA256_TEST_VECTORS
3271 .alg
= "hmac(sha384)",
3272 .test
= alg_test_hash
,
3276 .vecs
= hmac_sha384_tv_template
,
3277 .count
= HMAC_SHA384_TEST_VECTORS
3281 .alg
= "hmac(sha512)",
3282 .test
= alg_test_hash
,
3286 .vecs
= hmac_sha512_tv_template
,
3287 .count
= HMAC_SHA512_TEST_VECTORS
3291 .alg
= "jitterentropy_rng",
3293 .test
= alg_test_null
,
3296 .test
= alg_test_skcipher
,
3300 .vecs
= aes_lrw_enc_tv_template
,
3301 .count
= AES_LRW_ENC_TEST_VECTORS
3304 .vecs
= aes_lrw_dec_tv_template
,
3305 .count
= AES_LRW_DEC_TEST_VECTORS
3310 .alg
= "lrw(camellia)",
3311 .test
= alg_test_skcipher
,
3315 .vecs
= camellia_lrw_enc_tv_template
,
3316 .count
= CAMELLIA_LRW_ENC_TEST_VECTORS
3319 .vecs
= camellia_lrw_dec_tv_template
,
3320 .count
= CAMELLIA_LRW_DEC_TEST_VECTORS
3325 .alg
= "lrw(cast6)",
3326 .test
= alg_test_skcipher
,
3330 .vecs
= cast6_lrw_enc_tv_template
,
3331 .count
= CAST6_LRW_ENC_TEST_VECTORS
3334 .vecs
= cast6_lrw_dec_tv_template
,
3335 .count
= CAST6_LRW_DEC_TEST_VECTORS
3340 .alg
= "lrw(serpent)",
3341 .test
= alg_test_skcipher
,
3345 .vecs
= serpent_lrw_enc_tv_template
,
3346 .count
= SERPENT_LRW_ENC_TEST_VECTORS
3349 .vecs
= serpent_lrw_dec_tv_template
,
3350 .count
= SERPENT_LRW_DEC_TEST_VECTORS
3355 .alg
= "lrw(twofish)",
3356 .test
= alg_test_skcipher
,
3360 .vecs
= tf_lrw_enc_tv_template
,
3361 .count
= TF_LRW_ENC_TEST_VECTORS
3364 .vecs
= tf_lrw_dec_tv_template
,
3365 .count
= TF_LRW_DEC_TEST_VECTORS
3371 .test
= alg_test_comp
,
3376 .vecs
= lz4_comp_tv_template
,
3377 .count
= LZ4_COMP_TEST_VECTORS
3380 .vecs
= lz4_decomp_tv_template
,
3381 .count
= LZ4_DECOMP_TEST_VECTORS
3387 .test
= alg_test_comp
,
3392 .vecs
= lz4hc_comp_tv_template
,
3393 .count
= LZ4HC_COMP_TEST_VECTORS
3396 .vecs
= lz4hc_decomp_tv_template
,
3397 .count
= LZ4HC_DECOMP_TEST_VECTORS
3403 .test
= alg_test_comp
,
3408 .vecs
= lzo_comp_tv_template
,
3409 .count
= LZO_COMP_TEST_VECTORS
3412 .vecs
= lzo_decomp_tv_template
,
3413 .count
= LZO_DECOMP_TEST_VECTORS
3419 .test
= alg_test_hash
,
3422 .vecs
= md4_tv_template
,
3423 .count
= MD4_TEST_VECTORS
3428 .test
= alg_test_hash
,
3431 .vecs
= md5_tv_template
,
3432 .count
= MD5_TEST_VECTORS
3436 .alg
= "michael_mic",
3437 .test
= alg_test_hash
,
3440 .vecs
= michael_mic_tv_template
,
3441 .count
= MICHAEL_MIC_TEST_VECTORS
3446 .test
= alg_test_skcipher
,
3451 .vecs
= aes_ofb_enc_tv_template
,
3452 .count
= AES_OFB_ENC_TEST_VECTORS
3455 .vecs
= aes_ofb_dec_tv_template
,
3456 .count
= AES_OFB_DEC_TEST_VECTORS
3461 .alg
= "pcbc(fcrypt)",
3462 .test
= alg_test_skcipher
,
3466 .vecs
= fcrypt_pcbc_enc_tv_template
,
3467 .count
= FCRYPT_ENC_TEST_VECTORS
3470 .vecs
= fcrypt_pcbc_dec_tv_template
,
3471 .count
= FCRYPT_DEC_TEST_VECTORS
3477 .test
= alg_test_hash
,
3480 .vecs
= poly1305_tv_template
,
3481 .count
= POLY1305_TEST_VECTORS
3485 .alg
= "rfc3686(ctr(aes))",
3486 .test
= alg_test_skcipher
,
3491 .vecs
= aes_ctr_rfc3686_enc_tv_template
,
3492 .count
= AES_CTR_3686_ENC_TEST_VECTORS
3495 .vecs
= aes_ctr_rfc3686_dec_tv_template
,
3496 .count
= AES_CTR_3686_DEC_TEST_VECTORS
3501 .alg
= "rfc4106(gcm(aes))",
3502 .test
= alg_test_aead
,
3507 .vecs
= aes_gcm_rfc4106_enc_tv_template
,
3508 .count
= AES_GCM_4106_ENC_TEST_VECTORS
3511 .vecs
= aes_gcm_rfc4106_dec_tv_template
,
3512 .count
= AES_GCM_4106_DEC_TEST_VECTORS
3517 .alg
= "rfc4309(ccm(aes))",
3518 .test
= alg_test_aead
,
3523 .vecs
= aes_ccm_rfc4309_enc_tv_template
,
3524 .count
= AES_CCM_4309_ENC_TEST_VECTORS
3527 .vecs
= aes_ccm_rfc4309_dec_tv_template
,
3528 .count
= AES_CCM_4309_DEC_TEST_VECTORS
3533 .alg
= "rfc4543(gcm(aes))",
3534 .test
= alg_test_aead
,
3538 .vecs
= aes_gcm_rfc4543_enc_tv_template
,
3539 .count
= AES_GCM_4543_ENC_TEST_VECTORS
3542 .vecs
= aes_gcm_rfc4543_dec_tv_template
,
3543 .count
= AES_GCM_4543_DEC_TEST_VECTORS
3548 .alg
= "rfc7539(chacha20,poly1305)",
3549 .test
= alg_test_aead
,
3553 .vecs
= rfc7539_enc_tv_template
,
3554 .count
= RFC7539_ENC_TEST_VECTORS
3557 .vecs
= rfc7539_dec_tv_template
,
3558 .count
= RFC7539_DEC_TEST_VECTORS
3563 .alg
= "rfc7539esp(chacha20,poly1305)",
3564 .test
= alg_test_aead
,
3568 .vecs
= rfc7539esp_enc_tv_template
,
3569 .count
= RFC7539ESP_ENC_TEST_VECTORS
3572 .vecs
= rfc7539esp_dec_tv_template
,
3573 .count
= RFC7539ESP_DEC_TEST_VECTORS
3579 .test
= alg_test_hash
,
3582 .vecs
= rmd128_tv_template
,
3583 .count
= RMD128_TEST_VECTORS
3588 .test
= alg_test_hash
,
3591 .vecs
= rmd160_tv_template
,
3592 .count
= RMD160_TEST_VECTORS
3597 .test
= alg_test_hash
,
3600 .vecs
= rmd256_tv_template
,
3601 .count
= RMD256_TEST_VECTORS
3606 .test
= alg_test_hash
,
3609 .vecs
= rmd320_tv_template
,
3610 .count
= RMD320_TEST_VECTORS
3615 .test
= alg_test_akcipher
,
3619 .vecs
= rsa_tv_template
,
3620 .count
= RSA_TEST_VECTORS
3625 .test
= alg_test_skcipher
,
3629 .vecs
= salsa20_stream_enc_tv_template
,
3630 .count
= SALSA20_STREAM_ENC_TEST_VECTORS
3636 .test
= alg_test_hash
,
3640 .vecs
= sha1_tv_template
,
3641 .count
= SHA1_TEST_VECTORS
3646 .test
= alg_test_hash
,
3650 .vecs
= sha224_tv_template
,
3651 .count
= SHA224_TEST_VECTORS
3656 .test
= alg_test_hash
,
3660 .vecs
= sha256_tv_template
,
3661 .count
= SHA256_TEST_VECTORS
3666 .test
= alg_test_hash
,
3670 .vecs
= sha384_tv_template
,
3671 .count
= SHA384_TEST_VECTORS
3676 .test
= alg_test_hash
,
3680 .vecs
= sha512_tv_template
,
3681 .count
= SHA512_TEST_VECTORS
3686 .test
= alg_test_hash
,
3689 .vecs
= tgr128_tv_template
,
3690 .count
= TGR128_TEST_VECTORS
3695 .test
= alg_test_hash
,
3698 .vecs
= tgr160_tv_template
,
3699 .count
= TGR160_TEST_VECTORS
3704 .test
= alg_test_hash
,
3707 .vecs
= tgr192_tv_template
,
3708 .count
= TGR192_TEST_VECTORS
3713 .test
= alg_test_hash
,
3716 .vecs
= aes_vmac128_tv_template
,
3717 .count
= VMAC_AES_TEST_VECTORS
3722 .test
= alg_test_hash
,
3725 .vecs
= wp256_tv_template
,
3726 .count
= WP256_TEST_VECTORS
3731 .test
= alg_test_hash
,
3734 .vecs
= wp384_tv_template
,
3735 .count
= WP384_TEST_VECTORS
3740 .test
= alg_test_hash
,
3743 .vecs
= wp512_tv_template
,
3744 .count
= WP512_TEST_VECTORS
3749 .test
= alg_test_hash
,
3752 .vecs
= aes_xcbc128_tv_template
,
3753 .count
= XCBC_AES_TEST_VECTORS
3758 .test
= alg_test_skcipher
,
3763 .vecs
= aes_xts_enc_tv_template
,
3764 .count
= AES_XTS_ENC_TEST_VECTORS
3767 .vecs
= aes_xts_dec_tv_template
,
3768 .count
= AES_XTS_DEC_TEST_VECTORS
3773 .alg
= "xts(camellia)",
3774 .test
= alg_test_skcipher
,
3778 .vecs
= camellia_xts_enc_tv_template
,
3779 .count
= CAMELLIA_XTS_ENC_TEST_VECTORS
3782 .vecs
= camellia_xts_dec_tv_template
,
3783 .count
= CAMELLIA_XTS_DEC_TEST_VECTORS
3788 .alg
= "xts(cast6)",
3789 .test
= alg_test_skcipher
,
3793 .vecs
= cast6_xts_enc_tv_template
,
3794 .count
= CAST6_XTS_ENC_TEST_VECTORS
3797 .vecs
= cast6_xts_dec_tv_template
,
3798 .count
= CAST6_XTS_DEC_TEST_VECTORS
3803 .alg
= "xts(serpent)",
3804 .test
= alg_test_skcipher
,
3808 .vecs
= serpent_xts_enc_tv_template
,
3809 .count
= SERPENT_XTS_ENC_TEST_VECTORS
3812 .vecs
= serpent_xts_dec_tv_template
,
3813 .count
= SERPENT_XTS_DEC_TEST_VECTORS
3818 .alg
= "xts(twofish)",
3819 .test
= alg_test_skcipher
,
3823 .vecs
= tf_xts_enc_tv_template
,
3824 .count
= TF_XTS_ENC_TEST_VECTORS
3827 .vecs
= tf_xts_dec_tv_template
,
3828 .count
= TF_XTS_DEC_TEST_VECTORS
3834 .test
= alg_test_pcomp
,
3839 .vecs
= zlib_comp_tv_template
,
3840 .count
= ZLIB_COMP_TEST_VECTORS
3843 .vecs
= zlib_decomp_tv_template
,
3844 .count
= ZLIB_DECOMP_TEST_VECTORS
3851 static bool alg_test_descs_checked
;
3853 static void alg_test_descs_check_order(void)
3857 /* only check once */
3858 if (alg_test_descs_checked
)
3861 alg_test_descs_checked
= true;
3863 for (i
= 1; i
< ARRAY_SIZE(alg_test_descs
); i
++) {
3864 int diff
= strcmp(alg_test_descs
[i
- 1].alg
,
3865 alg_test_descs
[i
].alg
);
3867 if (WARN_ON(diff
> 0)) {
3868 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
3869 alg_test_descs
[i
- 1].alg
,
3870 alg_test_descs
[i
].alg
);
3873 if (WARN_ON(diff
== 0)) {
3874 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
3875 alg_test_descs
[i
].alg
);
3880 static int alg_find_test(const char *alg
)
3883 int end
= ARRAY_SIZE(alg_test_descs
);
3885 while (start
< end
) {
3886 int i
= (start
+ end
) / 2;
3887 int diff
= strcmp(alg_test_descs
[i
].alg
, alg
);
3905 int alg_test(const char *driver
, const char *alg
, u32 type
, u32 mask
)
3911 alg_test_descs_check_order();
3913 if ((type
& CRYPTO_ALG_TYPE_MASK
) == CRYPTO_ALG_TYPE_CIPHER
) {
3914 char nalg
[CRYPTO_MAX_ALG_NAME
];
3916 if (snprintf(nalg
, sizeof(nalg
), "ecb(%s)", alg
) >=
3918 return -ENAMETOOLONG
;
3920 i
= alg_find_test(nalg
);
3924 if (fips_enabled
&& !alg_test_descs
[i
].fips_allowed
)
3927 rc
= alg_test_cipher(alg_test_descs
+ i
, driver
, type
, mask
);
3931 i
= alg_find_test(alg
);
3932 j
= alg_find_test(driver
);
3936 if (fips_enabled
&& ((i
>= 0 && !alg_test_descs
[i
].fips_allowed
) ||
3937 (j
>= 0 && !alg_test_descs
[j
].fips_allowed
)))
3942 rc
|= alg_test_descs
[i
].test(alg_test_descs
+ i
, driver
,
3944 if (j
>= 0 && j
!= i
)
3945 rc
|= alg_test_descs
[j
].test(alg_test_descs
+ j
, driver
,
3949 if (fips_enabled
&& rc
)
3950 panic("%s: %s alg self test failed in fips mode!\n", driver
, alg
);
3952 if (fips_enabled
&& !rc
)
3953 pr_info("alg: self-tests for %s (%s) passed\n", driver
, alg
);
3958 printk(KERN_INFO
"alg: No test for %s (%s)\n", alg
, driver
);
3964 #endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
3966 EXPORT_SYMBOL_GPL(alg_test
);