module: reduce symbol table for loaded modules (v2)
[linux-block.git] / crypto / tcrypt.h
CommitLineData
1da177e4
LT
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>
e3a4ea4f 9 * Copyright (c) 2007 Nokia Siemens Networks
1da177e4
LT
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
ef2736fc 13 * Software Foundation; either version 2 of the License, or (at your option)
1da177e4
LT
14 * any later version.
15 *
1da177e4
LT
16 */
17#ifndef _CRYPTO_TCRYPT_H
18#define _CRYPTO_TCRYPT_H
19
da7f033d
HX
20struct cipher_speed_template {
21 const char *key;
22 unsigned int klen;
e3a4ea4f
MH
23};
24
e9d41164 25struct hash_speed {
e8057928
ML
26 unsigned int blen; /* buffer length */
27 unsigned int plen; /* per-update length */
28};
29
1da177e4
LT
30/*
31 * DES test vectors.
32 */
da7f033d 33#define DES3_SPEED_VECTORS 1
1da177e4 34
da7f033d 35static struct cipher_speed_template des3_speed_template[] = {
1da177e4 36 {
de224c30 37 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
da7f033d 38 "\x55\x55\x55\x55\x55\x55\x55\x55"
de224c30 39 "\xfe\xdc\xba\x98\x76\x54\x32\x10",
02ab5a70 40 .klen = 24,
e2ee95b8
HSC
41 }
42};
43
ebfd9bcf
HW
44/*
45 * Cipher speed tests
46 */
d5dc3927
SS
47static u8 speed_template_8[] = {8, 0};
48static u8 speed_template_24[] = {24, 0};
49static u8 speed_template_8_32[] = {8, 32, 0};
50static u8 speed_template_16_32[] = {16, 32, 0};
51static u8 speed_template_16_24_32[] = {16, 24, 32, 0};
52static u8 speed_template_32_40_48[] = {32, 40, 48, 0};
53static u8 speed_template_32_48_64[] = {32, 48, 64, 0};
f19f5111 54
e8057928
ML
55/*
56 * Digest speed tests
57 */
e9d41164 58static struct hash_speed generic_hash_speed_template[] = {
de224c30 59 { .blen = 16, .plen = 16, },
e8057928
ML
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
1da177e4 86#endif /* _CRYPTO_TCRYPT_H */