Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | */ |
| 17 | #ifndef _CRYPTO_TCRYPT_H |
| 18 | #define _CRYPTO_TCRYPT_H |
| 19 | |
Herbert Xu | da7f033 | 2008-07-31 17:08:25 +0800 | [diff] [blame] | 20 | struct cipher_speed_template { |
| 21 | const char *key; |
| 22 | unsigned int klen; |
Mikko Herranen | e3a4ea4 | 2007-11-26 22:12:07 +0800 | [diff] [blame] | 23 | }; |
| 24 | |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 25 | struct hash_speed { |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 26 | unsigned int blen; /* buffer length */ |
| 27 | unsigned int plen; /* per-update length */ |
| 28 | }; |
| 29 | |
Andrew Donofrio | a28091a | 2006-12-10 12:10:20 +1100 | [diff] [blame] | 30 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | * DES test vectors. |
| 32 | */ |
Herbert Xu | da7f033 | 2008-07-31 17:08:25 +0800 | [diff] [blame] | 33 | #define DES3_SPEED_VECTORS 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Herbert Xu | da7f033 | 2008-07-31 17:08:25 +0800 | [diff] [blame] | 35 | static struct cipher_speed_template des3_speed_template[] = { |
| 36 | { |
Sebastian Siewior | de224c3 | 2008-03-13 20:21:51 +0800 | [diff] [blame] | 37 | .key = "\x01\x23\x45\x67\x89\xab\xcd\xef" |
| 38 | "\x55\x55\x55\x55\x55\x55\x55\x55" |
| 39 | "\xfe\xdc\xba\x98\x76\x54\x32\x10", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | .klen = 24, |
Rik Snel | f3d1044 | 2006-11-29 19:01:41 +1100 | [diff] [blame] | 41 | } |
| 42 | }; |
| 43 | |
Herbert Xu | c907ee7 | 2006-08-21 22:04:03 +1000 | [diff] [blame] | 44 | /* |
Harald Welte | ebfd9bc | 2005-06-22 13:27:23 -0700 | [diff] [blame] | 45 | * Cipher speed tests |
| 46 | */ |
Sebastian Siewior | d5dc392 | 2008-03-11 21:27:11 +0800 | [diff] [blame] | 47 | static u8 speed_template_8[] = {8, 0}; |
| 48 | static u8 speed_template_24[] = {24, 0}; |
| 49 | static u8 speed_template_8_32[] = {8, 32, 0}; |
| 50 | static u8 speed_template_16_32[] = {16, 32, 0}; |
| 51 | static u8 speed_template_16_24_32[] = {16, 24, 32, 0}; |
| 52 | static u8 speed_template_32_40_48[] = {32, 40, 48, 0}; |
| 53 | static u8 speed_template_32_48_64[] = {32, 48, 64, 0}; |
Rik Snel | f19f511 | 2007-09-19 20:23:13 +0800 | [diff] [blame] | 54 | |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 55 | /* |
| 56 | * Digest speed tests |
| 57 | */ |
Herbert Xu | e9d4116 | 2006-08-19 21:38:49 +1000 | [diff] [blame] | 58 | static struct hash_speed generic_hash_speed_template[] = { |
Sebastian Siewior | de224c3 | 2008-03-13 20:21:51 +0800 | [diff] [blame] | 59 | { .blen = 16, .plen = 16, }, |
Michal Ludvig | e805792 | 2006-05-30 22:04:19 +1000 | [diff] [blame] | 60 | { .blen = 64, .plen = 16, }, |
| 61 | { .blen = 64, .plen = 64, }, |
| 62 | { .blen = 256, .plen = 16, }, |
| 63 | { .blen = 256, .plen = 64, }, |
| 64 | { .blen = 256, .plen = 256, }, |
| 65 | { .blen = 1024, .plen = 16, }, |
| 66 | { .blen = 1024, .plen = 256, }, |
| 67 | { .blen = 1024, .plen = 1024, }, |
| 68 | { .blen = 2048, .plen = 16, }, |
| 69 | { .blen = 2048, .plen = 256, }, |
| 70 | { .blen = 2048, .plen = 1024, }, |
| 71 | { .blen = 2048, .plen = 2048, }, |
| 72 | { .blen = 4096, .plen = 16, }, |
| 73 | { .blen = 4096, .plen = 256, }, |
| 74 | { .blen = 4096, .plen = 1024, }, |
| 75 | { .blen = 4096, .plen = 4096, }, |
| 76 | { .blen = 8192, .plen = 16, }, |
| 77 | { .blen = 8192, .plen = 256, }, |
| 78 | { .blen = 8192, .plen = 1024, }, |
| 79 | { .blen = 8192, .plen = 4096, }, |
| 80 | { .blen = 8192, .plen = 8192, }, |
| 81 | |
| 82 | /* End marker */ |
| 83 | { .blen = 0, .plen = 0, } |
| 84 | }; |
| 85 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | #endif /* _CRYPTO_TCRYPT_H */ |