fork: report pid reservation failure properly
[linux-2.6-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
53f52d7a
TC
25struct aead_speed_template {
26 const char *key;
27 unsigned int klen;
28};
29
e9d41164 30struct hash_speed {
e8057928
ML
31 unsigned int blen; /* buffer length */
32 unsigned int plen; /* per-update length */
18bcc919 33 unsigned int klen; /* key length */
e8057928
ML
34};
35
1da177e4
LT
36/*
37 * DES test vectors.
38 */
da7f033d 39#define DES3_SPEED_VECTORS 1
1da177e4 40
da7f033d 41static struct cipher_speed_template des3_speed_template[] = {
1da177e4 42 {
de224c30 43 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
da7f033d 44 "\x55\x55\x55\x55\x55\x55\x55\x55"
de224c30 45 "\xfe\xdc\xba\x98\x76\x54\x32\x10",
02ab5a70 46 .klen = 24,
e2ee95b8
HSC
47 }
48};
49
ebfd9bcf
HW
50/*
51 * Cipher speed tests
52 */
d5dc3927
SS
53static u8 speed_template_8[] = {8, 0};
54static u8 speed_template_24[] = {24, 0};
a2c58260 55static u8 speed_template_8_16[] = {8, 16, 0};
d5dc3927
SS
56static u8 speed_template_8_32[] = {8, 32, 0};
57static u8 speed_template_16_32[] = {16, 32, 0};
58static u8 speed_template_16_24_32[] = {16, 24, 32, 0};
69d3150c 59static u8 speed_template_20_28_36[] = {20, 28, 36, 0};
d5dc3927 60static u8 speed_template_32_40_48[] = {32, 40, 48, 0};
87aae4bf 61static u8 speed_template_32_48[] = {32, 48, 0};
d5dc3927 62static u8 speed_template_32_48_64[] = {32, 48, 64, 0};
5209c07a 63static u8 speed_template_32_64[] = {32, 64, 0};
f19f5111 64
53f52d7a
TC
65/*
66 * AEAD speed tests
67 */
68static u8 aead_speed_template_20[] = {20, 0};
69
e8057928
ML
70/*
71 * Digest speed tests
72 */
e9d41164 73static struct hash_speed generic_hash_speed_template[] = {
de224c30 74 { .blen = 16, .plen = 16, },
e8057928
ML
75 { .blen = 64, .plen = 16, },
76 { .blen = 64, .plen = 64, },
77 { .blen = 256, .plen = 16, },
78 { .blen = 256, .plen = 64, },
79 { .blen = 256, .plen = 256, },
80 { .blen = 1024, .plen = 16, },
81 { .blen = 1024, .plen = 256, },
82 { .blen = 1024, .plen = 1024, },
83 { .blen = 2048, .plen = 16, },
84 { .blen = 2048, .plen = 256, },
85 { .blen = 2048, .plen = 1024, },
86 { .blen = 2048, .plen = 2048, },
87 { .blen = 4096, .plen = 16, },
88 { .blen = 4096, .plen = 256, },
89 { .blen = 4096, .plen = 1024, },
90 { .blen = 4096, .plen = 4096, },
91 { .blen = 8192, .plen = 16, },
92 { .blen = 8192, .plen = 256, },
93 { .blen = 8192, .plen = 1024, },
94 { .blen = 8192, .plen = 4096, },
95 { .blen = 8192, .plen = 8192, },
96
97 /* End marker */
98 { .blen = 0, .plen = 0, }
99};
100
18bcc919
HY
101static struct hash_speed hash_speed_template_16[] = {
102 { .blen = 16, .plen = 16, .klen = 16, },
103 { .blen = 64, .plen = 16, .klen = 16, },
104 { .blen = 64, .plen = 64, .klen = 16, },
105 { .blen = 256, .plen = 16, .klen = 16, },
106 { .blen = 256, .plen = 64, .klen = 16, },
107 { .blen = 256, .plen = 256, .klen = 16, },
108 { .blen = 1024, .plen = 16, .klen = 16, },
109 { .blen = 1024, .plen = 256, .klen = 16, },
110 { .blen = 1024, .plen = 1024, .klen = 16, },
111 { .blen = 2048, .plen = 16, .klen = 16, },
112 { .blen = 2048, .plen = 256, .klen = 16, },
113 { .blen = 2048, .plen = 1024, .klen = 16, },
114 { .blen = 2048, .plen = 2048, .klen = 16, },
115 { .blen = 4096, .plen = 16, .klen = 16, },
116 { .blen = 4096, .plen = 256, .klen = 16, },
117 { .blen = 4096, .plen = 1024, .klen = 16, },
118 { .blen = 4096, .plen = 4096, .klen = 16, },
119 { .blen = 8192, .plen = 16, .klen = 16, },
120 { .blen = 8192, .plen = 256, .klen = 16, },
121 { .blen = 8192, .plen = 1024, .klen = 16, },
122 { .blen = 8192, .plen = 4096, .klen = 16, },
123 { .blen = 8192, .plen = 8192, .klen = 16, },
124
125 /* End marker */
126 { .blen = 0, .plen = 0, .klen = 0, }
127};
128
1da177e4 129#endif /* _CRYPTO_TCRYPT_H */