2 * Quick & dirty crypto testing module.
4 * This will only exist until we have a better testing mechanism
5 * (e.g. a char device).
7 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
8 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
9 * Copyright (c) 2007 Nokia Siemens Networks
11 * Updated RFC4106 AES-GCM testing.
12 * Authors: Aidan O'Mahony (aidan.o.mahony@intel.com)
13 * Adrian Hoban <adrian.hoban@intel.com>
14 * Gabriele Paoloni <gabriele.paoloni@intel.com>
15 * Tadeusz Struk (tadeusz.struk@intel.com)
16 * Copyright (c) 2010, Intel Corporation.
18 * This program is free software; you can redistribute it and/or modify it
19 * under the terms of the GNU General Public License as published by the Free
20 * Software Foundation; either version 2 of the License, or (at your option)
25 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27 #include <crypto/aead.h>
28 #include <crypto/hash.h>
29 #include <crypto/skcipher.h>
30 #include <linux/err.h>
31 #include <linux/fips.h>
32 #include <linux/init.h>
33 #include <linux/gfp.h>
34 #include <linux/module.h>
35 #include <linux/scatterlist.h>
36 #include <linux/string.h>
37 #include <linux/moduleparam.h>
38 #include <linux/jiffies.h>
39 #include <linux/timex.h>
40 #include <linux/interrupt.h>
44 * Need slab memory for testing (size in number of pages).
49 * Used by test_cipher_speed()
54 #define MAX_DIGEST_SIZE 64
57 * return a string with the driver name
59 #define get_driver_name(tfm_type, tfm) crypto_tfm_alg_driver_name(tfm_type ## _tfm(tfm))
62 * Used by test_cipher_speed()
64 static unsigned int sec
;
66 static char *alg
= NULL
;
70 static u32 num_mb
= 8;
71 static char *tvmem
[TVMEMSIZE
];
73 static char *check
[] = {
74 "des", "md5", "des3_ede", "rot13", "sha1", "sha224", "sha256", "sm3",
75 "blowfish", "twofish", "serpent", "sha384", "sha512", "md4", "aes",
76 "cast6", "arc4", "michael_mic", "deflate", "crc32c", "tea", "xtea",
77 "khazad", "wp512", "wp384", "wp256", "tnepres", "xeta", "fcrypt",
78 "camellia", "seed", "salsa20", "rmd128", "rmd160", "rmd256", "rmd320",
79 "lzo", "cts", "zlib", "sha3-224", "sha3-256", "sha3-384", "sha3-512",
83 static u32 block_sizes
[] = { 16, 64, 256, 1024, 8192, 0 };
84 static u32 aead_sizes
[] = { 16, 64, 256, 512, 1024, 2048, 4096, 8192, 0 };
89 static int testmgr_alloc_buf(char *buf
[XBUFSIZE
])
93 for (i
= 0; i
< XBUFSIZE
; i
++) {
94 buf
[i
] = (void *)__get_free_page(GFP_KERNEL
);
103 free_page((unsigned long)buf
[i
]);
108 static void testmgr_free_buf(char *buf
[XBUFSIZE
])
112 for (i
= 0; i
< XBUFSIZE
; i
++)
113 free_page((unsigned long)buf
[i
]);
116 static void sg_init_aead(struct scatterlist
*sg
, char *xbuf
[XBUFSIZE
],
117 unsigned int buflen
, const void *assoc
,
118 unsigned int aad_size
)
120 int np
= (buflen
+ PAGE_SIZE
- 1)/PAGE_SIZE
;
127 rem
= buflen
% PAGE_SIZE
;
130 sg_init_table(sg
, np
+ 1);
132 sg_set_buf(&sg
[0], assoc
, aad_size
);
136 for (k
= 0; k
< np
; k
++)
137 sg_set_buf(&sg
[k
+ 1], xbuf
[k
], PAGE_SIZE
);
140 sg_set_buf(&sg
[k
+ 1], xbuf
[k
], rem
);
143 static inline int do_one_aead_op(struct aead_request
*req
, int ret
)
145 struct crypto_wait
*wait
= req
->base
.data
;
147 return crypto_wait_req(ret
, wait
);
150 struct test_mb_aead_data
{
151 struct scatterlist sg
[XBUFSIZE
];
152 struct scatterlist sgout
[XBUFSIZE
];
153 struct aead_request
*req
;
154 struct crypto_wait wait
;
155 char *xbuf
[XBUFSIZE
];
156 char *xoutbuf
[XBUFSIZE
];
157 char *axbuf
[XBUFSIZE
];
160 static int do_mult_aead_op(struct test_mb_aead_data
*data
, int enc
,
165 /* Fire up a bunch of concurrent requests */
166 for (i
= 0; i
< num_mb
; i
++) {
168 rc
[i
] = crypto_aead_encrypt(data
[i
].req
);
170 rc
[i
] = crypto_aead_decrypt(data
[i
].req
);
173 /* Wait for all requests to finish */
174 for (i
= 0; i
< num_mb
; i
++) {
175 rc
[i
] = crypto_wait_req(rc
[i
], &data
[i
].wait
);
178 pr_info("concurrent request %d error %d\n", i
, rc
[i
]);
186 static int test_mb_aead_jiffies(struct test_mb_aead_data
*data
, int enc
,
187 int blen
, int secs
, u32 num_mb
)
189 unsigned long start
, end
;
194 rc
= kcalloc(num_mb
, sizeof(*rc
), GFP_KERNEL
);
198 for (start
= jiffies
, end
= start
+ secs
* HZ
, bcount
= 0;
199 time_before(jiffies
, end
); bcount
++) {
200 ret
= do_mult_aead_op(data
, enc
, num_mb
, rc
);
205 pr_cont("%d operations in %d seconds (%ld bytes)\n",
206 bcount
* num_mb
, secs
, (long)bcount
* blen
* num_mb
);
213 static int test_mb_aead_cycles(struct test_mb_aead_data
*data
, int enc
,
214 int blen
, u32 num_mb
)
216 unsigned long cycles
= 0;
221 rc
= kcalloc(num_mb
, sizeof(*rc
), GFP_KERNEL
);
226 for (i
= 0; i
< 4; i
++) {
227 ret
= do_mult_aead_op(data
, enc
, num_mb
, rc
);
232 /* The real thing. */
233 for (i
= 0; i
< 8; i
++) {
236 start
= get_cycles();
237 ret
= do_mult_aead_op(data
, enc
, num_mb
, rc
);
243 cycles
+= end
- start
;
246 pr_cont("1 operation in %lu cycles (%d bytes)\n",
247 (cycles
+ 4) / (8 * num_mb
), blen
);
254 static void test_mb_aead_speed(const char *algo
, int enc
, int secs
,
255 struct aead_speed_template
*template,
256 unsigned int tcount
, u8 authsize
,
257 unsigned int aad_size
, u8
*keysize
, u32 num_mb
)
259 struct test_mb_aead_data
*data
;
260 struct crypto_aead
*tfm
;
261 unsigned int i
, j
, iv_len
;
270 if (aad_size
>= PAGE_SIZE
) {
271 pr_err("associate data length (%u) too big\n", aad_size
);
275 iv
= kzalloc(MAX_IVLEN
, GFP_KERNEL
);
284 data
= kcalloc(num_mb
, sizeof(*data
), GFP_KERNEL
);
288 tfm
= crypto_alloc_aead(algo
, 0, 0);
290 pr_err("failed to load transform for %s: %ld\n",
295 ret
= crypto_aead_setauthsize(tfm
, authsize
);
297 for (i
= 0; i
< num_mb
; ++i
)
298 if (testmgr_alloc_buf(data
[i
].xbuf
)) {
300 testmgr_free_buf(data
[i
].xbuf
);
304 for (i
= 0; i
< num_mb
; ++i
)
305 if (testmgr_alloc_buf(data
[i
].axbuf
)) {
307 testmgr_free_buf(data
[i
].axbuf
);
311 for (i
= 0; i
< num_mb
; ++i
)
312 if (testmgr_alloc_buf(data
[i
].xoutbuf
)) {
314 testmgr_free_buf(data
[i
].xoutbuf
);
318 for (i
= 0; i
< num_mb
; ++i
) {
319 data
[i
].req
= aead_request_alloc(tfm
, GFP_KERNEL
);
321 pr_err("alg: skcipher: Failed to allocate request for %s\n",
324 aead_request_free(data
[i
].req
);
325 goto out_free_xoutbuf
;
329 for (i
= 0; i
< num_mb
; ++i
) {
330 crypto_init_wait(&data
[i
].wait
);
331 aead_request_set_callback(data
[i
].req
,
332 CRYPTO_TFM_REQ_MAY_BACKLOG
,
333 crypto_req_done
, &data
[i
].wait
);
336 pr_info("\ntesting speed of multibuffer %s (%s) %s\n", algo
,
337 get_driver_name(crypto_aead
, tfm
), e
);
343 if (*b_size
+ authsize
> XBUFSIZE
* PAGE_SIZE
) {
344 pr_err("template (%u) too big for buffer (%lu)\n",
346 XBUFSIZE
* PAGE_SIZE
);
350 pr_info("test %u (%d bit key, %d byte blocks): ", i
,
351 *keysize
* 8, *b_size
);
353 /* Set up tfm global state, i.e. the key */
355 memset(tvmem
[0], 0xff, PAGE_SIZE
);
357 for (j
= 0; j
< tcount
; j
++) {
358 if (template[j
].klen
== *keysize
) {
359 key
= template[j
].key
;
364 crypto_aead_clear_flags(tfm
, ~0);
366 ret
= crypto_aead_setkey(tfm
, key
, *keysize
);
368 pr_err("setkey() failed flags=%x\n",
369 crypto_aead_get_flags(tfm
));
373 iv_len
= crypto_aead_ivsize(tfm
);
375 memset(iv
, 0xff, iv_len
);
377 /* Now setup per request stuff, i.e. buffers */
379 for (j
= 0; j
< num_mb
; ++j
) {
380 struct test_mb_aead_data
*cur
= &data
[j
];
382 assoc
= cur
->axbuf
[0];
383 memset(assoc
, 0xff, aad_size
);
385 sg_init_aead(cur
->sg
, cur
->xbuf
,
386 *b_size
+ (enc
? 0 : authsize
),
389 sg_init_aead(cur
->sgout
, cur
->xoutbuf
,
390 *b_size
+ (enc
? authsize
: 0),
393 aead_request_set_ad(cur
->req
, aad_size
);
397 aead_request_set_crypt(cur
->req
,
401 ret
= crypto_aead_encrypt(cur
->req
);
402 ret
= do_one_aead_op(cur
->req
, ret
);
405 pr_err("calculating auth failed failed (%d)\n",
411 aead_request_set_crypt(cur
->req
, cur
->sg
,
412 cur
->sgout
, *b_size
+
413 (enc
? 0 : authsize
),
419 ret
= test_mb_aead_jiffies(data
, enc
, *b_size
,
423 ret
= test_mb_aead_cycles(data
, enc
, *b_size
,
428 pr_err("%s() failed return code=%d\n", e
, ret
);
438 for (i
= 0; i
< num_mb
; ++i
)
439 aead_request_free(data
[i
].req
);
441 for (i
= 0; i
< num_mb
; ++i
)
442 testmgr_free_buf(data
[i
].xoutbuf
);
444 for (i
= 0; i
< num_mb
; ++i
)
445 testmgr_free_buf(data
[i
].axbuf
);
447 for (i
= 0; i
< num_mb
; ++i
)
448 testmgr_free_buf(data
[i
].xbuf
);
450 crypto_free_aead(tfm
);
457 static int test_aead_jiffies(struct aead_request
*req
, int enc
,
460 unsigned long start
, end
;
464 for (start
= jiffies
, end
= start
+ secs
* HZ
, bcount
= 0;
465 time_before(jiffies
, end
); bcount
++) {
467 ret
= do_one_aead_op(req
, crypto_aead_encrypt(req
));
469 ret
= do_one_aead_op(req
, crypto_aead_decrypt(req
));
475 printk("%d operations in %d seconds (%ld bytes)\n",
476 bcount
, secs
, (long)bcount
* blen
);
480 static int test_aead_cycles(struct aead_request
*req
, int enc
, int blen
)
482 unsigned long cycles
= 0;
487 for (i
= 0; i
< 4; i
++) {
489 ret
= do_one_aead_op(req
, crypto_aead_encrypt(req
));
491 ret
= do_one_aead_op(req
, crypto_aead_decrypt(req
));
497 /* The real thing. */
498 for (i
= 0; i
< 8; i
++) {
501 start
= get_cycles();
503 ret
= do_one_aead_op(req
, crypto_aead_encrypt(req
));
505 ret
= do_one_aead_op(req
, crypto_aead_decrypt(req
));
511 cycles
+= end
- start
;
516 printk("1 operation in %lu cycles (%d bytes)\n",
517 (cycles
+ 4) / 8, blen
);
522 static void test_aead_speed(const char *algo
, int enc
, unsigned int secs
,
523 struct aead_speed_template
*template,
524 unsigned int tcount
, u8 authsize
,
525 unsigned int aad_size
, u8
*keysize
)
528 struct crypto_aead
*tfm
;
531 struct aead_request
*req
;
532 struct scatterlist
*sg
;
533 struct scatterlist
*sgout
;
537 char *xbuf
[XBUFSIZE
];
538 char *xoutbuf
[XBUFSIZE
];
539 char *axbuf
[XBUFSIZE
];
540 unsigned int *b_size
;
542 struct crypto_wait wait
;
544 iv
= kzalloc(MAX_IVLEN
, GFP_KERNEL
);
548 if (aad_size
>= PAGE_SIZE
) {
549 pr_err("associate data length (%u) too big\n", aad_size
);
558 if (testmgr_alloc_buf(xbuf
))
560 if (testmgr_alloc_buf(axbuf
))
562 if (testmgr_alloc_buf(xoutbuf
))
565 sg
= kmalloc(sizeof(*sg
) * 9 * 2, GFP_KERNEL
);
570 tfm
= crypto_alloc_aead(algo
, 0, 0);
573 pr_err("alg: aead: Failed to load transform for %s: %ld\n", algo
,
578 crypto_init_wait(&wait
);
579 printk(KERN_INFO
"\ntesting speed of %s (%s) %s\n", algo
,
580 get_driver_name(crypto_aead
, tfm
), e
);
582 req
= aead_request_alloc(tfm
, GFP_KERNEL
);
584 pr_err("alg: aead: Failed to allocate request for %s\n",
589 aead_request_set_callback(req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
590 crypto_req_done
, &wait
);
597 memset(assoc
, 0xff, aad_size
);
599 if ((*keysize
+ *b_size
) > TVMEMSIZE
* PAGE_SIZE
) {
600 pr_err("template (%u) too big for tvmem (%lu)\n",
602 TVMEMSIZE
* PAGE_SIZE
);
607 for (j
= 0; j
< tcount
; j
++) {
608 if (template[j
].klen
== *keysize
) {
609 key
= template[j
].key
;
613 ret
= crypto_aead_setkey(tfm
, key
, *keysize
);
614 ret
= crypto_aead_setauthsize(tfm
, authsize
);
616 iv_len
= crypto_aead_ivsize(tfm
);
618 memset(iv
, 0xff, iv_len
);
620 crypto_aead_clear_flags(tfm
, ~0);
621 printk(KERN_INFO
"test %u (%d bit key, %d byte blocks): ",
622 i
, *keysize
* 8, *b_size
);
625 memset(tvmem
[0], 0xff, PAGE_SIZE
);
628 pr_err("setkey() failed flags=%x\n",
629 crypto_aead_get_flags(tfm
));
633 sg_init_aead(sg
, xbuf
, *b_size
+ (enc
? 0 : authsize
),
636 sg_init_aead(sgout
, xoutbuf
,
637 *b_size
+ (enc
? authsize
: 0), assoc
,
640 aead_request_set_ad(req
, aad_size
);
645 * For decryption we need a proper auth so
646 * we do the encryption path once with buffers
647 * reversed (input <-> output) to calculate it
649 aead_request_set_crypt(req
, sgout
, sg
,
651 ret
= do_one_aead_op(req
,
652 crypto_aead_encrypt(req
));
655 pr_err("calculating auth failed failed (%d)\n",
661 aead_request_set_crypt(req
, sg
, sgout
,
662 *b_size
+ (enc
? 0 : authsize
),
666 ret
= test_aead_jiffies(req
, enc
, *b_size
,
670 ret
= test_aead_cycles(req
, enc
, *b_size
);
674 pr_err("%s() failed return code=%d\n", e
, ret
);
684 aead_request_free(req
);
686 crypto_free_aead(tfm
);
690 testmgr_free_buf(xoutbuf
);
692 testmgr_free_buf(axbuf
);
694 testmgr_free_buf(xbuf
);
699 static void test_hash_sg_init(struct scatterlist
*sg
)
703 sg_init_table(sg
, TVMEMSIZE
);
704 for (i
= 0; i
< TVMEMSIZE
; i
++) {
705 sg_set_buf(sg
+ i
, tvmem
[i
], PAGE_SIZE
);
706 memset(tvmem
[i
], 0xff, PAGE_SIZE
);
710 static inline int do_one_ahash_op(struct ahash_request
*req
, int ret
)
712 struct crypto_wait
*wait
= req
->base
.data
;
714 return crypto_wait_req(ret
, wait
);
717 struct test_mb_ahash_data
{
718 struct scatterlist sg
[XBUFSIZE
];
720 struct ahash_request
*req
;
721 struct crypto_wait wait
;
722 char *xbuf
[XBUFSIZE
];
725 static inline int do_mult_ahash_op(struct test_mb_ahash_data
*data
, u32 num_mb
,
730 /* Fire up a bunch of concurrent requests */
731 for (i
= 0; i
< num_mb
; i
++)
732 rc
[i
] = crypto_ahash_digest(data
[i
].req
);
734 /* Wait for all requests to finish */
735 for (i
= 0; i
< num_mb
; i
++) {
736 rc
[i
] = crypto_wait_req(rc
[i
], &data
[i
].wait
);
739 pr_info("concurrent request %d error %d\n", i
, rc
[i
]);
747 static int test_mb_ahash_jiffies(struct test_mb_ahash_data
*data
, int blen
,
748 int secs
, u32 num_mb
)
750 unsigned long start
, end
;
755 rc
= kcalloc(num_mb
, sizeof(*rc
), GFP_KERNEL
);
759 for (start
= jiffies
, end
= start
+ secs
* HZ
, bcount
= 0;
760 time_before(jiffies
, end
); bcount
++) {
761 ret
= do_mult_ahash_op(data
, num_mb
, rc
);
766 pr_cont("%d operations in %d seconds (%ld bytes)\n",
767 bcount
* num_mb
, secs
, (long)bcount
* blen
* num_mb
);
774 static int test_mb_ahash_cycles(struct test_mb_ahash_data
*data
, int blen
,
777 unsigned long cycles
= 0;
782 rc
= kcalloc(num_mb
, sizeof(*rc
), GFP_KERNEL
);
787 for (i
= 0; i
< 4; i
++) {
788 ret
= do_mult_ahash_op(data
, num_mb
, rc
);
793 /* The real thing. */
794 for (i
= 0; i
< 8; i
++) {
797 start
= get_cycles();
798 ret
= do_mult_ahash_op(data
, num_mb
, rc
);
804 cycles
+= end
- start
;
807 pr_cont("1 operation in %lu cycles (%d bytes)\n",
808 (cycles
+ 4) / (8 * num_mb
), blen
);
815 static void test_mb_ahash_speed(const char *algo
, unsigned int secs
,
816 struct hash_speed
*speed
, u32 num_mb
)
818 struct test_mb_ahash_data
*data
;
819 struct crypto_ahash
*tfm
;
820 unsigned int i
, j
, k
;
823 data
= kcalloc(num_mb
, sizeof(*data
), GFP_KERNEL
);
827 tfm
= crypto_alloc_ahash(algo
, 0, 0);
829 pr_err("failed to load transform for %s: %ld\n",
834 for (i
= 0; i
< num_mb
; ++i
) {
835 if (testmgr_alloc_buf(data
[i
].xbuf
))
838 crypto_init_wait(&data
[i
].wait
);
840 data
[i
].req
= ahash_request_alloc(tfm
, GFP_KERNEL
);
842 pr_err("alg: hash: Failed to allocate request for %s\n",
847 ahash_request_set_callback(data
[i
].req
, 0, crypto_req_done
,
850 sg_init_table(data
[i
].sg
, XBUFSIZE
);
851 for (j
= 0; j
< XBUFSIZE
; j
++) {
852 sg_set_buf(data
[i
].sg
+ j
, data
[i
].xbuf
[j
], PAGE_SIZE
);
853 memset(data
[i
].xbuf
[j
], 0xff, PAGE_SIZE
);
857 pr_info("\ntesting speed of multibuffer %s (%s)\n", algo
,
858 get_driver_name(crypto_ahash
, tfm
));
860 for (i
= 0; speed
[i
].blen
!= 0; i
++) {
861 /* For some reason this only tests digests. */
862 if (speed
[i
].blen
!= speed
[i
].plen
)
865 if (speed
[i
].blen
> XBUFSIZE
* PAGE_SIZE
) {
866 pr_err("template (%u) too big for tvmem (%lu)\n",
867 speed
[i
].blen
, XBUFSIZE
* PAGE_SIZE
);
872 crypto_ahash_setkey(tfm
, tvmem
[0], speed
[i
].klen
);
874 for (k
= 0; k
< num_mb
; k
++)
875 ahash_request_set_crypt(data
[k
].req
, data
[k
].sg
,
876 data
[k
].result
, speed
[i
].blen
);
879 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
880 i
, speed
[i
].blen
, speed
[i
].plen
,
881 speed
[i
].blen
/ speed
[i
].plen
);
884 ret
= test_mb_ahash_jiffies(data
, speed
[i
].blen
, secs
,
888 ret
= test_mb_ahash_cycles(data
, speed
[i
].blen
, num_mb
);
893 pr_err("At least one hashing failed ret=%d\n", ret
);
899 for (k
= 0; k
< num_mb
; ++k
)
900 ahash_request_free(data
[k
].req
);
902 for (k
= 0; k
< num_mb
; ++k
)
903 testmgr_free_buf(data
[k
].xbuf
);
905 crypto_free_ahash(tfm
);
911 static int test_ahash_jiffies_digest(struct ahash_request
*req
, int blen
,
914 unsigned long start
, end
;
918 for (start
= jiffies
, end
= start
+ secs
* HZ
, bcount
= 0;
919 time_before(jiffies
, end
); bcount
++) {
920 ret
= do_one_ahash_op(req
, crypto_ahash_digest(req
));
925 printk("%6u opers/sec, %9lu bytes/sec\n",
926 bcount
/ secs
, ((long)bcount
* blen
) / secs
);
931 static int test_ahash_jiffies(struct ahash_request
*req
, int blen
,
932 int plen
, char *out
, int secs
)
934 unsigned long start
, end
;
939 return test_ahash_jiffies_digest(req
, blen
, out
, secs
);
941 for (start
= jiffies
, end
= start
+ secs
* HZ
, bcount
= 0;
942 time_before(jiffies
, end
); bcount
++) {
943 ret
= do_one_ahash_op(req
, crypto_ahash_init(req
));
946 for (pcount
= 0; pcount
< blen
; pcount
+= plen
) {
947 ret
= do_one_ahash_op(req
, crypto_ahash_update(req
));
951 /* we assume there is enough space in 'out' for the result */
952 ret
= do_one_ahash_op(req
, crypto_ahash_final(req
));
957 pr_cont("%6u opers/sec, %9lu bytes/sec\n",
958 bcount
/ secs
, ((long)bcount
* blen
) / secs
);
963 static int test_ahash_cycles_digest(struct ahash_request
*req
, int blen
,
966 unsigned long cycles
= 0;
970 for (i
= 0; i
< 4; i
++) {
971 ret
= do_one_ahash_op(req
, crypto_ahash_digest(req
));
976 /* The real thing. */
977 for (i
= 0; i
< 8; i
++) {
980 start
= get_cycles();
982 ret
= do_one_ahash_op(req
, crypto_ahash_digest(req
));
988 cycles
+= end
- start
;
995 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
996 cycles
/ 8, cycles
/ (8 * blen
));
1001 static int test_ahash_cycles(struct ahash_request
*req
, int blen
,
1002 int plen
, char *out
)
1004 unsigned long cycles
= 0;
1008 return test_ahash_cycles_digest(req
, blen
, out
);
1011 for (i
= 0; i
< 4; i
++) {
1012 ret
= do_one_ahash_op(req
, crypto_ahash_init(req
));
1015 for (pcount
= 0; pcount
< blen
; pcount
+= plen
) {
1016 ret
= do_one_ahash_op(req
, crypto_ahash_update(req
));
1020 ret
= do_one_ahash_op(req
, crypto_ahash_final(req
));
1025 /* The real thing. */
1026 for (i
= 0; i
< 8; i
++) {
1027 cycles_t start
, end
;
1029 start
= get_cycles();
1031 ret
= do_one_ahash_op(req
, crypto_ahash_init(req
));
1034 for (pcount
= 0; pcount
< blen
; pcount
+= plen
) {
1035 ret
= do_one_ahash_op(req
, crypto_ahash_update(req
));
1039 ret
= do_one_ahash_op(req
, crypto_ahash_final(req
));
1045 cycles
+= end
- start
;
1052 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
1053 cycles
/ 8, cycles
/ (8 * blen
));
1058 static void test_ahash_speed_common(const char *algo
, unsigned int secs
,
1059 struct hash_speed
*speed
, unsigned mask
)
1061 struct scatterlist sg
[TVMEMSIZE
];
1062 struct crypto_wait wait
;
1063 struct ahash_request
*req
;
1064 struct crypto_ahash
*tfm
;
1068 tfm
= crypto_alloc_ahash(algo
, 0, mask
);
1070 pr_err("failed to load transform for %s: %ld\n",
1071 algo
, PTR_ERR(tfm
));
1075 printk(KERN_INFO
"\ntesting speed of async %s (%s)\n", algo
,
1076 get_driver_name(crypto_ahash
, tfm
));
1078 if (crypto_ahash_digestsize(tfm
) > MAX_DIGEST_SIZE
) {
1079 pr_err("digestsize(%u) > %d\n", crypto_ahash_digestsize(tfm
),
1084 test_hash_sg_init(sg
);
1085 req
= ahash_request_alloc(tfm
, GFP_KERNEL
);
1087 pr_err("ahash request allocation failure\n");
1091 crypto_init_wait(&wait
);
1092 ahash_request_set_callback(req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
1093 crypto_req_done
, &wait
);
1095 output
= kmalloc(MAX_DIGEST_SIZE
, GFP_KERNEL
);
1099 for (i
= 0; speed
[i
].blen
!= 0; i
++) {
1100 if (speed
[i
].blen
> TVMEMSIZE
* PAGE_SIZE
) {
1101 pr_err("template (%u) too big for tvmem (%lu)\n",
1102 speed
[i
].blen
, TVMEMSIZE
* PAGE_SIZE
);
1107 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
1108 i
, speed
[i
].blen
, speed
[i
].plen
, speed
[i
].blen
/ speed
[i
].plen
);
1110 ahash_request_set_crypt(req
, sg
, output
, speed
[i
].plen
);
1113 ret
= test_ahash_jiffies(req
, speed
[i
].blen
,
1114 speed
[i
].plen
, output
, secs
);
1117 ret
= test_ahash_cycles(req
, speed
[i
].blen
,
1118 speed
[i
].plen
, output
);
1122 pr_err("hashing failed ret=%d\n", ret
);
1130 ahash_request_free(req
);
1133 crypto_free_ahash(tfm
);
1136 static void test_ahash_speed(const char *algo
, unsigned int secs
,
1137 struct hash_speed
*speed
)
1139 return test_ahash_speed_common(algo
, secs
, speed
, 0);
1142 static void test_hash_speed(const char *algo
, unsigned int secs
,
1143 struct hash_speed
*speed
)
1145 return test_ahash_speed_common(algo
, secs
, speed
, CRYPTO_ALG_ASYNC
);
1148 struct test_mb_skcipher_data
{
1149 struct scatterlist sg
[XBUFSIZE
];
1150 struct skcipher_request
*req
;
1151 struct crypto_wait wait
;
1152 char *xbuf
[XBUFSIZE
];
1155 static int do_mult_acipher_op(struct test_mb_skcipher_data
*data
, int enc
,
1156 u32 num_mb
, int *rc
)
1160 /* Fire up a bunch of concurrent requests */
1161 for (i
= 0; i
< num_mb
; i
++) {
1163 rc
[i
] = crypto_skcipher_encrypt(data
[i
].req
);
1165 rc
[i
] = crypto_skcipher_decrypt(data
[i
].req
);
1168 /* Wait for all requests to finish */
1169 for (i
= 0; i
< num_mb
; i
++) {
1170 rc
[i
] = crypto_wait_req(rc
[i
], &data
[i
].wait
);
1173 pr_info("concurrent request %d error %d\n", i
, rc
[i
]);
1181 static int test_mb_acipher_jiffies(struct test_mb_skcipher_data
*data
, int enc
,
1182 int blen
, int secs
, u32 num_mb
)
1184 unsigned long start
, end
;
1189 rc
= kcalloc(num_mb
, sizeof(*rc
), GFP_KERNEL
);
1193 for (start
= jiffies
, end
= start
+ secs
* HZ
, bcount
= 0;
1194 time_before(jiffies
, end
); bcount
++) {
1195 ret
= do_mult_acipher_op(data
, enc
, num_mb
, rc
);
1200 pr_cont("%d operations in %d seconds (%ld bytes)\n",
1201 bcount
* num_mb
, secs
, (long)bcount
* blen
* num_mb
);
1208 static int test_mb_acipher_cycles(struct test_mb_skcipher_data
*data
, int enc
,
1209 int blen
, u32 num_mb
)
1211 unsigned long cycles
= 0;
1216 rc
= kcalloc(num_mb
, sizeof(*rc
), GFP_KERNEL
);
1221 for (i
= 0; i
< 4; i
++) {
1222 ret
= do_mult_acipher_op(data
, enc
, num_mb
, rc
);
1227 /* The real thing. */
1228 for (i
= 0; i
< 8; i
++) {
1229 cycles_t start
, end
;
1231 start
= get_cycles();
1232 ret
= do_mult_acipher_op(data
, enc
, num_mb
, rc
);
1238 cycles
+= end
- start
;
1241 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1242 (cycles
+ 4) / (8 * num_mb
), blen
);
1249 static void test_mb_skcipher_speed(const char *algo
, int enc
, int secs
,
1250 struct cipher_speed_template
*template,
1251 unsigned int tcount
, u8
*keysize
, u32 num_mb
)
1253 struct test_mb_skcipher_data
*data
;
1254 struct crypto_skcipher
*tfm
;
1255 unsigned int i
, j
, iv_len
;
1267 data
= kcalloc(num_mb
, sizeof(*data
), GFP_KERNEL
);
1271 tfm
= crypto_alloc_skcipher(algo
, 0, 0);
1273 pr_err("failed to load transform for %s: %ld\n",
1274 algo
, PTR_ERR(tfm
));
1278 for (i
= 0; i
< num_mb
; ++i
)
1279 if (testmgr_alloc_buf(data
[i
].xbuf
)) {
1281 testmgr_free_buf(data
[i
].xbuf
);
1286 for (i
= 0; i
< num_mb
; ++i
)
1287 if (testmgr_alloc_buf(data
[i
].xbuf
)) {
1289 testmgr_free_buf(data
[i
].xbuf
);
1294 for (i
= 0; i
< num_mb
; ++i
) {
1295 data
[i
].req
= skcipher_request_alloc(tfm
, GFP_KERNEL
);
1297 pr_err("alg: skcipher: Failed to allocate request for %s\n",
1300 skcipher_request_free(data
[i
].req
);
1305 for (i
= 0; i
< num_mb
; ++i
) {
1306 skcipher_request_set_callback(data
[i
].req
,
1307 CRYPTO_TFM_REQ_MAY_BACKLOG
,
1308 crypto_req_done
, &data
[i
].wait
);
1309 crypto_init_wait(&data
[i
].wait
);
1312 pr_info("\ntesting speed of multibuffer %s (%s) %s\n", algo
,
1313 get_driver_name(crypto_skcipher
, tfm
), e
);
1317 b_size
= block_sizes
;
1319 if (*b_size
> XBUFSIZE
* PAGE_SIZE
) {
1320 pr_err("template (%u) too big for buffer (%lu)\n",
1321 *b_size
, XBUFSIZE
* PAGE_SIZE
);
1325 pr_info("test %u (%d bit key, %d byte blocks): ", i
,
1326 *keysize
* 8, *b_size
);
1328 /* Set up tfm global state, i.e. the key */
1330 memset(tvmem
[0], 0xff, PAGE_SIZE
);
1332 for (j
= 0; j
< tcount
; j
++) {
1333 if (template[j
].klen
== *keysize
) {
1334 key
= template[j
].key
;
1339 crypto_skcipher_clear_flags(tfm
, ~0);
1341 ret
= crypto_skcipher_setkey(tfm
, key
, *keysize
);
1343 pr_err("setkey() failed flags=%x\n",
1344 crypto_skcipher_get_flags(tfm
));
1348 iv_len
= crypto_skcipher_ivsize(tfm
);
1350 memset(&iv
, 0xff, iv_len
);
1352 /* Now setup per request stuff, i.e. buffers */
1354 for (j
= 0; j
< num_mb
; ++j
) {
1355 struct test_mb_skcipher_data
*cur
= &data
[j
];
1356 unsigned int k
= *b_size
;
1357 unsigned int pages
= DIV_ROUND_UP(k
, PAGE_SIZE
);
1360 sg_init_table(cur
->sg
, pages
);
1362 while (k
> PAGE_SIZE
) {
1363 sg_set_buf(cur
->sg
+ p
, cur
->xbuf
[p
],
1365 memset(cur
->xbuf
[p
], 0xff, PAGE_SIZE
);
1370 sg_set_buf(cur
->sg
+ p
, cur
->xbuf
[p
], k
);
1371 memset(cur
->xbuf
[p
], 0xff, k
);
1373 skcipher_request_set_crypt(cur
->req
, cur
->sg
,
1379 ret
= test_mb_acipher_jiffies(data
, enc
,
1384 ret
= test_mb_acipher_cycles(data
, enc
,
1389 pr_err("%s() failed flags=%x\n", e
,
1390 crypto_skcipher_get_flags(tfm
));
1400 for (i
= 0; i
< num_mb
; ++i
)
1401 skcipher_request_free(data
[i
].req
);
1403 for (i
= 0; i
< num_mb
; ++i
)
1404 testmgr_free_buf(data
[i
].xbuf
);
1406 crypto_free_skcipher(tfm
);
1411 static inline int do_one_acipher_op(struct skcipher_request
*req
, int ret
)
1413 struct crypto_wait
*wait
= req
->base
.data
;
1415 return crypto_wait_req(ret
, wait
);
1418 static int test_acipher_jiffies(struct skcipher_request
*req
, int enc
,
1421 unsigned long start
, end
;
1425 for (start
= jiffies
, end
= start
+ secs
* HZ
, bcount
= 0;
1426 time_before(jiffies
, end
); bcount
++) {
1428 ret
= do_one_acipher_op(req
,
1429 crypto_skcipher_encrypt(req
));
1431 ret
= do_one_acipher_op(req
,
1432 crypto_skcipher_decrypt(req
));
1438 pr_cont("%d operations in %d seconds (%ld bytes)\n",
1439 bcount
, secs
, (long)bcount
* blen
);
1443 static int test_acipher_cycles(struct skcipher_request
*req
, int enc
,
1446 unsigned long cycles
= 0;
1451 for (i
= 0; i
< 4; i
++) {
1453 ret
= do_one_acipher_op(req
,
1454 crypto_skcipher_encrypt(req
));
1456 ret
= do_one_acipher_op(req
,
1457 crypto_skcipher_decrypt(req
));
1463 /* The real thing. */
1464 for (i
= 0; i
< 8; i
++) {
1465 cycles_t start
, end
;
1467 start
= get_cycles();
1469 ret
= do_one_acipher_op(req
,
1470 crypto_skcipher_encrypt(req
));
1472 ret
= do_one_acipher_op(req
,
1473 crypto_skcipher_decrypt(req
));
1479 cycles
+= end
- start
;
1484 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1485 (cycles
+ 4) / 8, blen
);
1490 static void test_skcipher_speed(const char *algo
, int enc
, unsigned int secs
,
1491 struct cipher_speed_template
*template,
1492 unsigned int tcount
, u8
*keysize
, bool async
)
1494 unsigned int ret
, i
, j
, k
, iv_len
;
1495 struct crypto_wait wait
;
1498 struct skcipher_request
*req
;
1499 struct crypto_skcipher
*tfm
;
1508 crypto_init_wait(&wait
);
1510 tfm
= crypto_alloc_skcipher(algo
, 0, async
? 0 : CRYPTO_ALG_ASYNC
);
1513 pr_err("failed to load transform for %s: %ld\n", algo
,
1518 pr_info("\ntesting speed of async %s (%s) %s\n", algo
,
1519 get_driver_name(crypto_skcipher
, tfm
), e
);
1521 req
= skcipher_request_alloc(tfm
, GFP_KERNEL
);
1523 pr_err("tcrypt: skcipher: Failed to allocate request for %s\n",
1528 skcipher_request_set_callback(req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
1529 crypto_req_done
, &wait
);
1533 b_size
= block_sizes
;
1536 struct scatterlist sg
[TVMEMSIZE
];
1538 if ((*keysize
+ *b_size
) > TVMEMSIZE
* PAGE_SIZE
) {
1539 pr_err("template (%u) too big for "
1540 "tvmem (%lu)\n", *keysize
+ *b_size
,
1541 TVMEMSIZE
* PAGE_SIZE
);
1545 pr_info("test %u (%d bit key, %d byte blocks): ", i
,
1546 *keysize
* 8, *b_size
);
1548 memset(tvmem
[0], 0xff, PAGE_SIZE
);
1550 /* set key, plain text and IV */
1552 for (j
= 0; j
< tcount
; j
++) {
1553 if (template[j
].klen
== *keysize
) {
1554 key
= template[j
].key
;
1559 crypto_skcipher_clear_flags(tfm
, ~0);
1561 ret
= crypto_skcipher_setkey(tfm
, key
, *keysize
);
1563 pr_err("setkey() failed flags=%x\n",
1564 crypto_skcipher_get_flags(tfm
));
1568 k
= *keysize
+ *b_size
;
1569 sg_init_table(sg
, DIV_ROUND_UP(k
, PAGE_SIZE
));
1571 if (k
> PAGE_SIZE
) {
1572 sg_set_buf(sg
, tvmem
[0] + *keysize
,
1573 PAGE_SIZE
- *keysize
);
1576 while (k
> PAGE_SIZE
) {
1577 sg_set_buf(sg
+ j
, tvmem
[j
], PAGE_SIZE
);
1578 memset(tvmem
[j
], 0xff, PAGE_SIZE
);
1582 sg_set_buf(sg
+ j
, tvmem
[j
], k
);
1583 memset(tvmem
[j
], 0xff, k
);
1585 sg_set_buf(sg
, tvmem
[0] + *keysize
, *b_size
);
1588 iv_len
= crypto_skcipher_ivsize(tfm
);
1590 memset(&iv
, 0xff, iv_len
);
1592 skcipher_request_set_crypt(req
, sg
, sg
, *b_size
, iv
);
1595 ret
= test_acipher_jiffies(req
, enc
,
1599 ret
= test_acipher_cycles(req
, enc
,
1604 pr_err("%s() failed flags=%x\n", e
,
1605 crypto_skcipher_get_flags(tfm
));
1615 skcipher_request_free(req
);
1617 crypto_free_skcipher(tfm
);
1620 static void test_acipher_speed(const char *algo
, int enc
, unsigned int secs
,
1621 struct cipher_speed_template
*template,
1622 unsigned int tcount
, u8
*keysize
)
1624 return test_skcipher_speed(algo
, enc
, secs
, template, tcount
, keysize
,
1628 static void test_cipher_speed(const char *algo
, int enc
, unsigned int secs
,
1629 struct cipher_speed_template
*template,
1630 unsigned int tcount
, u8
*keysize
)
1632 return test_skcipher_speed(algo
, enc
, secs
, template, tcount
, keysize
,
1636 static void test_available(void)
1638 char **name
= check
;
1641 printk("alg %s ", *name
);
1642 printk(crypto_has_alg(*name
, 0, 0) ?
1643 "found\n" : "not found\n");
1648 static inline int tcrypt_test(const char *alg
)
1652 pr_debug("testing %s\n", alg
);
1654 ret
= alg_test(alg
, alg
, 0, 0);
1655 /* non-fips algs return -EINVAL in fips mode */
1656 if (fips_enabled
&& ret
== -EINVAL
)
1661 static int do_test(const char *alg
, u32 type
, u32 mask
, int m
, u32 num_mb
)
1669 if (!crypto_has_alg(alg
, type
,
1670 mask
?: CRYPTO_ALG_TYPE_MASK
))
1675 for (i
= 1; i
< 200; i
++)
1676 ret
+= do_test(NULL
, 0, 0, i
, num_mb
);
1680 ret
+= tcrypt_test("md5");
1684 ret
+= tcrypt_test("sha1");
1688 ret
+= tcrypt_test("ecb(des)");
1689 ret
+= tcrypt_test("cbc(des)");
1690 ret
+= tcrypt_test("ctr(des)");
1694 ret
+= tcrypt_test("ecb(des3_ede)");
1695 ret
+= tcrypt_test("cbc(des3_ede)");
1696 ret
+= tcrypt_test("ctr(des3_ede)");
1700 ret
+= tcrypt_test("md4");
1704 ret
+= tcrypt_test("sha256");
1708 ret
+= tcrypt_test("ecb(blowfish)");
1709 ret
+= tcrypt_test("cbc(blowfish)");
1710 ret
+= tcrypt_test("ctr(blowfish)");
1714 ret
+= tcrypt_test("ecb(twofish)");
1715 ret
+= tcrypt_test("cbc(twofish)");
1716 ret
+= tcrypt_test("ctr(twofish)");
1717 ret
+= tcrypt_test("lrw(twofish)");
1718 ret
+= tcrypt_test("xts(twofish)");
1722 ret
+= tcrypt_test("ecb(serpent)");
1723 ret
+= tcrypt_test("cbc(serpent)");
1724 ret
+= tcrypt_test("ctr(serpent)");
1725 ret
+= tcrypt_test("lrw(serpent)");
1726 ret
+= tcrypt_test("xts(serpent)");
1730 ret
+= tcrypt_test("ecb(aes)");
1731 ret
+= tcrypt_test("cbc(aes)");
1732 ret
+= tcrypt_test("lrw(aes)");
1733 ret
+= tcrypt_test("xts(aes)");
1734 ret
+= tcrypt_test("ctr(aes)");
1735 ret
+= tcrypt_test("rfc3686(ctr(aes))");
1739 ret
+= tcrypt_test("sha384");
1743 ret
+= tcrypt_test("sha512");
1747 ret
+= tcrypt_test("deflate");
1751 ret
+= tcrypt_test("ecb(cast5)");
1752 ret
+= tcrypt_test("cbc(cast5)");
1753 ret
+= tcrypt_test("ctr(cast5)");
1757 ret
+= tcrypt_test("ecb(cast6)");
1758 ret
+= tcrypt_test("cbc(cast6)");
1759 ret
+= tcrypt_test("ctr(cast6)");
1760 ret
+= tcrypt_test("lrw(cast6)");
1761 ret
+= tcrypt_test("xts(cast6)");
1765 ret
+= tcrypt_test("ecb(arc4)");
1769 ret
+= tcrypt_test("michael_mic");
1773 ret
+= tcrypt_test("crc32c");
1777 ret
+= tcrypt_test("ecb(tea)");
1781 ret
+= tcrypt_test("ecb(xtea)");
1785 ret
+= tcrypt_test("ecb(khazad)");
1789 ret
+= tcrypt_test("wp512");
1793 ret
+= tcrypt_test("wp384");
1797 ret
+= tcrypt_test("wp256");
1801 ret
+= tcrypt_test("ecb(tnepres)");
1805 ret
+= tcrypt_test("ecb(anubis)");
1806 ret
+= tcrypt_test("cbc(anubis)");
1810 ret
+= tcrypt_test("tgr192");
1814 ret
+= tcrypt_test("tgr160");
1818 ret
+= tcrypt_test("tgr128");
1822 ret
+= tcrypt_test("ecb(xeta)");
1826 ret
+= tcrypt_test("pcbc(fcrypt)");
1830 ret
+= tcrypt_test("ecb(camellia)");
1831 ret
+= tcrypt_test("cbc(camellia)");
1832 ret
+= tcrypt_test("ctr(camellia)");
1833 ret
+= tcrypt_test("lrw(camellia)");
1834 ret
+= tcrypt_test("xts(camellia)");
1838 ret
+= tcrypt_test("sha224");
1842 ret
+= tcrypt_test("salsa20");
1846 ret
+= tcrypt_test("gcm(aes)");
1850 ret
+= tcrypt_test("lzo");
1854 ret
+= tcrypt_test("ccm(aes)");
1858 ret
+= tcrypt_test("cts(cbc(aes))");
1862 ret
+= tcrypt_test("rmd128");
1866 ret
+= tcrypt_test("rmd160");
1870 ret
+= tcrypt_test("rmd256");
1874 ret
+= tcrypt_test("rmd320");
1878 ret
+= tcrypt_test("ecb(seed)");
1882 ret
+= tcrypt_test("zlib");
1886 ret
+= tcrypt_test("rfc4309(ccm(aes))");
1890 ret
+= tcrypt_test("ghash");
1894 ret
+= tcrypt_test("crct10dif");
1898 ret
+= tcrypt_test("sha3-224");
1902 ret
+= tcrypt_test("sha3-256");
1906 ret
+= tcrypt_test("sha3-384");
1910 ret
+= tcrypt_test("sha3-512");
1914 ret
+= tcrypt_test("sm3");
1918 ret
+= tcrypt_test("hmac(md5)");
1922 ret
+= tcrypt_test("hmac(sha1)");
1926 ret
+= tcrypt_test("hmac(sha256)");
1930 ret
+= tcrypt_test("hmac(sha384)");
1934 ret
+= tcrypt_test("hmac(sha512)");
1938 ret
+= tcrypt_test("hmac(sha224)");
1942 ret
+= tcrypt_test("xcbc(aes)");
1946 ret
+= tcrypt_test("hmac(rmd128)");
1950 ret
+= tcrypt_test("hmac(rmd160)");
1954 ret
+= tcrypt_test("vmac64(aes)");
1958 ret
+= tcrypt_test("hmac(sha3-224)");
1962 ret
+= tcrypt_test("hmac(sha3-256)");
1966 ret
+= tcrypt_test("hmac(sha3-384)");
1970 ret
+= tcrypt_test("hmac(sha3-512)");
1974 ret
+= tcrypt_test("ansi_cprng");
1978 ret
+= tcrypt_test("rfc4106(gcm(aes))");
1982 ret
+= tcrypt_test("rfc4543(gcm(aes))");
1986 ret
+= tcrypt_test("cmac(aes)");
1990 ret
+= tcrypt_test("cmac(des3_ede)");
1994 ret
+= tcrypt_test("authenc(hmac(sha1),cbc(aes))");
1998 ret
+= tcrypt_test("authenc(hmac(md5),ecb(cipher_null))");
2002 ret
+= tcrypt_test("authenc(hmac(sha1),ecb(cipher_null))");
2005 ret
+= tcrypt_test("authenc(hmac(sha1),cbc(des))");
2008 ret
+= tcrypt_test("authenc(hmac(sha1),cbc(des3_ede))");
2011 ret
+= tcrypt_test("authenc(hmac(sha224),cbc(des))");
2014 ret
+= tcrypt_test("authenc(hmac(sha224),cbc(des3_ede))");
2017 ret
+= tcrypt_test("authenc(hmac(sha256),cbc(des))");
2020 ret
+= tcrypt_test("authenc(hmac(sha256),cbc(des3_ede))");
2023 ret
+= tcrypt_test("authenc(hmac(sha384),cbc(des))");
2026 ret
+= tcrypt_test("authenc(hmac(sha384),cbc(des3_ede))");
2029 ret
+= tcrypt_test("authenc(hmac(sha512),cbc(des))");
2032 ret
+= tcrypt_test("authenc(hmac(sha512),cbc(des3_ede))");
2035 ret
+= tcrypt_test("ecb(sm4)");
2038 test_cipher_speed("ecb(aes)", ENCRYPT
, sec
, NULL
, 0,
2039 speed_template_16_24_32
);
2040 test_cipher_speed("ecb(aes)", DECRYPT
, sec
, NULL
, 0,
2041 speed_template_16_24_32
);
2042 test_cipher_speed("cbc(aes)", ENCRYPT
, sec
, NULL
, 0,
2043 speed_template_16_24_32
);
2044 test_cipher_speed("cbc(aes)", DECRYPT
, sec
, NULL
, 0,
2045 speed_template_16_24_32
);
2046 test_cipher_speed("lrw(aes)", ENCRYPT
, sec
, NULL
, 0,
2047 speed_template_32_40_48
);
2048 test_cipher_speed("lrw(aes)", DECRYPT
, sec
, NULL
, 0,
2049 speed_template_32_40_48
);
2050 test_cipher_speed("xts(aes)", ENCRYPT
, sec
, NULL
, 0,
2051 speed_template_32_64
);
2052 test_cipher_speed("xts(aes)", DECRYPT
, sec
, NULL
, 0,
2053 speed_template_32_64
);
2054 test_cipher_speed("cts(cbc(aes))", ENCRYPT
, sec
, NULL
, 0,
2055 speed_template_16_24_32
);
2056 test_cipher_speed("cts(cbc(aes))", DECRYPT
, sec
, NULL
, 0,
2057 speed_template_16_24_32
);
2058 test_cipher_speed("ctr(aes)", ENCRYPT
, sec
, NULL
, 0,
2059 speed_template_16_24_32
);
2060 test_cipher_speed("ctr(aes)", DECRYPT
, sec
, NULL
, 0,
2061 speed_template_16_24_32
);
2065 test_cipher_speed("ecb(des3_ede)", ENCRYPT
, sec
,
2066 des3_speed_template
, DES3_SPEED_VECTORS
,
2068 test_cipher_speed("ecb(des3_ede)", DECRYPT
, sec
,
2069 des3_speed_template
, DES3_SPEED_VECTORS
,
2071 test_cipher_speed("cbc(des3_ede)", ENCRYPT
, sec
,
2072 des3_speed_template
, DES3_SPEED_VECTORS
,
2074 test_cipher_speed("cbc(des3_ede)", DECRYPT
, sec
,
2075 des3_speed_template
, DES3_SPEED_VECTORS
,
2077 test_cipher_speed("ctr(des3_ede)", ENCRYPT
, sec
,
2078 des3_speed_template
, DES3_SPEED_VECTORS
,
2080 test_cipher_speed("ctr(des3_ede)", DECRYPT
, sec
,
2081 des3_speed_template
, DES3_SPEED_VECTORS
,
2086 test_cipher_speed("ecb(twofish)", ENCRYPT
, sec
, NULL
, 0,
2087 speed_template_16_24_32
);
2088 test_cipher_speed("ecb(twofish)", DECRYPT
, sec
, NULL
, 0,
2089 speed_template_16_24_32
);
2090 test_cipher_speed("cbc(twofish)", ENCRYPT
, sec
, NULL
, 0,
2091 speed_template_16_24_32
);
2092 test_cipher_speed("cbc(twofish)", DECRYPT
, sec
, NULL
, 0,
2093 speed_template_16_24_32
);
2094 test_cipher_speed("ctr(twofish)", ENCRYPT
, sec
, NULL
, 0,
2095 speed_template_16_24_32
);
2096 test_cipher_speed("ctr(twofish)", DECRYPT
, sec
, NULL
, 0,
2097 speed_template_16_24_32
);
2098 test_cipher_speed("lrw(twofish)", ENCRYPT
, sec
, NULL
, 0,
2099 speed_template_32_40_48
);
2100 test_cipher_speed("lrw(twofish)", DECRYPT
, sec
, NULL
, 0,
2101 speed_template_32_40_48
);
2102 test_cipher_speed("xts(twofish)", ENCRYPT
, sec
, NULL
, 0,
2103 speed_template_32_48_64
);
2104 test_cipher_speed("xts(twofish)", DECRYPT
, sec
, NULL
, 0,
2105 speed_template_32_48_64
);
2109 test_cipher_speed("ecb(blowfish)", ENCRYPT
, sec
, NULL
, 0,
2110 speed_template_8_32
);
2111 test_cipher_speed("ecb(blowfish)", DECRYPT
, sec
, NULL
, 0,
2112 speed_template_8_32
);
2113 test_cipher_speed("cbc(blowfish)", ENCRYPT
, sec
, NULL
, 0,
2114 speed_template_8_32
);
2115 test_cipher_speed("cbc(blowfish)", DECRYPT
, sec
, NULL
, 0,
2116 speed_template_8_32
);
2117 test_cipher_speed("ctr(blowfish)", ENCRYPT
, sec
, NULL
, 0,
2118 speed_template_8_32
);
2119 test_cipher_speed("ctr(blowfish)", DECRYPT
, sec
, NULL
, 0,
2120 speed_template_8_32
);
2124 test_cipher_speed("ecb(des)", ENCRYPT
, sec
, NULL
, 0,
2126 test_cipher_speed("ecb(des)", DECRYPT
, sec
, NULL
, 0,
2128 test_cipher_speed("cbc(des)", ENCRYPT
, sec
, NULL
, 0,
2130 test_cipher_speed("cbc(des)", DECRYPT
, sec
, NULL
, 0,
2135 test_cipher_speed("ecb(camellia)", ENCRYPT
, sec
, NULL
, 0,
2136 speed_template_16_24_32
);
2137 test_cipher_speed("ecb(camellia)", DECRYPT
, sec
, NULL
, 0,
2138 speed_template_16_24_32
);
2139 test_cipher_speed("cbc(camellia)", ENCRYPT
, sec
, NULL
, 0,
2140 speed_template_16_24_32
);
2141 test_cipher_speed("cbc(camellia)", DECRYPT
, sec
, NULL
, 0,
2142 speed_template_16_24_32
);
2143 test_cipher_speed("ctr(camellia)", ENCRYPT
, sec
, NULL
, 0,
2144 speed_template_16_24_32
);
2145 test_cipher_speed("ctr(camellia)", DECRYPT
, sec
, NULL
, 0,
2146 speed_template_16_24_32
);
2147 test_cipher_speed("lrw(camellia)", ENCRYPT
, sec
, NULL
, 0,
2148 speed_template_32_40_48
);
2149 test_cipher_speed("lrw(camellia)", DECRYPT
, sec
, NULL
, 0,
2150 speed_template_32_40_48
);
2151 test_cipher_speed("xts(camellia)", ENCRYPT
, sec
, NULL
, 0,
2152 speed_template_32_48_64
);
2153 test_cipher_speed("xts(camellia)", DECRYPT
, sec
, NULL
, 0,
2154 speed_template_32_48_64
);
2158 test_cipher_speed("salsa20", ENCRYPT
, sec
, NULL
, 0,
2159 speed_template_16_32
);
2163 test_cipher_speed("ecb(serpent)", ENCRYPT
, sec
, NULL
, 0,
2164 speed_template_16_32
);
2165 test_cipher_speed("ecb(serpent)", DECRYPT
, sec
, NULL
, 0,
2166 speed_template_16_32
);
2167 test_cipher_speed("cbc(serpent)", ENCRYPT
, sec
, NULL
, 0,
2168 speed_template_16_32
);
2169 test_cipher_speed("cbc(serpent)", DECRYPT
, sec
, NULL
, 0,
2170 speed_template_16_32
);
2171 test_cipher_speed("ctr(serpent)", ENCRYPT
, sec
, NULL
, 0,
2172 speed_template_16_32
);
2173 test_cipher_speed("ctr(serpent)", DECRYPT
, sec
, NULL
, 0,
2174 speed_template_16_32
);
2175 test_cipher_speed("lrw(serpent)", ENCRYPT
, sec
, NULL
, 0,
2176 speed_template_32_48
);
2177 test_cipher_speed("lrw(serpent)", DECRYPT
, sec
, NULL
, 0,
2178 speed_template_32_48
);
2179 test_cipher_speed("xts(serpent)", ENCRYPT
, sec
, NULL
, 0,
2180 speed_template_32_64
);
2181 test_cipher_speed("xts(serpent)", DECRYPT
, sec
, NULL
, 0,
2182 speed_template_32_64
);
2186 test_cipher_speed("ecb(arc4)", ENCRYPT
, sec
, NULL
, 0,
2191 test_cipher_speed("ecb(cast5)", ENCRYPT
, sec
, NULL
, 0,
2192 speed_template_8_16
);
2193 test_cipher_speed("ecb(cast5)", DECRYPT
, sec
, NULL
, 0,
2194 speed_template_8_16
);
2195 test_cipher_speed("cbc(cast5)", ENCRYPT
, sec
, NULL
, 0,
2196 speed_template_8_16
);
2197 test_cipher_speed("cbc(cast5)", DECRYPT
, sec
, NULL
, 0,
2198 speed_template_8_16
);
2199 test_cipher_speed("ctr(cast5)", ENCRYPT
, sec
, NULL
, 0,
2200 speed_template_8_16
);
2201 test_cipher_speed("ctr(cast5)", DECRYPT
, sec
, NULL
, 0,
2202 speed_template_8_16
);
2206 test_cipher_speed("ecb(cast6)", ENCRYPT
, sec
, NULL
, 0,
2207 speed_template_16_32
);
2208 test_cipher_speed("ecb(cast6)", DECRYPT
, sec
, NULL
, 0,
2209 speed_template_16_32
);
2210 test_cipher_speed("cbc(cast6)", ENCRYPT
, sec
, NULL
, 0,
2211 speed_template_16_32
);
2212 test_cipher_speed("cbc(cast6)", DECRYPT
, sec
, NULL
, 0,
2213 speed_template_16_32
);
2214 test_cipher_speed("ctr(cast6)", ENCRYPT
, sec
, NULL
, 0,
2215 speed_template_16_32
);
2216 test_cipher_speed("ctr(cast6)", DECRYPT
, sec
, NULL
, 0,
2217 speed_template_16_32
);
2218 test_cipher_speed("lrw(cast6)", ENCRYPT
, sec
, NULL
, 0,
2219 speed_template_32_48
);
2220 test_cipher_speed("lrw(cast6)", DECRYPT
, sec
, NULL
, 0,
2221 speed_template_32_48
);
2222 test_cipher_speed("xts(cast6)", ENCRYPT
, sec
, NULL
, 0,
2223 speed_template_32_64
);
2224 test_cipher_speed("xts(cast6)", DECRYPT
, sec
, NULL
, 0,
2225 speed_template_32_64
);
2229 test_aead_speed("rfc4106(gcm(aes))", ENCRYPT
, sec
,
2230 NULL
, 0, 16, 16, aead_speed_template_20
);
2231 test_aead_speed("gcm(aes)", ENCRYPT
, sec
,
2232 NULL
, 0, 16, 8, speed_template_16_24_32
);
2233 test_aead_speed("rfc4106(gcm(aes))", DECRYPT
, sec
,
2234 NULL
, 0, 16, 16, aead_speed_template_20
);
2235 test_aead_speed("gcm(aes)", DECRYPT
, sec
,
2236 NULL
, 0, 16, 8, speed_template_16_24_32
);
2240 test_aead_speed("rfc4309(ccm(aes))", ENCRYPT
, sec
,
2241 NULL
, 0, 16, 16, aead_speed_template_19
);
2242 test_aead_speed("rfc4309(ccm(aes))", DECRYPT
, sec
,
2243 NULL
, 0, 16, 16, aead_speed_template_19
);
2247 test_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT
, sec
,
2248 NULL
, 0, 16, 8, aead_speed_template_36
);
2249 test_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT
, sec
,
2250 NULL
, 0, 16, 8, aead_speed_template_36
);
2254 test_cipher_speed("chacha20", ENCRYPT
, sec
, NULL
, 0,
2259 test_mb_aead_speed("rfc4106(gcm(aes))", ENCRYPT
, sec
, NULL
,
2260 0, 16, 16, aead_speed_template_20
, num_mb
);
2261 test_mb_aead_speed("gcm(aes)", ENCRYPT
, sec
, NULL
, 0, 16, 8,
2262 speed_template_16_24_32
, num_mb
);
2263 test_mb_aead_speed("rfc4106(gcm(aes))", DECRYPT
, sec
, NULL
,
2264 0, 16, 16, aead_speed_template_20
, num_mb
);
2265 test_mb_aead_speed("gcm(aes)", DECRYPT
, sec
, NULL
, 0, 16, 8,
2266 speed_template_16_24_32
, num_mb
);
2270 test_mb_aead_speed("rfc4309(ccm(aes))", ENCRYPT
, sec
, NULL
, 0,
2271 16, 16, aead_speed_template_19
, num_mb
);
2272 test_mb_aead_speed("rfc4309(ccm(aes))", DECRYPT
, sec
, NULL
, 0,
2273 16, 16, aead_speed_template_19
, num_mb
);
2277 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT
,
2278 sec
, NULL
, 0, 16, 8, aead_speed_template_36
,
2280 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT
,
2281 sec
, NULL
, 0, 16, 8, aead_speed_template_36
,
2287 test_hash_speed(alg
, sec
, generic_hash_speed_template
);
2292 test_hash_speed("md4", sec
, generic_hash_speed_template
);
2293 if (mode
> 300 && mode
< 400) break;
2296 test_hash_speed("md5", sec
, generic_hash_speed_template
);
2297 if (mode
> 300 && mode
< 400) break;
2300 test_hash_speed("sha1", sec
, generic_hash_speed_template
);
2301 if (mode
> 300 && mode
< 400) break;
2304 test_hash_speed("sha256", sec
, generic_hash_speed_template
);
2305 if (mode
> 300 && mode
< 400) break;
2308 test_hash_speed("sha384", sec
, generic_hash_speed_template
);
2309 if (mode
> 300 && mode
< 400) break;
2312 test_hash_speed("sha512", sec
, generic_hash_speed_template
);
2313 if (mode
> 300 && mode
< 400) break;
2316 test_hash_speed("wp256", sec
, generic_hash_speed_template
);
2317 if (mode
> 300 && mode
< 400) break;
2320 test_hash_speed("wp384", sec
, generic_hash_speed_template
);
2321 if (mode
> 300 && mode
< 400) break;
2324 test_hash_speed("wp512", sec
, generic_hash_speed_template
);
2325 if (mode
> 300 && mode
< 400) break;
2328 test_hash_speed("tgr128", sec
, generic_hash_speed_template
);
2329 if (mode
> 300 && mode
< 400) break;
2332 test_hash_speed("tgr160", sec
, generic_hash_speed_template
);
2333 if (mode
> 300 && mode
< 400) break;
2336 test_hash_speed("tgr192", sec
, generic_hash_speed_template
);
2337 if (mode
> 300 && mode
< 400) break;
2340 test_hash_speed("sha224", sec
, generic_hash_speed_template
);
2341 if (mode
> 300 && mode
< 400) break;
2344 test_hash_speed("rmd128", sec
, generic_hash_speed_template
);
2345 if (mode
> 300 && mode
< 400) break;
2348 test_hash_speed("rmd160", sec
, generic_hash_speed_template
);
2349 if (mode
> 300 && mode
< 400) break;
2352 test_hash_speed("rmd256", sec
, generic_hash_speed_template
);
2353 if (mode
> 300 && mode
< 400) break;
2356 test_hash_speed("rmd320", sec
, generic_hash_speed_template
);
2357 if (mode
> 300 && mode
< 400) break;
2360 test_hash_speed("ghash-generic", sec
, hash_speed_template_16
);
2361 if (mode
> 300 && mode
< 400) break;
2364 test_hash_speed("crc32c", sec
, generic_hash_speed_template
);
2365 if (mode
> 300 && mode
< 400) break;
2368 test_hash_speed("crct10dif", sec
, generic_hash_speed_template
);
2369 if (mode
> 300 && mode
< 400) break;
2372 test_hash_speed("poly1305", sec
, poly1305_speed_template
);
2373 if (mode
> 300 && mode
< 400) break;
2376 test_hash_speed("sha3-224", sec
, generic_hash_speed_template
);
2377 if (mode
> 300 && mode
< 400) break;
2380 test_hash_speed("sha3-256", sec
, generic_hash_speed_template
);
2381 if (mode
> 300 && mode
< 400) break;
2384 test_hash_speed("sha3-384", sec
, generic_hash_speed_template
);
2385 if (mode
> 300 && mode
< 400) break;
2388 test_hash_speed("sha3-512", sec
, generic_hash_speed_template
);
2389 if (mode
> 300 && mode
< 400) break;
2392 test_hash_speed("sm3", sec
, generic_hash_speed_template
);
2393 if (mode
> 300 && mode
< 400) break;
2400 test_ahash_speed(alg
, sec
, generic_hash_speed_template
);
2405 test_ahash_speed("md4", sec
, generic_hash_speed_template
);
2406 if (mode
> 400 && mode
< 500) break;
2409 test_ahash_speed("md5", sec
, generic_hash_speed_template
);
2410 if (mode
> 400 && mode
< 500) break;
2413 test_ahash_speed("sha1", sec
, generic_hash_speed_template
);
2414 if (mode
> 400 && mode
< 500) break;
2417 test_ahash_speed("sha256", sec
, generic_hash_speed_template
);
2418 if (mode
> 400 && mode
< 500) break;
2421 test_ahash_speed("sha384", sec
, generic_hash_speed_template
);
2422 if (mode
> 400 && mode
< 500) break;
2425 test_ahash_speed("sha512", sec
, generic_hash_speed_template
);
2426 if (mode
> 400 && mode
< 500) break;
2429 test_ahash_speed("wp256", sec
, generic_hash_speed_template
);
2430 if (mode
> 400 && mode
< 500) break;
2433 test_ahash_speed("wp384", sec
, generic_hash_speed_template
);
2434 if (mode
> 400 && mode
< 500) break;
2437 test_ahash_speed("wp512", sec
, generic_hash_speed_template
);
2438 if (mode
> 400 && mode
< 500) break;
2441 test_ahash_speed("tgr128", sec
, generic_hash_speed_template
);
2442 if (mode
> 400 && mode
< 500) break;
2445 test_ahash_speed("tgr160", sec
, generic_hash_speed_template
);
2446 if (mode
> 400 && mode
< 500) break;
2449 test_ahash_speed("tgr192", sec
, generic_hash_speed_template
);
2450 if (mode
> 400 && mode
< 500) break;
2453 test_ahash_speed("sha224", sec
, generic_hash_speed_template
);
2454 if (mode
> 400 && mode
< 500) break;
2457 test_ahash_speed("rmd128", sec
, generic_hash_speed_template
);
2458 if (mode
> 400 && mode
< 500) break;
2461 test_ahash_speed("rmd160", sec
, generic_hash_speed_template
);
2462 if (mode
> 400 && mode
< 500) break;
2465 test_ahash_speed("rmd256", sec
, generic_hash_speed_template
);
2466 if (mode
> 400 && mode
< 500) break;
2469 test_ahash_speed("rmd320", sec
, generic_hash_speed_template
);
2470 if (mode
> 400 && mode
< 500) break;
2473 test_ahash_speed("sha3-224", sec
, generic_hash_speed_template
);
2474 if (mode
> 400 && mode
< 500) break;
2477 test_ahash_speed("sha3-256", sec
, generic_hash_speed_template
);
2478 if (mode
> 400 && mode
< 500) break;
2481 test_ahash_speed("sha3-384", sec
, generic_hash_speed_template
);
2482 if (mode
> 400 && mode
< 500) break;
2485 test_ahash_speed("sha3-512", sec
, generic_hash_speed_template
);
2486 if (mode
> 400 && mode
< 500) break;
2489 test_mb_ahash_speed("sha1", sec
, generic_hash_speed_template
,
2491 if (mode
> 400 && mode
< 500) break;
2494 test_mb_ahash_speed("sha256", sec
, generic_hash_speed_template
,
2496 if (mode
> 400 && mode
< 500) break;
2499 test_mb_ahash_speed("sha512", sec
, generic_hash_speed_template
,
2501 if (mode
> 400 && mode
< 500) break;
2504 test_mb_ahash_speed("sm3", sec
, generic_hash_speed_template
,
2506 if (mode
> 400 && mode
< 500) break;
2512 test_acipher_speed("ecb(aes)", ENCRYPT
, sec
, NULL
, 0,
2513 speed_template_16_24_32
);
2514 test_acipher_speed("ecb(aes)", DECRYPT
, sec
, NULL
, 0,
2515 speed_template_16_24_32
);
2516 test_acipher_speed("cbc(aes)", ENCRYPT
, sec
, NULL
, 0,
2517 speed_template_16_24_32
);
2518 test_acipher_speed("cbc(aes)", DECRYPT
, sec
, NULL
, 0,
2519 speed_template_16_24_32
);
2520 test_acipher_speed("lrw(aes)", ENCRYPT
, sec
, NULL
, 0,
2521 speed_template_32_40_48
);
2522 test_acipher_speed("lrw(aes)", DECRYPT
, sec
, NULL
, 0,
2523 speed_template_32_40_48
);
2524 test_acipher_speed("xts(aes)", ENCRYPT
, sec
, NULL
, 0,
2525 speed_template_32_64
);
2526 test_acipher_speed("xts(aes)", DECRYPT
, sec
, NULL
, 0,
2527 speed_template_32_64
);
2528 test_acipher_speed("cts(cbc(aes))", ENCRYPT
, sec
, NULL
, 0,
2529 speed_template_16_24_32
);
2530 test_acipher_speed("cts(cbc(aes))", DECRYPT
, sec
, NULL
, 0,
2531 speed_template_16_24_32
);
2532 test_acipher_speed("ctr(aes)", ENCRYPT
, sec
, NULL
, 0,
2533 speed_template_16_24_32
);
2534 test_acipher_speed("ctr(aes)", DECRYPT
, sec
, NULL
, 0,
2535 speed_template_16_24_32
);
2536 test_acipher_speed("cfb(aes)", ENCRYPT
, sec
, NULL
, 0,
2537 speed_template_16_24_32
);
2538 test_acipher_speed("cfb(aes)", DECRYPT
, sec
, NULL
, 0,
2539 speed_template_16_24_32
);
2540 test_acipher_speed("ofb(aes)", ENCRYPT
, sec
, NULL
, 0,
2541 speed_template_16_24_32
);
2542 test_acipher_speed("ofb(aes)", DECRYPT
, sec
, NULL
, 0,
2543 speed_template_16_24_32
);
2544 test_acipher_speed("rfc3686(ctr(aes))", ENCRYPT
, sec
, NULL
, 0,
2545 speed_template_20_28_36
);
2546 test_acipher_speed("rfc3686(ctr(aes))", DECRYPT
, sec
, NULL
, 0,
2547 speed_template_20_28_36
);
2551 test_acipher_speed("ecb(des3_ede)", ENCRYPT
, sec
,
2552 des3_speed_template
, DES3_SPEED_VECTORS
,
2554 test_acipher_speed("ecb(des3_ede)", DECRYPT
, sec
,
2555 des3_speed_template
, DES3_SPEED_VECTORS
,
2557 test_acipher_speed("cbc(des3_ede)", ENCRYPT
, sec
,
2558 des3_speed_template
, DES3_SPEED_VECTORS
,
2560 test_acipher_speed("cbc(des3_ede)", DECRYPT
, sec
,
2561 des3_speed_template
, DES3_SPEED_VECTORS
,
2563 test_acipher_speed("cfb(des3_ede)", ENCRYPT
, sec
,
2564 des3_speed_template
, DES3_SPEED_VECTORS
,
2566 test_acipher_speed("cfb(des3_ede)", DECRYPT
, sec
,
2567 des3_speed_template
, DES3_SPEED_VECTORS
,
2569 test_acipher_speed("ofb(des3_ede)", ENCRYPT
, sec
,
2570 des3_speed_template
, DES3_SPEED_VECTORS
,
2572 test_acipher_speed("ofb(des3_ede)", DECRYPT
, sec
,
2573 des3_speed_template
, DES3_SPEED_VECTORS
,
2578 test_acipher_speed("ecb(des)", ENCRYPT
, sec
, NULL
, 0,
2580 test_acipher_speed("ecb(des)", DECRYPT
, sec
, NULL
, 0,
2582 test_acipher_speed("cbc(des)", ENCRYPT
, sec
, NULL
, 0,
2584 test_acipher_speed("cbc(des)", DECRYPT
, sec
, NULL
, 0,
2586 test_acipher_speed("cfb(des)", ENCRYPT
, sec
, NULL
, 0,
2588 test_acipher_speed("cfb(des)", DECRYPT
, sec
, NULL
, 0,
2590 test_acipher_speed("ofb(des)", ENCRYPT
, sec
, NULL
, 0,
2592 test_acipher_speed("ofb(des)", DECRYPT
, sec
, NULL
, 0,
2597 test_acipher_speed("ecb(serpent)", ENCRYPT
, sec
, NULL
, 0,
2598 speed_template_16_32
);
2599 test_acipher_speed("ecb(serpent)", DECRYPT
, sec
, NULL
, 0,
2600 speed_template_16_32
);
2601 test_acipher_speed("cbc(serpent)", ENCRYPT
, sec
, NULL
, 0,
2602 speed_template_16_32
);
2603 test_acipher_speed("cbc(serpent)", DECRYPT
, sec
, NULL
, 0,
2604 speed_template_16_32
);
2605 test_acipher_speed("ctr(serpent)", ENCRYPT
, sec
, NULL
, 0,
2606 speed_template_16_32
);
2607 test_acipher_speed("ctr(serpent)", DECRYPT
, sec
, NULL
, 0,
2608 speed_template_16_32
);
2609 test_acipher_speed("lrw(serpent)", ENCRYPT
, sec
, NULL
, 0,
2610 speed_template_32_48
);
2611 test_acipher_speed("lrw(serpent)", DECRYPT
, sec
, NULL
, 0,
2612 speed_template_32_48
);
2613 test_acipher_speed("xts(serpent)", ENCRYPT
, sec
, NULL
, 0,
2614 speed_template_32_64
);
2615 test_acipher_speed("xts(serpent)", DECRYPT
, sec
, NULL
, 0,
2616 speed_template_32_64
);
2620 test_acipher_speed("ecb(twofish)", ENCRYPT
, sec
, NULL
, 0,
2621 speed_template_16_24_32
);
2622 test_acipher_speed("ecb(twofish)", DECRYPT
, sec
, NULL
, 0,
2623 speed_template_16_24_32
);
2624 test_acipher_speed("cbc(twofish)", ENCRYPT
, sec
, NULL
, 0,
2625 speed_template_16_24_32
);
2626 test_acipher_speed("cbc(twofish)", DECRYPT
, sec
, NULL
, 0,
2627 speed_template_16_24_32
);
2628 test_acipher_speed("ctr(twofish)", ENCRYPT
, sec
, NULL
, 0,
2629 speed_template_16_24_32
);
2630 test_acipher_speed("ctr(twofish)", DECRYPT
, sec
, NULL
, 0,
2631 speed_template_16_24_32
);
2632 test_acipher_speed("lrw(twofish)", ENCRYPT
, sec
, NULL
, 0,
2633 speed_template_32_40_48
);
2634 test_acipher_speed("lrw(twofish)", DECRYPT
, sec
, NULL
, 0,
2635 speed_template_32_40_48
);
2636 test_acipher_speed("xts(twofish)", ENCRYPT
, sec
, NULL
, 0,
2637 speed_template_32_48_64
);
2638 test_acipher_speed("xts(twofish)", DECRYPT
, sec
, NULL
, 0,
2639 speed_template_32_48_64
);
2643 test_acipher_speed("ecb(arc4)", ENCRYPT
, sec
, NULL
, 0,
2648 test_acipher_speed("ecb(cast5)", ENCRYPT
, sec
, NULL
, 0,
2649 speed_template_8_16
);
2650 test_acipher_speed("ecb(cast5)", DECRYPT
, sec
, NULL
, 0,
2651 speed_template_8_16
);
2652 test_acipher_speed("cbc(cast5)", ENCRYPT
, sec
, NULL
, 0,
2653 speed_template_8_16
);
2654 test_acipher_speed("cbc(cast5)", DECRYPT
, sec
, NULL
, 0,
2655 speed_template_8_16
);
2656 test_acipher_speed("ctr(cast5)", ENCRYPT
, sec
, NULL
, 0,
2657 speed_template_8_16
);
2658 test_acipher_speed("ctr(cast5)", DECRYPT
, sec
, NULL
, 0,
2659 speed_template_8_16
);
2663 test_acipher_speed("ecb(cast6)", ENCRYPT
, sec
, NULL
, 0,
2664 speed_template_16_32
);
2665 test_acipher_speed("ecb(cast6)", DECRYPT
, sec
, NULL
, 0,
2666 speed_template_16_32
);
2667 test_acipher_speed("cbc(cast6)", ENCRYPT
, sec
, NULL
, 0,
2668 speed_template_16_32
);
2669 test_acipher_speed("cbc(cast6)", DECRYPT
, sec
, NULL
, 0,
2670 speed_template_16_32
);
2671 test_acipher_speed("ctr(cast6)", ENCRYPT
, sec
, NULL
, 0,
2672 speed_template_16_32
);
2673 test_acipher_speed("ctr(cast6)", DECRYPT
, sec
, NULL
, 0,
2674 speed_template_16_32
);
2675 test_acipher_speed("lrw(cast6)", ENCRYPT
, sec
, NULL
, 0,
2676 speed_template_32_48
);
2677 test_acipher_speed("lrw(cast6)", DECRYPT
, sec
, NULL
, 0,
2678 speed_template_32_48
);
2679 test_acipher_speed("xts(cast6)", ENCRYPT
, sec
, NULL
, 0,
2680 speed_template_32_64
);
2681 test_acipher_speed("xts(cast6)", DECRYPT
, sec
, NULL
, 0,
2682 speed_template_32_64
);
2686 test_acipher_speed("ecb(camellia)", ENCRYPT
, sec
, NULL
, 0,
2687 speed_template_16_32
);
2688 test_acipher_speed("ecb(camellia)", DECRYPT
, sec
, NULL
, 0,
2689 speed_template_16_32
);
2690 test_acipher_speed("cbc(camellia)", ENCRYPT
, sec
, NULL
, 0,
2691 speed_template_16_32
);
2692 test_acipher_speed("cbc(camellia)", DECRYPT
, sec
, NULL
, 0,
2693 speed_template_16_32
);
2694 test_acipher_speed("ctr(camellia)", ENCRYPT
, sec
, NULL
, 0,
2695 speed_template_16_32
);
2696 test_acipher_speed("ctr(camellia)", DECRYPT
, sec
, NULL
, 0,
2697 speed_template_16_32
);
2698 test_acipher_speed("lrw(camellia)", ENCRYPT
, sec
, NULL
, 0,
2699 speed_template_32_48
);
2700 test_acipher_speed("lrw(camellia)", DECRYPT
, sec
, NULL
, 0,
2701 speed_template_32_48
);
2702 test_acipher_speed("xts(camellia)", ENCRYPT
, sec
, NULL
, 0,
2703 speed_template_32_64
);
2704 test_acipher_speed("xts(camellia)", DECRYPT
, sec
, NULL
, 0,
2705 speed_template_32_64
);
2709 test_acipher_speed("ecb(blowfish)", ENCRYPT
, sec
, NULL
, 0,
2710 speed_template_8_32
);
2711 test_acipher_speed("ecb(blowfish)", DECRYPT
, sec
, NULL
, 0,
2712 speed_template_8_32
);
2713 test_acipher_speed("cbc(blowfish)", ENCRYPT
, sec
, NULL
, 0,
2714 speed_template_8_32
);
2715 test_acipher_speed("cbc(blowfish)", DECRYPT
, sec
, NULL
, 0,
2716 speed_template_8_32
);
2717 test_acipher_speed("ctr(blowfish)", ENCRYPT
, sec
, NULL
, 0,
2718 speed_template_8_32
);
2719 test_acipher_speed("ctr(blowfish)", DECRYPT
, sec
, NULL
, 0,
2720 speed_template_8_32
);
2724 test_mb_skcipher_speed("ecb(aes)", ENCRYPT
, sec
, NULL
, 0,
2725 speed_template_16_24_32
, num_mb
);
2726 test_mb_skcipher_speed("ecb(aes)", DECRYPT
, sec
, NULL
, 0,
2727 speed_template_16_24_32
, num_mb
);
2728 test_mb_skcipher_speed("cbc(aes)", ENCRYPT
, sec
, NULL
, 0,
2729 speed_template_16_24_32
, num_mb
);
2730 test_mb_skcipher_speed("cbc(aes)", DECRYPT
, sec
, NULL
, 0,
2731 speed_template_16_24_32
, num_mb
);
2732 test_mb_skcipher_speed("lrw(aes)", ENCRYPT
, sec
, NULL
, 0,
2733 speed_template_32_40_48
, num_mb
);
2734 test_mb_skcipher_speed("lrw(aes)", DECRYPT
, sec
, NULL
, 0,
2735 speed_template_32_40_48
, num_mb
);
2736 test_mb_skcipher_speed("xts(aes)", ENCRYPT
, sec
, NULL
, 0,
2737 speed_template_32_64
, num_mb
);
2738 test_mb_skcipher_speed("xts(aes)", DECRYPT
, sec
, NULL
, 0,
2739 speed_template_32_64
, num_mb
);
2740 test_mb_skcipher_speed("cts(cbc(aes))", ENCRYPT
, sec
, NULL
, 0,
2741 speed_template_16_24_32
, num_mb
);
2742 test_mb_skcipher_speed("cts(cbc(aes))", DECRYPT
, sec
, NULL
, 0,
2743 speed_template_16_24_32
, num_mb
);
2744 test_mb_skcipher_speed("ctr(aes)", ENCRYPT
, sec
, NULL
, 0,
2745 speed_template_16_24_32
, num_mb
);
2746 test_mb_skcipher_speed("ctr(aes)", DECRYPT
, sec
, NULL
, 0,
2747 speed_template_16_24_32
, num_mb
);
2748 test_mb_skcipher_speed("cfb(aes)", ENCRYPT
, sec
, NULL
, 0,
2749 speed_template_16_24_32
, num_mb
);
2750 test_mb_skcipher_speed("cfb(aes)", DECRYPT
, sec
, NULL
, 0,
2751 speed_template_16_24_32
, num_mb
);
2752 test_mb_skcipher_speed("ofb(aes)", ENCRYPT
, sec
, NULL
, 0,
2753 speed_template_16_24_32
, num_mb
);
2754 test_mb_skcipher_speed("ofb(aes)", DECRYPT
, sec
, NULL
, 0,
2755 speed_template_16_24_32
, num_mb
);
2756 test_mb_skcipher_speed("rfc3686(ctr(aes))", ENCRYPT
, sec
, NULL
,
2757 0, speed_template_20_28_36
, num_mb
);
2758 test_mb_skcipher_speed("rfc3686(ctr(aes))", DECRYPT
, sec
, NULL
,
2759 0, speed_template_20_28_36
, num_mb
);
2763 test_mb_skcipher_speed("ecb(des3_ede)", ENCRYPT
, sec
,
2764 des3_speed_template
, DES3_SPEED_VECTORS
,
2765 speed_template_24
, num_mb
);
2766 test_mb_skcipher_speed("ecb(des3_ede)", DECRYPT
, sec
,
2767 des3_speed_template
, DES3_SPEED_VECTORS
,
2768 speed_template_24
, num_mb
);
2769 test_mb_skcipher_speed("cbc(des3_ede)", ENCRYPT
, sec
,
2770 des3_speed_template
, DES3_SPEED_VECTORS
,
2771 speed_template_24
, num_mb
);
2772 test_mb_skcipher_speed("cbc(des3_ede)", DECRYPT
, sec
,
2773 des3_speed_template
, DES3_SPEED_VECTORS
,
2774 speed_template_24
, num_mb
);
2775 test_mb_skcipher_speed("cfb(des3_ede)", ENCRYPT
, sec
,
2776 des3_speed_template
, DES3_SPEED_VECTORS
,
2777 speed_template_24
, num_mb
);
2778 test_mb_skcipher_speed("cfb(des3_ede)", DECRYPT
, sec
,
2779 des3_speed_template
, DES3_SPEED_VECTORS
,
2780 speed_template_24
, num_mb
);
2781 test_mb_skcipher_speed("ofb(des3_ede)", ENCRYPT
, sec
,
2782 des3_speed_template
, DES3_SPEED_VECTORS
,
2783 speed_template_24
, num_mb
);
2784 test_mb_skcipher_speed("ofb(des3_ede)", DECRYPT
, sec
,
2785 des3_speed_template
, DES3_SPEED_VECTORS
,
2786 speed_template_24
, num_mb
);
2790 test_mb_skcipher_speed("ecb(des)", ENCRYPT
, sec
, NULL
, 0,
2791 speed_template_8
, num_mb
);
2792 test_mb_skcipher_speed("ecb(des)", DECRYPT
, sec
, NULL
, 0,
2793 speed_template_8
, num_mb
);
2794 test_mb_skcipher_speed("cbc(des)", ENCRYPT
, sec
, NULL
, 0,
2795 speed_template_8
, num_mb
);
2796 test_mb_skcipher_speed("cbc(des)", DECRYPT
, sec
, NULL
, 0,
2797 speed_template_8
, num_mb
);
2798 test_mb_skcipher_speed("cfb(des)", ENCRYPT
, sec
, NULL
, 0,
2799 speed_template_8
, num_mb
);
2800 test_mb_skcipher_speed("cfb(des)", DECRYPT
, sec
, NULL
, 0,
2801 speed_template_8
, num_mb
);
2802 test_mb_skcipher_speed("ofb(des)", ENCRYPT
, sec
, NULL
, 0,
2803 speed_template_8
, num_mb
);
2804 test_mb_skcipher_speed("ofb(des)", DECRYPT
, sec
, NULL
, 0,
2805 speed_template_8
, num_mb
);
2809 test_mb_skcipher_speed("ecb(serpent)", ENCRYPT
, sec
, NULL
, 0,
2810 speed_template_16_32
, num_mb
);
2811 test_mb_skcipher_speed("ecb(serpent)", DECRYPT
, sec
, NULL
, 0,
2812 speed_template_16_32
, num_mb
);
2813 test_mb_skcipher_speed("cbc(serpent)", ENCRYPT
, sec
, NULL
, 0,
2814 speed_template_16_32
, num_mb
);
2815 test_mb_skcipher_speed("cbc(serpent)", DECRYPT
, sec
, NULL
, 0,
2816 speed_template_16_32
, num_mb
);
2817 test_mb_skcipher_speed("ctr(serpent)", ENCRYPT
, sec
, NULL
, 0,
2818 speed_template_16_32
, num_mb
);
2819 test_mb_skcipher_speed("ctr(serpent)", DECRYPT
, sec
, NULL
, 0,
2820 speed_template_16_32
, num_mb
);
2821 test_mb_skcipher_speed("lrw(serpent)", ENCRYPT
, sec
, NULL
, 0,
2822 speed_template_32_48
, num_mb
);
2823 test_mb_skcipher_speed("lrw(serpent)", DECRYPT
, sec
, NULL
, 0,
2824 speed_template_32_48
, num_mb
);
2825 test_mb_skcipher_speed("xts(serpent)", ENCRYPT
, sec
, NULL
, 0,
2826 speed_template_32_64
, num_mb
);
2827 test_mb_skcipher_speed("xts(serpent)", DECRYPT
, sec
, NULL
, 0,
2828 speed_template_32_64
, num_mb
);
2832 test_mb_skcipher_speed("ecb(twofish)", ENCRYPT
, sec
, NULL
, 0,
2833 speed_template_16_24_32
, num_mb
);
2834 test_mb_skcipher_speed("ecb(twofish)", DECRYPT
, sec
, NULL
, 0,
2835 speed_template_16_24_32
, num_mb
);
2836 test_mb_skcipher_speed("cbc(twofish)", ENCRYPT
, sec
, NULL
, 0,
2837 speed_template_16_24_32
, num_mb
);
2838 test_mb_skcipher_speed("cbc(twofish)", DECRYPT
, sec
, NULL
, 0,
2839 speed_template_16_24_32
, num_mb
);
2840 test_mb_skcipher_speed("ctr(twofish)", ENCRYPT
, sec
, NULL
, 0,
2841 speed_template_16_24_32
, num_mb
);
2842 test_mb_skcipher_speed("ctr(twofish)", DECRYPT
, sec
, NULL
, 0,
2843 speed_template_16_24_32
, num_mb
);
2844 test_mb_skcipher_speed("lrw(twofish)", ENCRYPT
, sec
, NULL
, 0,
2845 speed_template_32_40_48
, num_mb
);
2846 test_mb_skcipher_speed("lrw(twofish)", DECRYPT
, sec
, NULL
, 0,
2847 speed_template_32_40_48
, num_mb
);
2848 test_mb_skcipher_speed("xts(twofish)", ENCRYPT
, sec
, NULL
, 0,
2849 speed_template_32_48_64
, num_mb
);
2850 test_mb_skcipher_speed("xts(twofish)", DECRYPT
, sec
, NULL
, 0,
2851 speed_template_32_48_64
, num_mb
);
2855 test_mb_skcipher_speed("ecb(arc4)", ENCRYPT
, sec
, NULL
, 0,
2856 speed_template_8
, num_mb
);
2860 test_mb_skcipher_speed("ecb(cast5)", ENCRYPT
, sec
, NULL
, 0,
2861 speed_template_8_16
, num_mb
);
2862 test_mb_skcipher_speed("ecb(cast5)", DECRYPT
, sec
, NULL
, 0,
2863 speed_template_8_16
, num_mb
);
2864 test_mb_skcipher_speed("cbc(cast5)", ENCRYPT
, sec
, NULL
, 0,
2865 speed_template_8_16
, num_mb
);
2866 test_mb_skcipher_speed("cbc(cast5)", DECRYPT
, sec
, NULL
, 0,
2867 speed_template_8_16
, num_mb
);
2868 test_mb_skcipher_speed("ctr(cast5)", ENCRYPT
, sec
, NULL
, 0,
2869 speed_template_8_16
, num_mb
);
2870 test_mb_skcipher_speed("ctr(cast5)", DECRYPT
, sec
, NULL
, 0,
2871 speed_template_8_16
, num_mb
);
2875 test_mb_skcipher_speed("ecb(cast6)", ENCRYPT
, sec
, NULL
, 0,
2876 speed_template_16_32
, num_mb
);
2877 test_mb_skcipher_speed("ecb(cast6)", DECRYPT
, sec
, NULL
, 0,
2878 speed_template_16_32
, num_mb
);
2879 test_mb_skcipher_speed("cbc(cast6)", ENCRYPT
, sec
, NULL
, 0,
2880 speed_template_16_32
, num_mb
);
2881 test_mb_skcipher_speed("cbc(cast6)", DECRYPT
, sec
, NULL
, 0,
2882 speed_template_16_32
, num_mb
);
2883 test_mb_skcipher_speed("ctr(cast6)", ENCRYPT
, sec
, NULL
, 0,
2884 speed_template_16_32
, num_mb
);
2885 test_mb_skcipher_speed("ctr(cast6)", DECRYPT
, sec
, NULL
, 0,
2886 speed_template_16_32
, num_mb
);
2887 test_mb_skcipher_speed("lrw(cast6)", ENCRYPT
, sec
, NULL
, 0,
2888 speed_template_32_48
, num_mb
);
2889 test_mb_skcipher_speed("lrw(cast6)", DECRYPT
, sec
, NULL
, 0,
2890 speed_template_32_48
, num_mb
);
2891 test_mb_skcipher_speed("xts(cast6)", ENCRYPT
, sec
, NULL
, 0,
2892 speed_template_32_64
, num_mb
);
2893 test_mb_skcipher_speed("xts(cast6)", DECRYPT
, sec
, NULL
, 0,
2894 speed_template_32_64
, num_mb
);
2898 test_mb_skcipher_speed("ecb(camellia)", ENCRYPT
, sec
, NULL
, 0,
2899 speed_template_16_32
, num_mb
);
2900 test_mb_skcipher_speed("ecb(camellia)", DECRYPT
, sec
, NULL
, 0,
2901 speed_template_16_32
, num_mb
);
2902 test_mb_skcipher_speed("cbc(camellia)", ENCRYPT
, sec
, NULL
, 0,
2903 speed_template_16_32
, num_mb
);
2904 test_mb_skcipher_speed("cbc(camellia)", DECRYPT
, sec
, NULL
, 0,
2905 speed_template_16_32
, num_mb
);
2906 test_mb_skcipher_speed("ctr(camellia)", ENCRYPT
, sec
, NULL
, 0,
2907 speed_template_16_32
, num_mb
);
2908 test_mb_skcipher_speed("ctr(camellia)", DECRYPT
, sec
, NULL
, 0,
2909 speed_template_16_32
, num_mb
);
2910 test_mb_skcipher_speed("lrw(camellia)", ENCRYPT
, sec
, NULL
, 0,
2911 speed_template_32_48
, num_mb
);
2912 test_mb_skcipher_speed("lrw(camellia)", DECRYPT
, sec
, NULL
, 0,
2913 speed_template_32_48
, num_mb
);
2914 test_mb_skcipher_speed("xts(camellia)", ENCRYPT
, sec
, NULL
, 0,
2915 speed_template_32_64
, num_mb
);
2916 test_mb_skcipher_speed("xts(camellia)", DECRYPT
, sec
, NULL
, 0,
2917 speed_template_32_64
, num_mb
);
2921 test_mb_skcipher_speed("ecb(blowfish)", ENCRYPT
, sec
, NULL
, 0,
2922 speed_template_8_32
, num_mb
);
2923 test_mb_skcipher_speed("ecb(blowfish)", DECRYPT
, sec
, NULL
, 0,
2924 speed_template_8_32
, num_mb
);
2925 test_mb_skcipher_speed("cbc(blowfish)", ENCRYPT
, sec
, NULL
, 0,
2926 speed_template_8_32
, num_mb
);
2927 test_mb_skcipher_speed("cbc(blowfish)", DECRYPT
, sec
, NULL
, 0,
2928 speed_template_8_32
, num_mb
);
2929 test_mb_skcipher_speed("ctr(blowfish)", ENCRYPT
, sec
, NULL
, 0,
2930 speed_template_8_32
, num_mb
);
2931 test_mb_skcipher_speed("ctr(blowfish)", DECRYPT
, sec
, NULL
, 0,
2932 speed_template_8_32
, num_mb
);
2943 static int __init
tcrypt_mod_init(void)
2948 for (i
= 0; i
< TVMEMSIZE
; i
++) {
2949 tvmem
[i
] = (void *)__get_free_page(GFP_KERNEL
);
2954 err
= do_test(alg
, type
, mask
, mode
, num_mb
);
2957 printk(KERN_ERR
"tcrypt: one or more tests failed!\n");
2960 pr_debug("all tests passed\n");
2963 /* We intentionaly return -EAGAIN to prevent keeping the module,
2964 * unless we're running in fips mode. It does all its work from
2965 * init() and doesn't offer any runtime functionality, but in
2966 * the fips case, checking for a successful load is helpful.
2967 * => we don't need it in the memory, do we?
2974 for (i
= 0; i
< TVMEMSIZE
&& tvmem
[i
]; i
++)
2975 free_page((unsigned long)tvmem
[i
]);
2981 * If an init function is provided, an exit function must also be provided
2982 * to allow module unload.
2984 static void __exit
tcrypt_mod_fini(void) { }
2986 module_init(tcrypt_mod_init
);
2987 module_exit(tcrypt_mod_fini
);
2989 module_param(alg
, charp
, 0);
2990 module_param(type
, uint
, 0);
2991 module_param(mask
, uint
, 0);
2992 module_param(mode
, int, 0);
2993 module_param(sec
, uint
, 0);
2994 MODULE_PARM_DESC(sec
, "Length in seconds of speed tests "
2995 "(defaults to zero which uses CPU cycles instead)");
2996 module_param(num_mb
, uint
, 0000);
2997 MODULE_PARM_DESC(num_mb
, "Number of concurrent requests to be used in mb speed tests (defaults to 8)");
2999 MODULE_LICENSE("GPL");
3000 MODULE_DESCRIPTION("Quick & dirty crypto testing module");
3001 MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");