Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Quick & dirty crypto testing module. |
| 3 | * |
| 4 | * This will only exist until we have a better testing mechanism |
| 5 | * (e.g. a char device). |
| 6 | * |
| 7 | * Copyright (c) 2002 James Morris <jmorris@intercode.com.au> |
| 8 | * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org> |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 9 | * Copyright (c) 2007 Nokia Siemens Networks |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify it |
| 12 | * under the terms of the GNU General Public License as published by the Free |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 13 | * Software Foundation; either version 2 of the License, or (at your option) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * any later version. |
| 15 | * |
Mikko Herranen | 28db8e3 | 2007-11-26 22:24:11 +0800 | [diff] [blame] | 16 | * 2007-11-13 Added GCM tests |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 17 | * 2007-11-13 Added AEAD support |
Jonathan Lynch | cd12fb9 | 2007-11-10 20:08:25 +0800 | [diff] [blame] | 18 | * 2007-11-06 Added SHA-224 and SHA-224-HMAC tests |
Andrew Donofrio | a28091a | 2006-12-10 12:10:20 +1100 | [diff] [blame] | 19 | * 2006-12-07 Added SHA384 HMAC and SHA512 HMAC tests |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 20 | * 2004-08-09 Added cipher speed tests (Reyk Floeter <reyk@vantronix.net>) |
| 21 | * 2003-09-14 Rewritten by Kartikey Mahendra Bhatt |
| 22 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | */ |
| 24 | |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 25 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/init.h> |
| 27 | #include <linux/module.h> |
| 28 | #include <linux/mm.h> |
| 29 | #include <linux/slab.h> |
David Hardeman | 378f058 | 2005-09-17 17:55:31 +1000 | [diff] [blame] | 30 | #include <linux/scatterlist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/string.h> |
| 32 | #include <linux/crypto.h> |
| 33 | #include <linux/highmem.h> |
| 34 | #include <linux/moduleparam.h> |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 35 | #include <linux/jiffies.h> |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 36 | #include <linux/timex.h> |
| 37 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include "tcrypt.h" |
| 39 | |
| 40 | /* |
| 41 | * Need to kmalloc() memory for testing kmap(). |
| 42 | */ |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 43 | #define TVMEMSIZE 16384 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #define XBUFSIZE 32768 |
| 45 | |
| 46 | /* |
| 47 | * Indexes into the xbuf to simulate cross-page access. |
| 48 | */ |
| 49 | #define IDX1 37 |
| 50 | #define IDX2 32400 |
| 51 | #define IDX3 1 |
| 52 | #define IDX4 8193 |
| 53 | #define IDX5 22222 |
| 54 | #define IDX6 17101 |
| 55 | #define IDX7 27333 |
| 56 | #define IDX8 3000 |
| 57 | |
| 58 | /* |
| 59 | * Used by test_cipher() |
| 60 | */ |
| 61 | #define ENCRYPT 1 |
| 62 | #define DECRYPT 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 64 | struct tcrypt_result { |
| 65 | struct completion completion; |
| 66 | int err; |
| 67 | }; |
| 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | static unsigned int IDX[8] = { IDX1, IDX2, IDX3, IDX4, IDX5, IDX6, IDX7, IDX8 }; |
| 70 | |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 71 | /* |
| 72 | * Used by test_cipher_speed() |
| 73 | */ |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 74 | static unsigned int sec; |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | static int mode; |
| 77 | static char *xbuf; |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 78 | static char *axbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | static char *tvmem; |
| 80 | |
| 81 | static char *check[] = { |
Jonathan Lynch | cd12fb9 | 2007-11-10 20:08:25 +0800 | [diff] [blame] | 82 | "des", "md5", "des3_ede", "rot13", "sha1", "sha224", "sha256", |
| 83 | "blowfish", "twofish", "serpent", "sha384", "sha512", "md4", "aes", |
| 84 | "cast6", "arc4", "michael_mic", "deflate", "crc32c", "tea", "xtea", |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 85 | "arc4", "michael_mic", "deflate", "crc32c", "tea", "xtea", |
David Howells | 9083163 | 2006-12-16 12:13:14 +1100 | [diff] [blame] | 86 | "khazad", "wp512", "wp384", "wp256", "tnepres", "xeta", "fcrypt", |
Zoltan Sogor | 0b77abb | 2007-12-07 16:53:23 +0800 | [diff] [blame] | 87 | "camellia", "seed", "salsa20", "lzo", NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | }; |
| 89 | |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 90 | static void hexdump(unsigned char *buf, unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | { |
Denis Cheng | a10e119 | 2007-11-30 16:59:30 +1100 | [diff] [blame] | 92 | print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET, |
| 93 | 16, 1, |
| 94 | buf, len, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 97 | static void tcrypt_complete(struct crypto_async_request *req, int err) |
| 98 | { |
| 99 | struct tcrypt_result *res = req->data; |
| 100 | |
| 101 | if (err == -EINPROGRESS) |
| 102 | return; |
| 103 | |
| 104 | res->err = err; |
| 105 | complete(&res->completion); |
| 106 | } |
| 107 | |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 108 | static void test_hash(char *algo, struct hash_testvec *template, |
| 109 | unsigned int tcount) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 111 | unsigned int i, j, k, temp; |
| 112 | struct scatterlist sg[8]; |
| 113 | char result[64]; |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 114 | struct crypto_hash *tfm; |
| 115 | struct hash_desc desc; |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 116 | int ret; |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 117 | void *hash_buff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 119 | printk("\ntesting %s\n", algo); |
| 120 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 121 | tfm = crypto_alloc_hash(algo, 0, CRYPTO_ALG_ASYNC); |
| 122 | if (IS_ERR(tfm)) { |
| 123 | printk("failed to load transform for %s: %ld\n", algo, |
| 124 | PTR_ERR(tfm)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | return; |
| 126 | } |
| 127 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 128 | desc.tfm = tfm; |
| 129 | desc.flags = 0; |
| 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | for (i = 0; i < tcount; i++) { |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 132 | printk("test %u:\n", i + 1); |
| 133 | memset(result, 0, 64); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 135 | hash_buff = kzalloc(template[i].psize, GFP_KERNEL); |
| 136 | if (!hash_buff) |
| 137 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 139 | memcpy(hash_buff, template[i].plaintext, template[i].psize); |
| 140 | sg_init_one(&sg[0], hash_buff, template[i].psize); |
| 141 | |
| 142 | if (template[i].ksize) { |
| 143 | ret = crypto_hash_setkey(tfm, template[i].key, |
| 144 | template[i].ksize); |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 145 | if (ret) { |
| 146 | printk("setkey() failed ret=%d\n", ret); |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 147 | kfree(hash_buff); |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 148 | goto out; |
| 149 | } |
| 150 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 152 | ret = crypto_hash_digest(&desc, sg, template[i].psize, result); |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 153 | if (ret) { |
| 154 | printk("digest () failed ret=%d\n", ret); |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 155 | kfree(hash_buff); |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 156 | goto out; |
| 157 | } |
| 158 | |
| 159 | hexdump(result, crypto_hash_digestsize(tfm)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | printk("%s\n", |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 161 | memcmp(result, template[i].digest, |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 162 | crypto_hash_digestsize(tfm)) ? |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 163 | "fail" : "pass"); |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 164 | kfree(hash_buff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 167 | printk("testing %s across pages\n", algo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
| 169 | /* setup the dummy buffer first */ |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 170 | memset(xbuf, 0, XBUFSIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
| 172 | j = 0; |
| 173 | for (i = 0; i < tcount; i++) { |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 174 | if (template[i].np) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | j++; |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 176 | printk("test %u:\n", j); |
| 177 | memset(result, 0, 64); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
| 179 | temp = 0; |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 180 | sg_init_table(sg, template[i].np); |
| 181 | for (k = 0; k < template[i].np; k++) { |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 182 | memcpy(&xbuf[IDX[k]], |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 183 | template[i].plaintext + temp, |
| 184 | template[i].tap[k]); |
| 185 | temp += template[i].tap[k]; |
David Hardeman | 378f058 | 2005-09-17 17:55:31 +1000 | [diff] [blame] | 186 | sg_set_buf(&sg[k], &xbuf[IDX[k]], |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 187 | template[i].tap[k]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | } |
| 189 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 190 | if (template[i].ksize) { |
| 191 | ret = crypto_hash_setkey(tfm, template[i].key, |
| 192 | template[i].ksize); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 193 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 194 | if (ret) { |
| 195 | printk("setkey() failed ret=%d\n", ret); |
| 196 | goto out; |
| 197 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } |
| 199 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 200 | ret = crypto_hash_digest(&desc, sg, template[i].psize, |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 201 | result); |
| 202 | if (ret) { |
| 203 | printk("digest () failed ret=%d\n", ret); |
| 204 | goto out; |
| 205 | } |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 206 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 207 | hexdump(result, crypto_hash_digestsize(tfm)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | printk("%s\n", |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 209 | memcmp(result, template[i].digest, |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 210 | crypto_hash_digestsize(tfm)) ? |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 211 | "fail" : "pass"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | } |
| 213 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 215 | out: |
| 216 | crypto_free_hash(tfm); |
| 217 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 219 | static void test_aead(char *algo, int enc, struct aead_testvec *template, |
| 220 | unsigned int tcount) |
| 221 | { |
| 222 | unsigned int ret, i, j, k, temp; |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 223 | char *q; |
| 224 | struct crypto_aead *tfm; |
| 225 | char *key; |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 226 | struct aead_request *req; |
| 227 | struct scatterlist sg[8]; |
| 228 | struct scatterlist asg[8]; |
| 229 | const char *e; |
| 230 | struct tcrypt_result result; |
Herbert Xu | 6160b28 | 2007-12-04 19:17:50 +1100 | [diff] [blame] | 231 | unsigned int authsize; |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 232 | void *input; |
| 233 | void *assoc; |
| 234 | char iv[MAX_IVLEN]; |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 235 | |
| 236 | if (enc == ENCRYPT) |
| 237 | e = "encryption"; |
| 238 | else |
| 239 | e = "decryption"; |
| 240 | |
| 241 | printk(KERN_INFO "\ntesting %s %s\n", algo, e); |
| 242 | |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 243 | init_completion(&result.completion); |
| 244 | |
| 245 | tfm = crypto_alloc_aead(algo, 0, 0); |
| 246 | |
| 247 | if (IS_ERR(tfm)) { |
| 248 | printk(KERN_INFO "failed to load transform for %s: %ld\n", |
| 249 | algo, PTR_ERR(tfm)); |
| 250 | return; |
| 251 | } |
| 252 | |
| 253 | req = aead_request_alloc(tfm, GFP_KERNEL); |
| 254 | if (!req) { |
| 255 | printk(KERN_INFO "failed to allocate request for %s\n", algo); |
| 256 | goto out; |
| 257 | } |
| 258 | |
| 259 | aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG, |
| 260 | tcrypt_complete, &result); |
| 261 | |
| 262 | for (i = 0, j = 0; i < tcount; i++) { |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 263 | if (!template[i].np) { |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 264 | printk(KERN_INFO "test %u (%d bit key):\n", |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 265 | ++j, template[i].klen * 8); |
| 266 | |
| 267 | /* some tepmplates have no input data but they will |
| 268 | * touch input |
| 269 | */ |
| 270 | input = kzalloc(template[i].ilen + template[i].rlen, GFP_KERNEL); |
| 271 | if (!input) |
| 272 | continue; |
| 273 | |
| 274 | assoc = kzalloc(template[i].alen, GFP_KERNEL); |
| 275 | if (!assoc) { |
| 276 | kfree(input); |
| 277 | continue; |
| 278 | } |
| 279 | |
| 280 | memcpy(input, template[i].input, template[i].ilen); |
| 281 | memcpy(assoc, template[i].assoc, template[i].alen); |
| 282 | if (template[i].iv) |
| 283 | memcpy(iv, template[i].iv, MAX_IVLEN); |
| 284 | else |
| 285 | memset(iv, 0, MAX_IVLEN); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 286 | |
| 287 | crypto_aead_clear_flags(tfm, ~0); |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 288 | if (template[i].wk) |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 289 | crypto_aead_set_flags( |
| 290 | tfm, CRYPTO_TFM_REQ_WEAK_KEY); |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 291 | |
| 292 | if (template[i].key) |
| 293 | key = template[i].key; |
| 294 | else |
| 295 | key = kzalloc(template[i].klen, GFP_KERNEL); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 296 | |
| 297 | ret = crypto_aead_setkey(tfm, key, |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 298 | template[i].klen); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 299 | if (ret) { |
| 300 | printk(KERN_INFO "setkey() failed flags=%x\n", |
| 301 | crypto_aead_get_flags(tfm)); |
| 302 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 303 | if (!template[i].fail) |
| 304 | goto next_one; |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 305 | } |
| 306 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 307 | authsize = abs(template[i].rlen - template[i].ilen); |
Joy Latten | 93cc74e | 2007-12-12 20:24:22 +0800 | [diff] [blame] | 308 | ret = crypto_aead_setauthsize(tfm, authsize); |
| 309 | if (ret) { |
| 310 | printk(KERN_INFO |
| 311 | "failed to set authsize = %u\n", |
| 312 | authsize); |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 313 | goto next_one; |
Joy Latten | 93cc74e | 2007-12-12 20:24:22 +0800 | [diff] [blame] | 314 | } |
| 315 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 316 | sg_init_one(&sg[0], input, |
| 317 | template[i].ilen + (enc ? authsize : 0)); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 318 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 319 | sg_init_one(&asg[0], assoc, template[i].alen); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 320 | |
| 321 | aead_request_set_crypt(req, sg, sg, |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 322 | template[i].ilen, iv); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 323 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 324 | aead_request_set_assoc(req, asg, template[i].alen); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 325 | |
Herbert Xu | 6160b28 | 2007-12-04 19:17:50 +1100 | [diff] [blame] | 326 | ret = enc ? |
| 327 | crypto_aead_encrypt(req) : |
| 328 | crypto_aead_decrypt(req); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 329 | |
| 330 | switch (ret) { |
| 331 | case 0: |
| 332 | break; |
| 333 | case -EINPROGRESS: |
| 334 | case -EBUSY: |
| 335 | ret = wait_for_completion_interruptible( |
| 336 | &result.completion); |
| 337 | if (!ret && !(ret = result.err)) { |
| 338 | INIT_COMPLETION(result.completion); |
| 339 | break; |
| 340 | } |
| 341 | /* fall through */ |
| 342 | default: |
| 343 | printk(KERN_INFO "%s () failed err=%d\n", |
| 344 | e, -ret); |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 345 | goto next_one; |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | q = kmap(sg_page(&sg[0])) + sg[0].offset; |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 349 | hexdump(q, template[i].rlen); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 350 | |
| 351 | printk(KERN_INFO "enc/dec: %s\n", |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 352 | memcmp(q, template[i].result, |
| 353 | template[i].rlen) ? "fail" : "pass"); |
| 354 | kunmap(sg_page(&sg[0])); |
| 355 | next_one: |
| 356 | if (!template[i].key) |
| 357 | kfree(key); |
| 358 | kfree(assoc); |
| 359 | kfree(input); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 360 | } |
| 361 | } |
| 362 | |
| 363 | printk(KERN_INFO "\ntesting %s %s across pages (chunking)\n", algo, e); |
| 364 | memset(xbuf, 0, XBUFSIZE); |
Herbert Xu | 2a999a3 | 2007-12-30 20:24:11 +1100 | [diff] [blame] | 365 | memset(axbuf, 0, XBUFSIZE); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 366 | |
| 367 | for (i = 0, j = 0; i < tcount; i++) { |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 368 | if (template[i].np) { |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 369 | printk(KERN_INFO "test %u (%d bit key):\n", |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 370 | ++j, template[i].klen * 8); |
| 371 | |
| 372 | if (template[i].iv) |
| 373 | memcpy(iv, template[i].iv, MAX_IVLEN); |
| 374 | else |
| 375 | memset(iv, 0, MAX_IVLEN); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 376 | |
| 377 | crypto_aead_clear_flags(tfm, ~0); |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 378 | if (template[i].wk) |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 379 | crypto_aead_set_flags( |
| 380 | tfm, CRYPTO_TFM_REQ_WEAK_KEY); |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 381 | key = template[i].key; |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 382 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 383 | ret = crypto_aead_setkey(tfm, key, template[i].klen); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 384 | if (ret) { |
| 385 | printk(KERN_INFO "setkey() failed flags=%x\n", |
| 386 | crypto_aead_get_flags(tfm)); |
| 387 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 388 | if (!template[i].fail) |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 389 | goto out; |
| 390 | } |
| 391 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 392 | sg_init_table(sg, template[i].np); |
| 393 | for (k = 0, temp = 0; k < template[i].np; k++) { |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 394 | memcpy(&xbuf[IDX[k]], |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 395 | template[i].input + temp, |
| 396 | template[i].tap[k]); |
| 397 | temp += template[i].tap[k]; |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 398 | sg_set_buf(&sg[k], &xbuf[IDX[k]], |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 399 | template[i].tap[k]); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 400 | } |
| 401 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 402 | authsize = abs(template[i].rlen - template[i].ilen); |
Joy Latten | 93cc74e | 2007-12-12 20:24:22 +0800 | [diff] [blame] | 403 | ret = crypto_aead_setauthsize(tfm, authsize); |
| 404 | if (ret) { |
| 405 | printk(KERN_INFO |
| 406 | "failed to set authsize = %u\n", |
| 407 | authsize); |
| 408 | goto out; |
| 409 | } |
| 410 | |
Herbert Xu | 6160b28 | 2007-12-04 19:17:50 +1100 | [diff] [blame] | 411 | if (enc) |
| 412 | sg[k - 1].length += authsize; |
| 413 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 414 | sg_init_table(asg, template[i].anp); |
| 415 | for (k = 0, temp = 0; k < template[i].anp; k++) { |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 416 | memcpy(&axbuf[IDX[k]], |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 417 | template[i].assoc + temp, |
| 418 | template[i].atap[k]); |
| 419 | temp += template[i].atap[k]; |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 420 | sg_set_buf(&asg[k], &axbuf[IDX[k]], |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 421 | template[i].atap[k]); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | aead_request_set_crypt(req, sg, sg, |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 425 | template[i].ilen, |
| 426 | iv); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 427 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 428 | aead_request_set_assoc(req, asg, template[i].alen); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 429 | |
Herbert Xu | 6160b28 | 2007-12-04 19:17:50 +1100 | [diff] [blame] | 430 | ret = enc ? |
| 431 | crypto_aead_encrypt(req) : |
| 432 | crypto_aead_decrypt(req); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 433 | |
| 434 | switch (ret) { |
| 435 | case 0: |
| 436 | break; |
| 437 | case -EINPROGRESS: |
| 438 | case -EBUSY: |
| 439 | ret = wait_for_completion_interruptible( |
| 440 | &result.completion); |
| 441 | if (!ret && !(ret = result.err)) { |
| 442 | INIT_COMPLETION(result.completion); |
| 443 | break; |
| 444 | } |
| 445 | /* fall through */ |
| 446 | default: |
| 447 | printk(KERN_INFO "%s () failed err=%d\n", |
| 448 | e, -ret); |
| 449 | goto out; |
| 450 | } |
| 451 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 452 | for (k = 0, temp = 0; k < template[i].np; k++) { |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 453 | printk(KERN_INFO "page %u\n", k); |
| 454 | q = kmap(sg_page(&sg[k])) + sg[k].offset; |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 455 | hexdump(q, template[i].tap[k]); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 456 | printk(KERN_INFO "%s\n", |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 457 | memcmp(q, template[i].result + temp, |
| 458 | template[i].tap[k] - |
| 459 | (k < template[i].np - 1 || enc ? |
Herbert Xu | 6160b28 | 2007-12-04 19:17:50 +1100 | [diff] [blame] | 460 | 0 : authsize)) ? |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 461 | "fail" : "pass"); |
| 462 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 463 | temp += template[i].tap[k]; |
| 464 | kunmap(sg_page(&sg[k])); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 465 | } |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 466 | } |
| 467 | } |
| 468 | |
| 469 | out: |
| 470 | crypto_free_aead(tfm); |
| 471 | aead_request_free(req); |
| 472 | } |
| 473 | |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 474 | static void test_cipher(char *algo, int enc, |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 475 | struct cipher_testvec *template, unsigned int tcount) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | { |
| 477 | unsigned int ret, i, j, k, temp; |
David Hardeman | 378f058 | 2005-09-17 17:55:31 +1000 | [diff] [blame] | 478 | char *q; |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 479 | struct crypto_ablkcipher *tfm; |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 480 | struct ablkcipher_request *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | struct scatterlist sg[8]; |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 482 | const char *e; |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 483 | struct tcrypt_result result; |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 484 | void *data; |
| 485 | char iv[MAX_IVLEN]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
| 487 | if (enc == ENCRYPT) |
Herbert Xu | 3cc3816 | 2005-06-22 13:26:36 -0700 | [diff] [blame] | 488 | e = "encryption"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | else |
Herbert Xu | 3cc3816 | 2005-06-22 13:26:36 -0700 | [diff] [blame] | 490 | e = "decryption"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 492 | printk("\ntesting %s %s\n", algo, e); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 494 | init_completion(&result.completion); |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 495 | tfm = crypto_alloc_ablkcipher(algo, 0, 0); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 496 | |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 497 | if (IS_ERR(tfm)) { |
| 498 | printk("failed to load transform for %s: %ld\n", algo, |
| 499 | PTR_ERR(tfm)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | return; |
| 501 | } |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 502 | |
| 503 | req = ablkcipher_request_alloc(tfm, GFP_KERNEL); |
| 504 | if (!req) { |
| 505 | printk("failed to allocate request for %s\n", algo); |
| 506 | goto out; |
| 507 | } |
| 508 | |
| 509 | ablkcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG, |
| 510 | tcrypt_complete, &result); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | j = 0; |
| 513 | for (i = 0; i < tcount; i++) { |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 514 | |
| 515 | data = kzalloc(template[i].ilen, GFP_KERNEL); |
| 516 | if (!data) |
| 517 | continue; |
| 518 | |
| 519 | memcpy(data, template[i].input, template[i].ilen); |
| 520 | if (template[i].iv) |
| 521 | memcpy(iv, template[i].iv, MAX_IVLEN); |
| 522 | else |
| 523 | memset(iv, 0, MAX_IVLEN); |
| 524 | |
| 525 | if (!(template[i].np)) { |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 526 | j++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | printk("test %u (%d bit key):\n", |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 528 | j, template[i].klen * 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 530 | crypto_ablkcipher_clear_flags(tfm, ~0); |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 531 | if (template[i].wk) |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 532 | crypto_ablkcipher_set_flags( |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 533 | tfm, CRYPTO_TFM_REQ_WEAK_KEY); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 534 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 535 | ret = crypto_ablkcipher_setkey(tfm, template[i].key, |
| 536 | template[i].klen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | if (ret) { |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 538 | printk("setkey() failed flags=%x\n", |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 539 | crypto_ablkcipher_get_flags(tfm)); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 540 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 541 | if (!template[i].fail) { |
| 542 | kfree(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | goto out; |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 544 | } |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 545 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 547 | sg_init_one(&sg[0], data, template[i].ilen); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 548 | |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 549 | ablkcipher_request_set_crypt(req, sg, sg, |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 550 | template[i].ilen, iv); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 551 | ret = enc ? |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 552 | crypto_ablkcipher_encrypt(req) : |
| 553 | crypto_ablkcipher_decrypt(req); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 554 | |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 555 | switch (ret) { |
| 556 | case 0: |
| 557 | break; |
| 558 | case -EINPROGRESS: |
| 559 | case -EBUSY: |
| 560 | ret = wait_for_completion_interruptible( |
| 561 | &result.completion); |
| 562 | if (!ret && !((ret = result.err))) { |
| 563 | INIT_COMPLETION(result.completion); |
| 564 | break; |
| 565 | } |
| 566 | /* fall through */ |
| 567 | default: |
| 568 | printk("%s () failed err=%d\n", e, -ret); |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 569 | kfree(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | goto out; |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 571 | } |
| 572 | |
Jens Axboe | 78c2f0b | 2007-10-22 19:40:16 +0200 | [diff] [blame] | 573 | q = kmap(sg_page(&sg[0])) + sg[0].offset; |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 574 | hexdump(q, template[i].rlen); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 575 | |
| 576 | printk("%s\n", |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 577 | memcmp(q, template[i].result, |
| 578 | template[i].rlen) ? "fail" : "pass"); |
| 579 | kunmap(sg_page(&sg[0])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | } |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 581 | kfree(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | } |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 583 | |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 584 | printk("\ntesting %s %s across pages (chunking)\n", algo, e); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | memset(xbuf, 0, XBUFSIZE); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | j = 0; |
| 588 | for (i = 0; i < tcount; i++) { |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 589 | |
| 590 | data = kzalloc(template[i].ilen, GFP_KERNEL); |
| 591 | if (!data) |
| 592 | continue; |
| 593 | |
| 594 | memcpy(data, template[i].input, template[i].ilen); |
| 595 | |
| 596 | if (template[i].iv) |
| 597 | memcpy(iv, template[i].iv, MAX_IVLEN); |
| 598 | else |
| 599 | memset(iv, 0, MAX_IVLEN); |
| 600 | |
| 601 | if (template[i].np) { |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 602 | j++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | printk("test %u (%d bit key):\n", |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 604 | j, template[i].klen * 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 606 | crypto_ablkcipher_clear_flags(tfm, ~0); |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 607 | if (template[i].wk) |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 608 | crypto_ablkcipher_set_flags( |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 609 | tfm, CRYPTO_TFM_REQ_WEAK_KEY); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 610 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 611 | ret = crypto_ablkcipher_setkey(tfm, template[i].key, |
| 612 | template[i].klen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | if (ret) { |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 614 | printk("setkey() failed flags=%x\n", |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 615 | crypto_ablkcipher_get_flags(tfm)); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 616 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 617 | if (!template[i].fail) { |
| 618 | kfree(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | goto out; |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 620 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | } |
| 622 | |
| 623 | temp = 0; |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 624 | sg_init_table(sg, template[i].np); |
| 625 | for (k = 0; k < template[i].np; k++) { |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 626 | memcpy(&xbuf[IDX[k]], |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 627 | template[i].input + temp, |
| 628 | template[i].tap[k]); |
| 629 | temp += template[i].tap[k]; |
David Hardeman | 378f058 | 2005-09-17 17:55:31 +1000 | [diff] [blame] | 630 | sg_set_buf(&sg[k], &xbuf[IDX[k]], |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 631 | template[i].tap[k]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | } |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 633 | |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 634 | ablkcipher_request_set_crypt(req, sg, sg, |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 635 | template[i].ilen, iv); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 636 | |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 637 | ret = enc ? |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 638 | crypto_ablkcipher_encrypt(req) : |
| 639 | crypto_ablkcipher_decrypt(req); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 640 | |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 641 | switch (ret) { |
| 642 | case 0: |
| 643 | break; |
| 644 | case -EINPROGRESS: |
| 645 | case -EBUSY: |
| 646 | ret = wait_for_completion_interruptible( |
| 647 | &result.completion); |
| 648 | if (!ret && !((ret = result.err))) { |
| 649 | INIT_COMPLETION(result.completion); |
| 650 | break; |
| 651 | } |
| 652 | /* fall through */ |
| 653 | default: |
| 654 | printk("%s () failed err=%d\n", e, -ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | goto out; |
| 656 | } |
| 657 | |
| 658 | temp = 0; |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 659 | for (k = 0; k < template[i].np; k++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | printk("page %u\n", k); |
Jens Axboe | 78c2f0b | 2007-10-22 19:40:16 +0200 | [diff] [blame] | 661 | q = kmap(sg_page(&sg[k])) + sg[k].offset; |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 662 | hexdump(q, template[i].tap[k]); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 663 | printk("%s\n", |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 664 | memcmp(q, template[i].result + temp, |
| 665 | template[i].tap[k]) ? "fail" : |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | "pass"); |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 667 | temp += template[i].tap[k]; |
| 668 | kunmap(sg_page(&sg[k])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | } |
| 670 | } |
| 671 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | out: |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 673 | crypto_free_ablkcipher(tfm); |
| 674 | ablkcipher_request_free(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | } |
| 676 | |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 677 | static int test_cipher_jiffies(struct blkcipher_desc *desc, int enc, char *p, |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 678 | int blen, int sec) |
| 679 | { |
Herbert Xu | 6df5b9f | 2005-09-19 22:30:11 +1000 | [diff] [blame] | 680 | struct scatterlist sg[1]; |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 681 | unsigned long start, end; |
| 682 | int bcount; |
| 683 | int ret; |
| 684 | |
David S. Miller | b733588 | 2007-10-26 00:38:10 -0700 | [diff] [blame] | 685 | sg_init_one(sg, p, blen); |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 686 | |
| 687 | for (start = jiffies, end = start + sec * HZ, bcount = 0; |
| 688 | time_before(jiffies, end); bcount++) { |
| 689 | if (enc) |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 690 | ret = crypto_blkcipher_encrypt(desc, sg, sg, blen); |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 691 | else |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 692 | ret = crypto_blkcipher_decrypt(desc, sg, sg, blen); |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 693 | |
| 694 | if (ret) |
| 695 | return ret; |
| 696 | } |
| 697 | |
| 698 | printk("%d operations in %d seconds (%ld bytes)\n", |
| 699 | bcount, sec, (long)bcount * blen); |
| 700 | return 0; |
| 701 | } |
| 702 | |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 703 | static int test_cipher_cycles(struct blkcipher_desc *desc, int enc, char *p, |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 704 | int blen) |
| 705 | { |
Herbert Xu | 6df5b9f | 2005-09-19 22:30:11 +1000 | [diff] [blame] | 706 | struct scatterlist sg[1]; |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 707 | unsigned long cycles = 0; |
| 708 | int ret = 0; |
| 709 | int i; |
| 710 | |
David S. Miller | b733588 | 2007-10-26 00:38:10 -0700 | [diff] [blame] | 711 | sg_init_one(sg, p, blen); |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 712 | |
| 713 | local_bh_disable(); |
| 714 | local_irq_disable(); |
| 715 | |
| 716 | /* Warm-up run. */ |
| 717 | for (i = 0; i < 4; i++) { |
| 718 | if (enc) |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 719 | ret = crypto_blkcipher_encrypt(desc, sg, sg, blen); |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 720 | else |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 721 | ret = crypto_blkcipher_decrypt(desc, sg, sg, blen); |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 722 | |
| 723 | if (ret) |
| 724 | goto out; |
| 725 | } |
| 726 | |
| 727 | /* The real thing. */ |
| 728 | for (i = 0; i < 8; i++) { |
| 729 | cycles_t start, end; |
| 730 | |
| 731 | start = get_cycles(); |
| 732 | if (enc) |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 733 | ret = crypto_blkcipher_encrypt(desc, sg, sg, blen); |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 734 | else |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 735 | ret = crypto_blkcipher_decrypt(desc, sg, sg, blen); |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 736 | end = get_cycles(); |
| 737 | |
| 738 | if (ret) |
| 739 | goto out; |
| 740 | |
| 741 | cycles += end - start; |
| 742 | } |
| 743 | |
| 744 | out: |
| 745 | local_irq_enable(); |
| 746 | local_bh_enable(); |
| 747 | |
| 748 | if (ret == 0) |
| 749 | printk("1 operation in %lu cycles (%d bytes)\n", |
| 750 | (cycles + 4) / 8, blen); |
| 751 | |
| 752 | return ret; |
| 753 | } |
| 754 | |
Sebastian Siewior | d5dc392 | 2008-03-11 21:27:11 +0800 | [diff] [blame] | 755 | static u32 block_sizes[] = { 16, 64, 256, 1024, 8192, 0 }; |
| 756 | |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 757 | static void test_cipher_speed(char *algo, int enc, unsigned int sec, |
Herbert Xu | dce907c | 2005-06-22 13:27:51 -0700 | [diff] [blame] | 758 | struct cipher_testvec *template, |
Sebastian Siewior | d5dc392 | 2008-03-11 21:27:11 +0800 | [diff] [blame] | 759 | unsigned int tcount, u8 *keysize) |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 760 | { |
Herbert Xu | dce907c | 2005-06-22 13:27:51 -0700 | [diff] [blame] | 761 | unsigned int ret, i, j, iv_len; |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 762 | unsigned char *key, *p, iv[128]; |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 763 | struct crypto_blkcipher *tfm; |
| 764 | struct blkcipher_desc desc; |
| 765 | const char *e; |
Sebastian Siewior | d5dc392 | 2008-03-11 21:27:11 +0800 | [diff] [blame] | 766 | u32 *b_size; |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 767 | |
| 768 | if (enc == ENCRYPT) |
| 769 | e = "encryption"; |
| 770 | else |
| 771 | e = "decryption"; |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 772 | |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 773 | printk("\ntesting speed of %s %s\n", algo, e); |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 774 | |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 775 | tfm = crypto_alloc_blkcipher(algo, 0, CRYPTO_ALG_ASYNC); |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 776 | |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 777 | if (IS_ERR(tfm)) { |
| 778 | printk("failed to load transform for %s: %ld\n", algo, |
| 779 | PTR_ERR(tfm)); |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 780 | return; |
| 781 | } |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 782 | desc.tfm = tfm; |
| 783 | desc.flags = 0; |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 784 | |
Sebastian Siewior | d5dc392 | 2008-03-11 21:27:11 +0800 | [diff] [blame] | 785 | i = 0; |
| 786 | do { |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 787 | |
Sebastian Siewior | d5dc392 | 2008-03-11 21:27:11 +0800 | [diff] [blame] | 788 | b_size = block_sizes; |
| 789 | do { |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 790 | |
Sebastian Siewior | d5dc392 | 2008-03-11 21:27:11 +0800 | [diff] [blame] | 791 | if ((*keysize + *b_size) > TVMEMSIZE) { |
| 792 | printk("template (%u) too big for tvmem (%u)\n", |
| 793 | *keysize + *b_size, TVMEMSIZE); |
| 794 | goto out; |
| 795 | } |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 796 | |
Sebastian Siewior | d5dc392 | 2008-03-11 21:27:11 +0800 | [diff] [blame] | 797 | printk("test %u (%d bit key, %d byte blocks): ", i, |
| 798 | *keysize * 8, *b_size); |
| 799 | |
| 800 | memset(tvmem, 0xff, *keysize + *b_size); |
| 801 | |
| 802 | /* set key, plain text and IV */ |
| 803 | key = (unsigned char *)tvmem; |
| 804 | for (j = 0; j < tcount; j++) { |
| 805 | if (template[j].klen == *keysize) { |
| 806 | key = template[j].key; |
| 807 | break; |
| 808 | } |
| 809 | } |
| 810 | p = (unsigned char *)tvmem + *keysize; |
| 811 | |
| 812 | ret = crypto_blkcipher_setkey(tfm, key, *keysize); |
| 813 | if (ret) { |
| 814 | printk("setkey() failed flags=%x\n", |
| 815 | crypto_blkcipher_get_flags(tfm)); |
| 816 | goto out; |
| 817 | } |
| 818 | |
| 819 | iv_len = crypto_blkcipher_ivsize(tfm); |
| 820 | if (iv_len) { |
| 821 | memset(&iv, 0xff, iv_len); |
| 822 | crypto_blkcipher_set_iv(tfm, iv, iv_len); |
| 823 | } |
| 824 | |
| 825 | if (sec) |
| 826 | ret = test_cipher_jiffies(&desc, enc, p, *b_size, sec); |
| 827 | else |
| 828 | ret = test_cipher_cycles(&desc, enc, p, *b_size); |
| 829 | |
| 830 | if (ret) { |
| 831 | printk("%s() failed flags=%x\n", e, desc.flags); |
Herbert Xu | dce907c | 2005-06-22 13:27:51 -0700 | [diff] [blame] | 832 | break; |
| 833 | } |
Sebastian Siewior | d5dc392 | 2008-03-11 21:27:11 +0800 | [diff] [blame] | 834 | b_size++; |
| 835 | i++; |
| 836 | } while (*b_size); |
| 837 | keysize++; |
| 838 | } while (*keysize); |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 839 | |
| 840 | out: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 841 | crypto_free_blkcipher(tfm); |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 842 | } |
| 843 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 844 | static int test_hash_jiffies_digest(struct hash_desc *desc, char *p, int blen, |
| 845 | char *out, int sec) |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 846 | { |
| 847 | struct scatterlist sg[1]; |
| 848 | unsigned long start, end; |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 849 | int bcount; |
| 850 | int ret; |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 851 | |
Herbert Xu | a5a613a | 2007-10-27 00:51:21 -0700 | [diff] [blame] | 852 | sg_init_table(sg, 1); |
| 853 | |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 854 | for (start = jiffies, end = start + sec * HZ, bcount = 0; |
| 855 | time_before(jiffies, end); bcount++) { |
Herbert Xu | a5a613a | 2007-10-27 00:51:21 -0700 | [diff] [blame] | 856 | sg_set_buf(sg, p, blen); |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 857 | ret = crypto_hash_digest(desc, sg, blen, out); |
| 858 | if (ret) |
| 859 | return ret; |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 860 | } |
| 861 | |
| 862 | printk("%6u opers/sec, %9lu bytes/sec\n", |
| 863 | bcount / sec, ((long)bcount * blen) / sec); |
| 864 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 865 | return 0; |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 866 | } |
| 867 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 868 | static int test_hash_jiffies(struct hash_desc *desc, char *p, int blen, |
| 869 | int plen, char *out, int sec) |
| 870 | { |
| 871 | struct scatterlist sg[1]; |
| 872 | unsigned long start, end; |
| 873 | int bcount, pcount; |
| 874 | int ret; |
| 875 | |
| 876 | if (plen == blen) |
| 877 | return test_hash_jiffies_digest(desc, p, blen, out, sec); |
| 878 | |
Herbert Xu | a5a613a | 2007-10-27 00:51:21 -0700 | [diff] [blame] | 879 | sg_init_table(sg, 1); |
| 880 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 881 | for (start = jiffies, end = start + sec * HZ, bcount = 0; |
| 882 | time_before(jiffies, end); bcount++) { |
| 883 | ret = crypto_hash_init(desc); |
| 884 | if (ret) |
| 885 | return ret; |
| 886 | for (pcount = 0; pcount < blen; pcount += plen) { |
Herbert Xu | a5a613a | 2007-10-27 00:51:21 -0700 | [diff] [blame] | 887 | sg_set_buf(sg, p + pcount, plen); |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 888 | ret = crypto_hash_update(desc, sg, plen); |
| 889 | if (ret) |
| 890 | return ret; |
| 891 | } |
| 892 | /* we assume there is enough space in 'out' for the result */ |
| 893 | ret = crypto_hash_final(desc, out); |
| 894 | if (ret) |
| 895 | return ret; |
| 896 | } |
| 897 | |
| 898 | printk("%6u opers/sec, %9lu bytes/sec\n", |
| 899 | bcount / sec, ((long)bcount * blen) / sec); |
| 900 | |
| 901 | return 0; |
| 902 | } |
| 903 | |
| 904 | static int test_hash_cycles_digest(struct hash_desc *desc, char *p, int blen, |
| 905 | char *out) |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 906 | { |
| 907 | struct scatterlist sg[1]; |
| 908 | unsigned long cycles = 0; |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 909 | int i; |
| 910 | int ret; |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 911 | |
Herbert Xu | a5a613a | 2007-10-27 00:51:21 -0700 | [diff] [blame] | 912 | sg_init_table(sg, 1); |
| 913 | |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 914 | local_bh_disable(); |
| 915 | local_irq_disable(); |
| 916 | |
| 917 | /* Warm-up run. */ |
| 918 | for (i = 0; i < 4; i++) { |
Herbert Xu | a5a613a | 2007-10-27 00:51:21 -0700 | [diff] [blame] | 919 | sg_set_buf(sg, p, blen); |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 920 | ret = crypto_hash_digest(desc, sg, blen, out); |
| 921 | if (ret) |
| 922 | goto out; |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 923 | } |
| 924 | |
| 925 | /* The real thing. */ |
| 926 | for (i = 0; i < 8; i++) { |
| 927 | cycles_t start, end; |
| 928 | |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 929 | start = get_cycles(); |
| 930 | |
Herbert Xu | a5a613a | 2007-10-27 00:51:21 -0700 | [diff] [blame] | 931 | sg_set_buf(sg, p, blen); |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 932 | ret = crypto_hash_digest(desc, sg, blen, out); |
| 933 | if (ret) |
| 934 | goto out; |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 935 | |
| 936 | end = get_cycles(); |
| 937 | |
| 938 | cycles += end - start; |
| 939 | } |
| 940 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 941 | out: |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 942 | local_irq_enable(); |
| 943 | local_bh_enable(); |
| 944 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 945 | if (ret) |
| 946 | return ret; |
| 947 | |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 948 | printk("%6lu cycles/operation, %4lu cycles/byte\n", |
| 949 | cycles / 8, cycles / (8 * blen)); |
| 950 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 951 | return 0; |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 952 | } |
| 953 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 954 | static int test_hash_cycles(struct hash_desc *desc, char *p, int blen, |
| 955 | int plen, char *out) |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 956 | { |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 957 | struct scatterlist sg[1]; |
| 958 | unsigned long cycles = 0; |
| 959 | int i, pcount; |
| 960 | int ret; |
| 961 | |
| 962 | if (plen == blen) |
| 963 | return test_hash_cycles_digest(desc, p, blen, out); |
| 964 | |
Herbert Xu | a5a613a | 2007-10-27 00:51:21 -0700 | [diff] [blame] | 965 | sg_init_table(sg, 1); |
| 966 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 967 | local_bh_disable(); |
| 968 | local_irq_disable(); |
| 969 | |
| 970 | /* Warm-up run. */ |
| 971 | for (i = 0; i < 4; i++) { |
| 972 | ret = crypto_hash_init(desc); |
| 973 | if (ret) |
| 974 | goto out; |
| 975 | for (pcount = 0; pcount < blen; pcount += plen) { |
Herbert Xu | a5a613a | 2007-10-27 00:51:21 -0700 | [diff] [blame] | 976 | sg_set_buf(sg, p + pcount, plen); |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 977 | ret = crypto_hash_update(desc, sg, plen); |
| 978 | if (ret) |
| 979 | goto out; |
| 980 | } |
Herbert Xu | 29059d1 | 2007-05-18 16:25:19 +1000 | [diff] [blame] | 981 | ret = crypto_hash_final(desc, out); |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 982 | if (ret) |
| 983 | goto out; |
| 984 | } |
| 985 | |
| 986 | /* The real thing. */ |
| 987 | for (i = 0; i < 8; i++) { |
| 988 | cycles_t start, end; |
| 989 | |
| 990 | start = get_cycles(); |
| 991 | |
| 992 | ret = crypto_hash_init(desc); |
| 993 | if (ret) |
| 994 | goto out; |
| 995 | for (pcount = 0; pcount < blen; pcount += plen) { |
Herbert Xu | a5a613a | 2007-10-27 00:51:21 -0700 | [diff] [blame] | 996 | sg_set_buf(sg, p + pcount, plen); |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 997 | ret = crypto_hash_update(desc, sg, plen); |
| 998 | if (ret) |
| 999 | goto out; |
| 1000 | } |
| 1001 | ret = crypto_hash_final(desc, out); |
| 1002 | if (ret) |
| 1003 | goto out; |
| 1004 | |
| 1005 | end = get_cycles(); |
| 1006 | |
| 1007 | cycles += end - start; |
| 1008 | } |
| 1009 | |
| 1010 | out: |
| 1011 | local_irq_enable(); |
| 1012 | local_bh_enable(); |
| 1013 | |
| 1014 | if (ret) |
| 1015 | return ret; |
| 1016 | |
| 1017 | printk("%6lu cycles/operation, %4lu cycles/byte\n", |
| 1018 | cycles / 8, cycles / (8 * blen)); |
| 1019 | |
| 1020 | return 0; |
| 1021 | } |
| 1022 | |
| 1023 | static void test_hash_speed(char *algo, unsigned int sec, |
| 1024 | struct hash_speed *speed) |
| 1025 | { |
| 1026 | struct crypto_hash *tfm; |
| 1027 | struct hash_desc desc; |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1028 | char output[1024]; |
| 1029 | int i; |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1030 | int ret; |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1031 | |
| 1032 | printk("\ntesting speed of %s\n", algo); |
| 1033 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1034 | tfm = crypto_alloc_hash(algo, 0, CRYPTO_ALG_ASYNC); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1035 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1036 | if (IS_ERR(tfm)) { |
| 1037 | printk("failed to load transform for %s: %ld\n", algo, |
| 1038 | PTR_ERR(tfm)); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1039 | return; |
| 1040 | } |
| 1041 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1042 | desc.tfm = tfm; |
| 1043 | desc.flags = 0; |
| 1044 | |
| 1045 | if (crypto_hash_digestsize(tfm) > sizeof(output)) { |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1046 | printk("digestsize(%u) > outputbuffer(%zu)\n", |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1047 | crypto_hash_digestsize(tfm), sizeof(output)); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1048 | goto out; |
| 1049 | } |
| 1050 | |
| 1051 | for (i = 0; speed[i].blen != 0; i++) { |
| 1052 | if (speed[i].blen > TVMEMSIZE) { |
| 1053 | printk("template (%u) too big for tvmem (%u)\n", |
| 1054 | speed[i].blen, TVMEMSIZE); |
| 1055 | goto out; |
| 1056 | } |
| 1057 | |
| 1058 | printk("test%3u (%5u byte blocks,%5u bytes per update,%4u updates): ", |
| 1059 | i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen); |
| 1060 | |
| 1061 | memset(tvmem, 0xff, speed[i].blen); |
| 1062 | |
| 1063 | if (sec) |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1064 | ret = test_hash_jiffies(&desc, tvmem, speed[i].blen, |
| 1065 | speed[i].plen, output, sec); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1066 | else |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1067 | ret = test_hash_cycles(&desc, tvmem, speed[i].blen, |
| 1068 | speed[i].plen, output); |
| 1069 | |
| 1070 | if (ret) { |
| 1071 | printk("hashing failed ret=%d\n", ret); |
| 1072 | break; |
| 1073 | } |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1074 | } |
| 1075 | |
| 1076 | out: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1077 | crypto_free_hash(tfm); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1078 | } |
| 1079 | |
Zoltan Sogor | 91755a9 | 2007-12-07 16:48:11 +0800 | [diff] [blame] | 1080 | static void test_comp(char *algo, struct comp_testvec *ctemplate, |
| 1081 | struct comp_testvec *dtemplate, int ctcount, int dtcount) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | { |
| 1083 | unsigned int i; |
| 1084 | char result[COMP_BUF_SIZE]; |
Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 1085 | struct crypto_comp *tfm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | unsigned int tsize; |
| 1087 | |
Zoltan Sogor | 91755a9 | 2007-12-07 16:48:11 +0800 | [diff] [blame] | 1088 | printk("\ntesting %s compression\n", algo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | |
Zoltan Sogor | 91755a9 | 2007-12-07 16:48:11 +0800 | [diff] [blame] | 1090 | tfm = crypto_alloc_comp(algo, 0, CRYPTO_ALG_ASYNC); |
Sebastian Siewior | 7bc301e | 2007-03-21 08:58:43 +1100 | [diff] [blame] | 1091 | if (IS_ERR(tfm)) { |
Zoltan Sogor | 91755a9 | 2007-12-07 16:48:11 +0800 | [diff] [blame] | 1092 | printk("failed to load transform for %s\n", algo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | return; |
| 1094 | } |
| 1095 | |
Zoltan Sogor | 91755a9 | 2007-12-07 16:48:11 +0800 | [diff] [blame] | 1096 | for (i = 0; i < ctcount; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | int ilen, ret, dlen = COMP_BUF_SIZE; |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1098 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | printk("test %u:\n", i + 1); |
| 1100 | memset(result, 0, sizeof (result)); |
| 1101 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 1102 | ilen = ctemplate[i].inlen; |
| 1103 | ret = crypto_comp_compress(tfm, ctemplate[i].input, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | ilen, result, &dlen); |
| 1105 | if (ret) { |
| 1106 | printk("fail: ret=%d\n", ret); |
| 1107 | continue; |
| 1108 | } |
| 1109 | hexdump(result, dlen); |
| 1110 | printk("%s (ratio %d:%d)\n", |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 1111 | memcmp(result, ctemplate[i].output, dlen) ? "fail" : "pass", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | ilen, dlen); |
| 1113 | } |
| 1114 | |
Zoltan Sogor | 91755a9 | 2007-12-07 16:48:11 +0800 | [diff] [blame] | 1115 | printk("\ntesting %s decompression\n", algo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | |
Zoltan Sogor | 91755a9 | 2007-12-07 16:48:11 +0800 | [diff] [blame] | 1117 | tsize = sizeof(struct comp_testvec); |
| 1118 | tsize *= dtcount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | if (tsize > TVMEMSIZE) { |
| 1120 | printk("template (%u) too big for tvmem (%u)\n", tsize, |
| 1121 | TVMEMSIZE); |
| 1122 | goto out; |
| 1123 | } |
| 1124 | |
Zoltan Sogor | 91755a9 | 2007-12-07 16:48:11 +0800 | [diff] [blame] | 1125 | for (i = 0; i < dtcount; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | int ilen, ret, dlen = COMP_BUF_SIZE; |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | printk("test %u:\n", i + 1); |
| 1129 | memset(result, 0, sizeof (result)); |
| 1130 | |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 1131 | ilen = dtemplate[i].inlen; |
| 1132 | ret = crypto_comp_decompress(tfm, dtemplate[i].input, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | ilen, result, &dlen); |
| 1134 | if (ret) { |
| 1135 | printk("fail: ret=%d\n", ret); |
| 1136 | continue; |
| 1137 | } |
| 1138 | hexdump(result, dlen); |
| 1139 | printk("%s (ratio %d:%d)\n", |
Sebastian Siewior | 562954d | 2008-03-13 20:20:28 +0800 | [diff] [blame^] | 1140 | memcmp(result, dtemplate[i].output, dlen) ? "fail" : "pass", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | ilen, dlen); |
| 1142 | } |
| 1143 | out: |
Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 1144 | crypto_free_comp(tfm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | } |
| 1146 | |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1147 | static void test_available(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | { |
| 1149 | char **name = check; |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | while (*name) { |
| 1152 | printk("alg %s ", *name); |
Herbert Xu | 6158efc | 2007-04-04 17:41:07 +1000 | [diff] [blame] | 1153 | printk(crypto_has_alg(*name, 0, 0) ? |
Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 1154 | "found\n" : "not found\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | name++; |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1156 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | } |
| 1158 | |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1159 | static void do_test(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | { |
| 1161 | switch (mode) { |
| 1162 | |
| 1163 | case 0: |
| 1164 | test_hash("md5", md5_tv_template, MD5_TEST_VECTORS); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | test_hash("sha1", sha1_tv_template, SHA1_TEST_VECTORS); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | //DES |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1169 | test_cipher("ecb(des)", ENCRYPT, des_enc_tv_template, |
| 1170 | DES_ENC_TEST_VECTORS); |
| 1171 | test_cipher("ecb(des)", DECRYPT, des_dec_tv_template, |
| 1172 | DES_DEC_TEST_VECTORS); |
| 1173 | test_cipher("cbc(des)", ENCRYPT, des_cbc_enc_tv_template, |
| 1174 | DES_CBC_ENC_TEST_VECTORS); |
| 1175 | test_cipher("cbc(des)", DECRYPT, des_cbc_dec_tv_template, |
| 1176 | DES_CBC_DEC_TEST_VECTORS); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | //DES3_EDE |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1179 | test_cipher("ecb(des3_ede)", ENCRYPT, des3_ede_enc_tv_template, |
| 1180 | DES3_EDE_ENC_TEST_VECTORS); |
| 1181 | test_cipher("ecb(des3_ede)", DECRYPT, des3_ede_dec_tv_template, |
| 1182 | DES3_EDE_DEC_TEST_VECTORS); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1183 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | test_hash("md4", md4_tv_template, MD4_TEST_VECTORS); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1185 | |
Jonathan Lynch | cd12fb9 | 2007-11-10 20:08:25 +0800 | [diff] [blame] | 1186 | test_hash("sha224", sha224_tv_template, SHA224_TEST_VECTORS); |
| 1187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | test_hash("sha256", sha256_tv_template, SHA256_TEST_VECTORS); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | //BLOWFISH |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1191 | test_cipher("ecb(blowfish)", ENCRYPT, bf_enc_tv_template, |
| 1192 | BF_ENC_TEST_VECTORS); |
| 1193 | test_cipher("ecb(blowfish)", DECRYPT, bf_dec_tv_template, |
| 1194 | BF_DEC_TEST_VECTORS); |
| 1195 | test_cipher("cbc(blowfish)", ENCRYPT, bf_cbc_enc_tv_template, |
| 1196 | BF_CBC_ENC_TEST_VECTORS); |
| 1197 | test_cipher("cbc(blowfish)", DECRYPT, bf_cbc_dec_tv_template, |
| 1198 | BF_CBC_DEC_TEST_VECTORS); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | //TWOFISH |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1201 | test_cipher("ecb(twofish)", ENCRYPT, tf_enc_tv_template, |
| 1202 | TF_ENC_TEST_VECTORS); |
| 1203 | test_cipher("ecb(twofish)", DECRYPT, tf_dec_tv_template, |
| 1204 | TF_DEC_TEST_VECTORS); |
| 1205 | test_cipher("cbc(twofish)", ENCRYPT, tf_cbc_enc_tv_template, |
| 1206 | TF_CBC_ENC_TEST_VECTORS); |
| 1207 | test_cipher("cbc(twofish)", DECRYPT, tf_cbc_dec_tv_template, |
| 1208 | TF_CBC_DEC_TEST_VECTORS); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | //SERPENT |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1211 | test_cipher("ecb(serpent)", ENCRYPT, serpent_enc_tv_template, |
| 1212 | SERPENT_ENC_TEST_VECTORS); |
| 1213 | test_cipher("ecb(serpent)", DECRYPT, serpent_dec_tv_template, |
| 1214 | SERPENT_DEC_TEST_VECTORS); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | //TNEPRES |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1217 | test_cipher("ecb(tnepres)", ENCRYPT, tnepres_enc_tv_template, |
| 1218 | TNEPRES_ENC_TEST_VECTORS); |
| 1219 | test_cipher("ecb(tnepres)", DECRYPT, tnepres_dec_tv_template, |
| 1220 | TNEPRES_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | |
| 1222 | //AES |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1223 | test_cipher("ecb(aes)", ENCRYPT, aes_enc_tv_template, |
| 1224 | AES_ENC_TEST_VECTORS); |
| 1225 | test_cipher("ecb(aes)", DECRYPT, aes_dec_tv_template, |
| 1226 | AES_DEC_TEST_VECTORS); |
| 1227 | test_cipher("cbc(aes)", ENCRYPT, aes_cbc_enc_tv_template, |
| 1228 | AES_CBC_ENC_TEST_VECTORS); |
| 1229 | test_cipher("cbc(aes)", DECRYPT, aes_cbc_dec_tv_template, |
| 1230 | AES_CBC_DEC_TEST_VECTORS); |
Rik Snel | f3d1044 | 2006-11-29 19:01:41 +1100 | [diff] [blame] | 1231 | test_cipher("lrw(aes)", ENCRYPT, aes_lrw_enc_tv_template, |
| 1232 | AES_LRW_ENC_TEST_VECTORS); |
| 1233 | test_cipher("lrw(aes)", DECRYPT, aes_lrw_dec_tv_template, |
| 1234 | AES_LRW_DEC_TEST_VECTORS); |
Rik Snel | f19f511 | 2007-09-19 20:23:13 +0800 | [diff] [blame] | 1235 | test_cipher("xts(aes)", ENCRYPT, aes_xts_enc_tv_template, |
| 1236 | AES_XTS_ENC_TEST_VECTORS); |
| 1237 | test_cipher("xts(aes)", DECRYPT, aes_xts_dec_tv_template, |
| 1238 | AES_XTS_DEC_TEST_VECTORS); |
Herbert Xu | 5311f24 | 2007-12-17 21:34:32 +0800 | [diff] [blame] | 1239 | test_cipher("rfc3686(ctr(aes))", ENCRYPT, aes_ctr_enc_tv_template, |
Joy Latten | 23e353c | 2007-10-23 08:50:32 +0800 | [diff] [blame] | 1240 | AES_CTR_ENC_TEST_VECTORS); |
Herbert Xu | 5311f24 | 2007-12-17 21:34:32 +0800 | [diff] [blame] | 1241 | test_cipher("rfc3686(ctr(aes))", DECRYPT, aes_ctr_dec_tv_template, |
Joy Latten | 23e353c | 2007-10-23 08:50:32 +0800 | [diff] [blame] | 1242 | AES_CTR_DEC_TEST_VECTORS); |
Mikko Herranen | 28db8e3 | 2007-11-26 22:24:11 +0800 | [diff] [blame] | 1243 | test_aead("gcm(aes)", ENCRYPT, aes_gcm_enc_tv_template, |
| 1244 | AES_GCM_ENC_TEST_VECTORS); |
| 1245 | test_aead("gcm(aes)", DECRYPT, aes_gcm_dec_tv_template, |
| 1246 | AES_GCM_DEC_TEST_VECTORS); |
Joy Latten | 93cc74e | 2007-12-12 20:24:22 +0800 | [diff] [blame] | 1247 | test_aead("ccm(aes)", ENCRYPT, aes_ccm_enc_tv_template, |
| 1248 | AES_CCM_ENC_TEST_VECTORS); |
| 1249 | test_aead("ccm(aes)", DECRYPT, aes_ccm_dec_tv_template, |
| 1250 | AES_CCM_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | |
| 1252 | //CAST5 |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1253 | test_cipher("ecb(cast5)", ENCRYPT, cast5_enc_tv_template, |
| 1254 | CAST5_ENC_TEST_VECTORS); |
| 1255 | test_cipher("ecb(cast5)", DECRYPT, cast5_dec_tv_template, |
| 1256 | CAST5_DEC_TEST_VECTORS); |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | //CAST6 |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1259 | test_cipher("ecb(cast6)", ENCRYPT, cast6_enc_tv_template, |
| 1260 | CAST6_ENC_TEST_VECTORS); |
| 1261 | test_cipher("ecb(cast6)", DECRYPT, cast6_dec_tv_template, |
| 1262 | CAST6_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | |
| 1264 | //ARC4 |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1265 | test_cipher("ecb(arc4)", ENCRYPT, arc4_enc_tv_template, |
| 1266 | ARC4_ENC_TEST_VECTORS); |
| 1267 | test_cipher("ecb(arc4)", DECRYPT, arc4_dec_tv_template, |
| 1268 | ARC4_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | |
| 1270 | //TEA |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1271 | test_cipher("ecb(tea)", ENCRYPT, tea_enc_tv_template, |
| 1272 | TEA_ENC_TEST_VECTORS); |
| 1273 | test_cipher("ecb(tea)", DECRYPT, tea_dec_tv_template, |
| 1274 | TEA_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | |
| 1276 | |
| 1277 | //XTEA |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1278 | test_cipher("ecb(xtea)", ENCRYPT, xtea_enc_tv_template, |
| 1279 | XTEA_ENC_TEST_VECTORS); |
| 1280 | test_cipher("ecb(xtea)", DECRYPT, xtea_dec_tv_template, |
| 1281 | XTEA_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | |
| 1283 | //KHAZAD |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1284 | test_cipher("ecb(khazad)", ENCRYPT, khazad_enc_tv_template, |
| 1285 | KHAZAD_ENC_TEST_VECTORS); |
| 1286 | test_cipher("ecb(khazad)", DECRYPT, khazad_dec_tv_template, |
| 1287 | KHAZAD_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | |
| 1289 | //ANUBIS |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1290 | test_cipher("ecb(anubis)", ENCRYPT, anubis_enc_tv_template, |
| 1291 | ANUBIS_ENC_TEST_VECTORS); |
| 1292 | test_cipher("ecb(anubis)", DECRYPT, anubis_dec_tv_template, |
| 1293 | ANUBIS_DEC_TEST_VECTORS); |
| 1294 | test_cipher("cbc(anubis)", ENCRYPT, anubis_cbc_enc_tv_template, |
| 1295 | ANUBIS_CBC_ENC_TEST_VECTORS); |
| 1296 | test_cipher("cbc(anubis)", DECRYPT, anubis_cbc_dec_tv_template, |
| 1297 | ANUBIS_CBC_ENC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | |
Aaron Grothe | fb4f10e | 2005-09-01 17:42:46 -0700 | [diff] [blame] | 1299 | //XETA |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1300 | test_cipher("ecb(xeta)", ENCRYPT, xeta_enc_tv_template, |
| 1301 | XETA_ENC_TEST_VECTORS); |
| 1302 | test_cipher("ecb(xeta)", DECRYPT, xeta_dec_tv_template, |
| 1303 | XETA_DEC_TEST_VECTORS); |
Aaron Grothe | fb4f10e | 2005-09-01 17:42:46 -0700 | [diff] [blame] | 1304 | |
David Howells | 9083163 | 2006-12-16 12:13:14 +1100 | [diff] [blame] | 1305 | //FCrypt |
| 1306 | test_cipher("pcbc(fcrypt)", ENCRYPT, fcrypt_pcbc_enc_tv_template, |
| 1307 | FCRYPT_ENC_TEST_VECTORS); |
| 1308 | test_cipher("pcbc(fcrypt)", DECRYPT, fcrypt_pcbc_dec_tv_template, |
| 1309 | FCRYPT_DEC_TEST_VECTORS); |
| 1310 | |
Noriaki TAKAMIYA | 02ab5a7 | 2007-01-24 21:48:19 +1100 | [diff] [blame] | 1311 | //CAMELLIA |
| 1312 | test_cipher("ecb(camellia)", ENCRYPT, |
| 1313 | camellia_enc_tv_template, |
| 1314 | CAMELLIA_ENC_TEST_VECTORS); |
| 1315 | test_cipher("ecb(camellia)", DECRYPT, |
| 1316 | camellia_dec_tv_template, |
| 1317 | CAMELLIA_DEC_TEST_VECTORS); |
| 1318 | test_cipher("cbc(camellia)", ENCRYPT, |
| 1319 | camellia_cbc_enc_tv_template, |
| 1320 | CAMELLIA_CBC_ENC_TEST_VECTORS); |
| 1321 | test_cipher("cbc(camellia)", DECRYPT, |
| 1322 | camellia_cbc_dec_tv_template, |
| 1323 | CAMELLIA_CBC_DEC_TEST_VECTORS); |
| 1324 | |
Hye-Shik Chang | e2ee95b | 2007-08-21 20:01:03 +0800 | [diff] [blame] | 1325 | //SEED |
| 1326 | test_cipher("ecb(seed)", ENCRYPT, seed_enc_tv_template, |
| 1327 | SEED_ENC_TEST_VECTORS); |
| 1328 | test_cipher("ecb(seed)", DECRYPT, seed_dec_tv_template, |
| 1329 | SEED_DEC_TEST_VECTORS); |
| 1330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | test_hash("sha384", sha384_tv_template, SHA384_TEST_VECTORS); |
| 1332 | test_hash("sha512", sha512_tv_template, SHA512_TEST_VECTORS); |
| 1333 | test_hash("wp512", wp512_tv_template, WP512_TEST_VECTORS); |
| 1334 | test_hash("wp384", wp384_tv_template, WP384_TEST_VECTORS); |
| 1335 | test_hash("wp256", wp256_tv_template, WP256_TEST_VECTORS); |
| 1336 | test_hash("tgr192", tgr192_tv_template, TGR192_TEST_VECTORS); |
| 1337 | test_hash("tgr160", tgr160_tv_template, TGR160_TEST_VECTORS); |
| 1338 | test_hash("tgr128", tgr128_tv_template, TGR128_TEST_VECTORS); |
Zoltan Sogor | 91755a9 | 2007-12-07 16:48:11 +0800 | [diff] [blame] | 1339 | test_comp("deflate", deflate_comp_tv_template, |
| 1340 | deflate_decomp_tv_template, DEFLATE_COMP_TEST_VECTORS, |
| 1341 | DEFLATE_DECOMP_TEST_VECTORS); |
Zoltan Sogor | 0b77abb | 2007-12-07 16:53:23 +0800 | [diff] [blame] | 1342 | test_comp("lzo", lzo_comp_tv_template, lzo_decomp_tv_template, |
| 1343 | LZO_COMP_TEST_VECTORS, LZO_DECOMP_TEST_VECTORS); |
Herbert Xu | c907ee7 | 2006-08-21 22:04:03 +1000 | [diff] [blame] | 1344 | test_hash("crc32c", crc32c_tv_template, CRC32C_TEST_VECTORS); |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1345 | test_hash("hmac(md5)", hmac_md5_tv_template, |
| 1346 | HMAC_MD5_TEST_VECTORS); |
| 1347 | test_hash("hmac(sha1)", hmac_sha1_tv_template, |
| 1348 | HMAC_SHA1_TEST_VECTORS); |
Jonathan Lynch | cd12fb9 | 2007-11-10 20:08:25 +0800 | [diff] [blame] | 1349 | test_hash("hmac(sha224)", hmac_sha224_tv_template, |
| 1350 | HMAC_SHA224_TEST_VECTORS); |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1351 | test_hash("hmac(sha256)", hmac_sha256_tv_template, |
| 1352 | HMAC_SHA256_TEST_VECTORS); |
Andrew Donofrio | a28091a | 2006-12-10 12:10:20 +1100 | [diff] [blame] | 1353 | test_hash("hmac(sha384)", hmac_sha384_tv_template, |
| 1354 | HMAC_SHA384_TEST_VECTORS); |
| 1355 | test_hash("hmac(sha512)", hmac_sha512_tv_template, |
| 1356 | HMAC_SHA512_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | |
Kazunori MIYAZAWA | 5b2becf | 2006-10-28 13:18:53 +1000 | [diff] [blame] | 1358 | test_hash("xcbc(aes)", aes_xcbc128_tv_template, |
| 1359 | XCBC_AES_TEST_VECTORS); |
| 1360 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | test_hash("michael_mic", michael_mic_tv_template, MICHAEL_MIC_TEST_VECTORS); |
| 1362 | break; |
| 1363 | |
| 1364 | case 1: |
| 1365 | test_hash("md5", md5_tv_template, MD5_TEST_VECTORS); |
| 1366 | break; |
| 1367 | |
| 1368 | case 2: |
| 1369 | test_hash("sha1", sha1_tv_template, SHA1_TEST_VECTORS); |
| 1370 | break; |
| 1371 | |
| 1372 | case 3: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1373 | test_cipher("ecb(des)", ENCRYPT, des_enc_tv_template, |
| 1374 | DES_ENC_TEST_VECTORS); |
| 1375 | test_cipher("ecb(des)", DECRYPT, des_dec_tv_template, |
| 1376 | DES_DEC_TEST_VECTORS); |
| 1377 | test_cipher("cbc(des)", ENCRYPT, des_cbc_enc_tv_template, |
| 1378 | DES_CBC_ENC_TEST_VECTORS); |
| 1379 | test_cipher("cbc(des)", DECRYPT, des_cbc_dec_tv_template, |
| 1380 | DES_CBC_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | break; |
| 1382 | |
| 1383 | case 4: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1384 | test_cipher("ecb(des3_ede)", ENCRYPT, des3_ede_enc_tv_template, |
| 1385 | DES3_EDE_ENC_TEST_VECTORS); |
| 1386 | test_cipher("ecb(des3_ede)", DECRYPT, des3_ede_dec_tv_template, |
| 1387 | DES3_EDE_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | break; |
| 1389 | |
| 1390 | case 5: |
| 1391 | test_hash("md4", md4_tv_template, MD4_TEST_VECTORS); |
| 1392 | break; |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | case 6: |
| 1395 | test_hash("sha256", sha256_tv_template, SHA256_TEST_VECTORS); |
| 1396 | break; |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | case 7: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1399 | test_cipher("ecb(blowfish)", ENCRYPT, bf_enc_tv_template, |
| 1400 | BF_ENC_TEST_VECTORS); |
| 1401 | test_cipher("ecb(blowfish)", DECRYPT, bf_dec_tv_template, |
| 1402 | BF_DEC_TEST_VECTORS); |
| 1403 | test_cipher("cbc(blowfish)", ENCRYPT, bf_cbc_enc_tv_template, |
| 1404 | BF_CBC_ENC_TEST_VECTORS); |
| 1405 | test_cipher("cbc(blowfish)", DECRYPT, bf_cbc_dec_tv_template, |
| 1406 | BF_CBC_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | break; |
| 1408 | |
| 1409 | case 8: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1410 | test_cipher("ecb(twofish)", ENCRYPT, tf_enc_tv_template, |
| 1411 | TF_ENC_TEST_VECTORS); |
| 1412 | test_cipher("ecb(twofish)", DECRYPT, tf_dec_tv_template, |
| 1413 | TF_DEC_TEST_VECTORS); |
| 1414 | test_cipher("cbc(twofish)", ENCRYPT, tf_cbc_enc_tv_template, |
| 1415 | TF_CBC_ENC_TEST_VECTORS); |
| 1416 | test_cipher("cbc(twofish)", DECRYPT, tf_cbc_dec_tv_template, |
| 1417 | TF_CBC_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | break; |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1419 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | case 9: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1421 | test_cipher("ecb(serpent)", ENCRYPT, serpent_enc_tv_template, |
| 1422 | SERPENT_ENC_TEST_VECTORS); |
| 1423 | test_cipher("ecb(serpent)", DECRYPT, serpent_dec_tv_template, |
| 1424 | SERPENT_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | break; |
| 1426 | |
| 1427 | case 10: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1428 | test_cipher("ecb(aes)", ENCRYPT, aes_enc_tv_template, |
| 1429 | AES_ENC_TEST_VECTORS); |
| 1430 | test_cipher("ecb(aes)", DECRYPT, aes_dec_tv_template, |
| 1431 | AES_DEC_TEST_VECTORS); |
| 1432 | test_cipher("cbc(aes)", ENCRYPT, aes_cbc_enc_tv_template, |
| 1433 | AES_CBC_ENC_TEST_VECTORS); |
| 1434 | test_cipher("cbc(aes)", DECRYPT, aes_cbc_dec_tv_template, |
| 1435 | AES_CBC_DEC_TEST_VECTORS); |
Rik Snel | f3d1044 | 2006-11-29 19:01:41 +1100 | [diff] [blame] | 1436 | test_cipher("lrw(aes)", ENCRYPT, aes_lrw_enc_tv_template, |
| 1437 | AES_LRW_ENC_TEST_VECTORS); |
| 1438 | test_cipher("lrw(aes)", DECRYPT, aes_lrw_dec_tv_template, |
| 1439 | AES_LRW_DEC_TEST_VECTORS); |
Rik Snel | f19f511 | 2007-09-19 20:23:13 +0800 | [diff] [blame] | 1440 | test_cipher("xts(aes)", ENCRYPT, aes_xts_enc_tv_template, |
| 1441 | AES_XTS_ENC_TEST_VECTORS); |
| 1442 | test_cipher("xts(aes)", DECRYPT, aes_xts_dec_tv_template, |
| 1443 | AES_XTS_DEC_TEST_VECTORS); |
Herbert Xu | 5311f24 | 2007-12-17 21:34:32 +0800 | [diff] [blame] | 1444 | test_cipher("rfc3686(ctr(aes))", ENCRYPT, aes_ctr_enc_tv_template, |
Joy Latten | 23e353c | 2007-10-23 08:50:32 +0800 | [diff] [blame] | 1445 | AES_CTR_ENC_TEST_VECTORS); |
Herbert Xu | 5311f24 | 2007-12-17 21:34:32 +0800 | [diff] [blame] | 1446 | test_cipher("rfc3686(ctr(aes))", DECRYPT, aes_ctr_dec_tv_template, |
Joy Latten | 23e353c | 2007-10-23 08:50:32 +0800 | [diff] [blame] | 1447 | AES_CTR_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | break; |
| 1449 | |
| 1450 | case 11: |
| 1451 | test_hash("sha384", sha384_tv_template, SHA384_TEST_VECTORS); |
| 1452 | break; |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1454 | case 12: |
| 1455 | test_hash("sha512", sha512_tv_template, SHA512_TEST_VECTORS); |
| 1456 | break; |
| 1457 | |
| 1458 | case 13: |
Zoltan Sogor | 91755a9 | 2007-12-07 16:48:11 +0800 | [diff] [blame] | 1459 | test_comp("deflate", deflate_comp_tv_template, |
| 1460 | deflate_decomp_tv_template, DEFLATE_COMP_TEST_VECTORS, |
| 1461 | DEFLATE_DECOMP_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | break; |
| 1463 | |
| 1464 | case 14: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1465 | test_cipher("ecb(cast5)", ENCRYPT, cast5_enc_tv_template, |
| 1466 | CAST5_ENC_TEST_VECTORS); |
| 1467 | test_cipher("ecb(cast5)", DECRYPT, cast5_dec_tv_template, |
| 1468 | CAST5_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | break; |
| 1470 | |
| 1471 | case 15: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1472 | test_cipher("ecb(cast6)", ENCRYPT, cast6_enc_tv_template, |
| 1473 | CAST6_ENC_TEST_VECTORS); |
| 1474 | test_cipher("ecb(cast6)", DECRYPT, cast6_dec_tv_template, |
| 1475 | CAST6_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | break; |
| 1477 | |
| 1478 | case 16: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1479 | test_cipher("ecb(arc4)", ENCRYPT, arc4_enc_tv_template, |
| 1480 | ARC4_ENC_TEST_VECTORS); |
| 1481 | test_cipher("ecb(arc4)", DECRYPT, arc4_dec_tv_template, |
| 1482 | ARC4_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | break; |
| 1484 | |
| 1485 | case 17: |
| 1486 | test_hash("michael_mic", michael_mic_tv_template, MICHAEL_MIC_TEST_VECTORS); |
| 1487 | break; |
| 1488 | |
| 1489 | case 18: |
Herbert Xu | c907ee7 | 2006-08-21 22:04:03 +1000 | [diff] [blame] | 1490 | test_hash("crc32c", crc32c_tv_template, CRC32C_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | break; |
| 1492 | |
| 1493 | case 19: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1494 | test_cipher("ecb(tea)", ENCRYPT, tea_enc_tv_template, |
| 1495 | TEA_ENC_TEST_VECTORS); |
| 1496 | test_cipher("ecb(tea)", DECRYPT, tea_dec_tv_template, |
| 1497 | TEA_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | break; |
| 1499 | |
| 1500 | case 20: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1501 | test_cipher("ecb(xtea)", ENCRYPT, xtea_enc_tv_template, |
| 1502 | XTEA_ENC_TEST_VECTORS); |
| 1503 | test_cipher("ecb(xtea)", DECRYPT, xtea_dec_tv_template, |
| 1504 | XTEA_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | break; |
| 1506 | |
| 1507 | case 21: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1508 | test_cipher("ecb(khazad)", ENCRYPT, khazad_enc_tv_template, |
| 1509 | KHAZAD_ENC_TEST_VECTORS); |
| 1510 | test_cipher("ecb(khazad)", DECRYPT, khazad_dec_tv_template, |
| 1511 | KHAZAD_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | break; |
| 1513 | |
| 1514 | case 22: |
| 1515 | test_hash("wp512", wp512_tv_template, WP512_TEST_VECTORS); |
| 1516 | break; |
| 1517 | |
| 1518 | case 23: |
| 1519 | test_hash("wp384", wp384_tv_template, WP384_TEST_VECTORS); |
| 1520 | break; |
| 1521 | |
| 1522 | case 24: |
| 1523 | test_hash("wp256", wp256_tv_template, WP256_TEST_VECTORS); |
| 1524 | break; |
| 1525 | |
| 1526 | case 25: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1527 | test_cipher("ecb(tnepres)", ENCRYPT, tnepres_enc_tv_template, |
| 1528 | TNEPRES_ENC_TEST_VECTORS); |
| 1529 | test_cipher("ecb(tnepres)", DECRYPT, tnepres_dec_tv_template, |
| 1530 | TNEPRES_DEC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | break; |
| 1532 | |
| 1533 | case 26: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1534 | test_cipher("ecb(anubis)", ENCRYPT, anubis_enc_tv_template, |
| 1535 | ANUBIS_ENC_TEST_VECTORS); |
| 1536 | test_cipher("ecb(anubis)", DECRYPT, anubis_dec_tv_template, |
| 1537 | ANUBIS_DEC_TEST_VECTORS); |
| 1538 | test_cipher("cbc(anubis)", ENCRYPT, anubis_cbc_enc_tv_template, |
| 1539 | ANUBIS_CBC_ENC_TEST_VECTORS); |
| 1540 | test_cipher("cbc(anubis)", DECRYPT, anubis_cbc_dec_tv_template, |
| 1541 | ANUBIS_CBC_ENC_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1542 | break; |
| 1543 | |
| 1544 | case 27: |
| 1545 | test_hash("tgr192", tgr192_tv_template, TGR192_TEST_VECTORS); |
| 1546 | break; |
| 1547 | |
| 1548 | case 28: |
| 1549 | |
| 1550 | test_hash("tgr160", tgr160_tv_template, TGR160_TEST_VECTORS); |
| 1551 | break; |
| 1552 | |
| 1553 | case 29: |
| 1554 | test_hash("tgr128", tgr128_tv_template, TGR128_TEST_VECTORS); |
| 1555 | break; |
Aaron Grothe | fb4f10e | 2005-09-01 17:42:46 -0700 | [diff] [blame] | 1556 | |
| 1557 | case 30: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1558 | test_cipher("ecb(xeta)", ENCRYPT, xeta_enc_tv_template, |
| 1559 | XETA_ENC_TEST_VECTORS); |
| 1560 | test_cipher("ecb(xeta)", DECRYPT, xeta_dec_tv_template, |
| 1561 | XETA_DEC_TEST_VECTORS); |
Aaron Grothe | fb4f10e | 2005-09-01 17:42:46 -0700 | [diff] [blame] | 1562 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | |
David Howells | 9083163 | 2006-12-16 12:13:14 +1100 | [diff] [blame] | 1564 | case 31: |
| 1565 | test_cipher("pcbc(fcrypt)", ENCRYPT, fcrypt_pcbc_enc_tv_template, |
| 1566 | FCRYPT_ENC_TEST_VECTORS); |
| 1567 | test_cipher("pcbc(fcrypt)", DECRYPT, fcrypt_pcbc_dec_tv_template, |
| 1568 | FCRYPT_DEC_TEST_VECTORS); |
| 1569 | break; |
| 1570 | |
Noriaki TAKAMIYA | 02ab5a7 | 2007-01-24 21:48:19 +1100 | [diff] [blame] | 1571 | case 32: |
| 1572 | test_cipher("ecb(camellia)", ENCRYPT, |
| 1573 | camellia_enc_tv_template, |
| 1574 | CAMELLIA_ENC_TEST_VECTORS); |
| 1575 | test_cipher("ecb(camellia)", DECRYPT, |
| 1576 | camellia_dec_tv_template, |
| 1577 | CAMELLIA_DEC_TEST_VECTORS); |
| 1578 | test_cipher("cbc(camellia)", ENCRYPT, |
| 1579 | camellia_cbc_enc_tv_template, |
| 1580 | CAMELLIA_CBC_ENC_TEST_VECTORS); |
| 1581 | test_cipher("cbc(camellia)", DECRYPT, |
| 1582 | camellia_cbc_dec_tv_template, |
| 1583 | CAMELLIA_CBC_DEC_TEST_VECTORS); |
| 1584 | break; |
Jonathan Lynch | cd12fb9 | 2007-11-10 20:08:25 +0800 | [diff] [blame] | 1585 | case 33: |
| 1586 | test_hash("sha224", sha224_tv_template, SHA224_TEST_VECTORS); |
| 1587 | break; |
Noriaki TAKAMIYA | 02ab5a7 | 2007-01-24 21:48:19 +1100 | [diff] [blame] | 1588 | |
Tan Swee Heng | 2407d60 | 2007-11-23 19:45:00 +0800 | [diff] [blame] | 1589 | case 34: |
| 1590 | test_cipher("salsa20", ENCRYPT, |
| 1591 | salsa20_stream_enc_tv_template, |
| 1592 | SALSA20_STREAM_ENC_TEST_VECTORS); |
| 1593 | break; |
| 1594 | |
Herbert Xu | 8df213d | 2007-12-02 14:55:47 +1100 | [diff] [blame] | 1595 | case 35: |
| 1596 | test_aead("gcm(aes)", ENCRYPT, aes_gcm_enc_tv_template, |
| 1597 | AES_GCM_ENC_TEST_VECTORS); |
| 1598 | test_aead("gcm(aes)", DECRYPT, aes_gcm_dec_tv_template, |
| 1599 | AES_GCM_DEC_TEST_VECTORS); |
| 1600 | break; |
| 1601 | |
Zoltan Sogor | 0b77abb | 2007-12-07 16:53:23 +0800 | [diff] [blame] | 1602 | case 36: |
| 1603 | test_comp("lzo", lzo_comp_tv_template, lzo_decomp_tv_template, |
| 1604 | LZO_COMP_TEST_VECTORS, LZO_DECOMP_TEST_VECTORS); |
| 1605 | break; |
| 1606 | |
Joy Latten | 93cc74e | 2007-12-12 20:24:22 +0800 | [diff] [blame] | 1607 | case 37: |
| 1608 | test_aead("ccm(aes)", ENCRYPT, aes_ccm_enc_tv_template, |
| 1609 | AES_CCM_ENC_TEST_VECTORS); |
| 1610 | test_aead("ccm(aes)", DECRYPT, aes_ccm_dec_tv_template, |
| 1611 | AES_CCM_DEC_TEST_VECTORS); |
| 1612 | break; |
| 1613 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | case 100: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1615 | test_hash("hmac(md5)", hmac_md5_tv_template, |
| 1616 | HMAC_MD5_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | break; |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | case 101: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1620 | test_hash("hmac(sha1)", hmac_sha1_tv_template, |
| 1621 | HMAC_SHA1_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | break; |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1623 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | case 102: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1625 | test_hash("hmac(sha256)", hmac_sha256_tv_template, |
| 1626 | HMAC_SHA256_TEST_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | break; |
| 1628 | |
Andrew Donofrio | a28091a | 2006-12-10 12:10:20 +1100 | [diff] [blame] | 1629 | case 103: |
| 1630 | test_hash("hmac(sha384)", hmac_sha384_tv_template, |
| 1631 | HMAC_SHA384_TEST_VECTORS); |
| 1632 | break; |
| 1633 | |
| 1634 | case 104: |
| 1635 | test_hash("hmac(sha512)", hmac_sha512_tv_template, |
| 1636 | HMAC_SHA512_TEST_VECTORS); |
| 1637 | break; |
Herbert Xu | 38ed9ab | 2008-01-01 15:59:28 +1100 | [diff] [blame] | 1638 | |
Jonathan Lynch | cd12fb9 | 2007-11-10 20:08:25 +0800 | [diff] [blame] | 1639 | case 105: |
| 1640 | test_hash("hmac(sha224)", hmac_sha224_tv_template, |
| 1641 | HMAC_SHA224_TEST_VECTORS); |
| 1642 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | |
Herbert Xu | 38ed9ab | 2008-01-01 15:59:28 +1100 | [diff] [blame] | 1644 | case 106: |
| 1645 | test_hash("xcbc(aes)", aes_xcbc128_tv_template, |
| 1646 | XCBC_AES_TEST_VECTORS); |
| 1647 | break; |
| 1648 | |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 1649 | case 200: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1650 | test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1651 | speed_template_16_24_32); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1652 | test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1653 | speed_template_16_24_32); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1654 | test_cipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1655 | speed_template_16_24_32); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1656 | test_cipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1657 | speed_template_16_24_32); |
Rik Snel | f3d1044 | 2006-11-29 19:01:41 +1100 | [diff] [blame] | 1658 | test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1659 | speed_template_32_40_48); |
Rik Snel | f3d1044 | 2006-11-29 19:01:41 +1100 | [diff] [blame] | 1660 | test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1661 | speed_template_32_40_48); |
Rik Snel | f19f511 | 2007-09-19 20:23:13 +0800 | [diff] [blame] | 1662 | test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1663 | speed_template_32_48_64); |
Rik Snel | f19f511 | 2007-09-19 20:23:13 +0800 | [diff] [blame] | 1664 | test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1665 | speed_template_32_48_64); |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 1666 | break; |
| 1667 | |
| 1668 | case 201: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1669 | test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1670 | des3_ede_enc_tv_template, DES3_EDE_ENC_TEST_VECTORS, |
| 1671 | speed_template_24); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1672 | test_cipher_speed("ecb(des3_ede)", DECRYPT, sec, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1673 | des3_ede_enc_tv_template, DES3_EDE_ENC_TEST_VECTORS, |
| 1674 | speed_template_24); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1675 | test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1676 | des3_ede_enc_tv_template, DES3_EDE_ENC_TEST_VECTORS, |
| 1677 | speed_template_24); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1678 | test_cipher_speed("cbc(des3_ede)", DECRYPT, sec, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1679 | des3_ede_enc_tv_template, DES3_EDE_ENC_TEST_VECTORS, |
| 1680 | speed_template_24); |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 1681 | break; |
| 1682 | |
| 1683 | case 202: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1684 | test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1685 | speed_template_16_24_32); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1686 | test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1687 | speed_template_16_24_32); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1688 | test_cipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1689 | speed_template_16_24_32); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1690 | test_cipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1691 | speed_template_16_24_32); |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 1692 | break; |
| 1693 | |
| 1694 | case 203: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1695 | test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1696 | speed_template_8_32); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1697 | test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1698 | speed_template_8_32); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1699 | test_cipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1700 | speed_template_8_32); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1701 | test_cipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1702 | speed_template_8_32); |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 1703 | break; |
| 1704 | |
| 1705 | case 204: |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1706 | test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1707 | speed_template_8); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1708 | test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1709 | speed_template_8); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1710 | test_cipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1711 | speed_template_8); |
Herbert Xu | cba8356 | 2006-08-13 08:26:09 +1000 | [diff] [blame] | 1712 | test_cipher_speed("cbc(des)", DECRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1713 | speed_template_8); |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 1714 | break; |
| 1715 | |
Noriaki TAKAMIYA | 02ab5a7 | 2007-01-24 21:48:19 +1100 | [diff] [blame] | 1716 | case 205: |
| 1717 | test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1718 | speed_template_16_24_32); |
Noriaki TAKAMIYA | 02ab5a7 | 2007-01-24 21:48:19 +1100 | [diff] [blame] | 1719 | test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1720 | speed_template_16_24_32); |
Noriaki TAKAMIYA | 02ab5a7 | 2007-01-24 21:48:19 +1100 | [diff] [blame] | 1721 | test_cipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1722 | speed_template_16_24_32); |
Noriaki TAKAMIYA | 02ab5a7 | 2007-01-24 21:48:19 +1100 | [diff] [blame] | 1723 | test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1724 | speed_template_16_24_32); |
Noriaki TAKAMIYA | 02ab5a7 | 2007-01-24 21:48:19 +1100 | [diff] [blame] | 1725 | break; |
| 1726 | |
Tan Swee Heng | 5de8f1b | 2007-12-07 17:17:43 +0800 | [diff] [blame] | 1727 | case 206: |
| 1728 | test_cipher_speed("salsa20", ENCRYPT, sec, NULL, 0, |
Sebastian Siewior | 477035c | 2008-03-11 21:24:26 +0800 | [diff] [blame] | 1729 | speed_template_16_32); |
Tan Swee Heng | 5de8f1b | 2007-12-07 17:17:43 +0800 | [diff] [blame] | 1730 | break; |
| 1731 | |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1732 | case 300: |
| 1733 | /* fall through */ |
| 1734 | |
| 1735 | case 301: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1736 | test_hash_speed("md4", sec, generic_hash_speed_template); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1737 | if (mode > 300 && mode < 400) break; |
| 1738 | |
| 1739 | case 302: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1740 | test_hash_speed("md5", sec, generic_hash_speed_template); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1741 | if (mode > 300 && mode < 400) break; |
| 1742 | |
| 1743 | case 303: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1744 | test_hash_speed("sha1", sec, generic_hash_speed_template); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1745 | if (mode > 300 && mode < 400) break; |
| 1746 | |
| 1747 | case 304: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1748 | test_hash_speed("sha256", sec, generic_hash_speed_template); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1749 | if (mode > 300 && mode < 400) break; |
| 1750 | |
| 1751 | case 305: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1752 | test_hash_speed("sha384", sec, generic_hash_speed_template); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1753 | if (mode > 300 && mode < 400) break; |
| 1754 | |
| 1755 | case 306: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1756 | test_hash_speed("sha512", sec, generic_hash_speed_template); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1757 | if (mode > 300 && mode < 400) break; |
| 1758 | |
| 1759 | case 307: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1760 | test_hash_speed("wp256", sec, generic_hash_speed_template); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1761 | if (mode > 300 && mode < 400) break; |
| 1762 | |
| 1763 | case 308: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1764 | test_hash_speed("wp384", sec, generic_hash_speed_template); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1765 | if (mode > 300 && mode < 400) break; |
| 1766 | |
| 1767 | case 309: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1768 | test_hash_speed("wp512", sec, generic_hash_speed_template); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1769 | if (mode > 300 && mode < 400) break; |
| 1770 | |
| 1771 | case 310: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1772 | test_hash_speed("tgr128", sec, generic_hash_speed_template); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1773 | if (mode > 300 && mode < 400) break; |
| 1774 | |
| 1775 | case 311: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1776 | test_hash_speed("tgr160", sec, generic_hash_speed_template); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1777 | if (mode > 300 && mode < 400) break; |
| 1778 | |
| 1779 | case 312: |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 1780 | test_hash_speed("tgr192", sec, generic_hash_speed_template); |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1781 | if (mode > 300 && mode < 400) break; |
| 1782 | |
Jonathan Lynch | cd12fb9 | 2007-11-10 20:08:25 +0800 | [diff] [blame] | 1783 | case 313: |
| 1784 | test_hash_speed("sha224", sec, generic_hash_speed_template); |
| 1785 | if (mode > 300 && mode < 400) break; |
| 1786 | |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 1787 | case 399: |
| 1788 | break; |
| 1789 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | case 1000: |
| 1791 | test_available(); |
| 1792 | break; |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | default: |
| 1795 | /* useful for debugging */ |
| 1796 | printk("not testing anything\n"); |
| 1797 | break; |
| 1798 | } |
| 1799 | } |
| 1800 | |
Herbert Xu | ef2736f | 2005-06-22 13:26:03 -0700 | [diff] [blame] | 1801 | static int __init init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | { |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 1803 | int err = -ENOMEM; |
| 1804 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | tvmem = kmalloc(TVMEMSIZE, GFP_KERNEL); |
| 1806 | if (tvmem == NULL) |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 1807 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | |
| 1809 | xbuf = kmalloc(XBUFSIZE, GFP_KERNEL); |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 1810 | if (xbuf == NULL) |
| 1811 | goto err_free_tv; |
| 1812 | |
| 1813 | axbuf = kmalloc(XBUFSIZE, GFP_KERNEL); |
| 1814 | if (axbuf == NULL) |
| 1815 | goto err_free_xbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1816 | |
| 1817 | do_test(); |
| 1818 | |
Michal Ludvig | 14fdf47 | 2006-05-30 14:49:38 +1000 | [diff] [blame] | 1819 | /* We intentionaly return -EAGAIN to prevent keeping |
| 1820 | * the module. It does all its work from init() |
| 1821 | * and doesn't offer any runtime functionality |
| 1822 | * => we don't need it in the memory, do we? |
| 1823 | * -- mludvig |
| 1824 | */ |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 1825 | err = -EAGAIN; |
| 1826 | |
| 1827 | kfree(axbuf); |
| 1828 | err_free_xbuf: |
| 1829 | kfree(xbuf); |
| 1830 | err_free_tv: |
| 1831 | kfree(tvmem); |
| 1832 | |
| 1833 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | } |
| 1835 | |
| 1836 | /* |
| 1837 | * If an init function is provided, an exit function must also be provided |
| 1838 | * to allow module unload. |
| 1839 | */ |
| 1840 | static void __exit fini(void) { } |
| 1841 | |
| 1842 | module_init(init); |
| 1843 | module_exit(fini); |
| 1844 | |
| 1845 | module_param(mode, int, 0); |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 1846 | module_param(sec, uint, 0); |
Herbert Xu | 6a17944 | 2005-06-22 13:29:03 -0700 | [diff] [blame] | 1847 | MODULE_PARM_DESC(sec, "Length in seconds of speed tests " |
| 1848 | "(defaults to zero which uses CPU cycles instead)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | |
| 1850 | MODULE_LICENSE("GPL"); |
| 1851 | MODULE_DESCRIPTION("Quick & dirty crypto testing module"); |
| 1852 | MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>"); |