blob: 526f00a9c72feba6acd49b42f0281a79944657e5 [file] [log] [blame]
Herbert Xuda7f0332008-07-31 17:08:25 +08001/*
2 * Algorithm testing framework and tests.
3 *
4 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
5 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
6 * Copyright (c) 2007 Nokia Siemens Networks
7 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
12 * any later version.
13 *
14 */
15#ifndef _CRYPTO_TESTMGR_H
16#define _CRYPTO_TESTMGR_H
17
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +080018#include <linux/netlink.h>
19#include <linux/zlib.h>
20
Geert Uytterhoeven8064efb2009-03-04 15:08:03 +080021#include <crypto/compress.h>
22
Herbert Xuda7f0332008-07-31 17:08:25 +080023#define MAX_DIGEST_SIZE 64
24#define MAX_TAP 8
25
26#define MAX_KEYLEN 56
27#define MAX_IVLEN 32
28
29struct hash_testvec {
30 /* only used with keyed hash algorithms */
31 char *key;
32 char *plaintext;
33 char *digest;
34 unsigned char tap[MAX_TAP];
35 unsigned char psize;
36 unsigned char np;
37 unsigned char ksize;
38};
39
40struct cipher_testvec {
41 char *key;
42 char *iv;
43 char *input;
44 char *result;
45 unsigned short tap[MAX_TAP];
46 int np;
47 unsigned char fail;
48 unsigned char wk; /* weak key flag */
49 unsigned char klen;
50 unsigned short ilen;
51 unsigned short rlen;
52};
53
54struct aead_testvec {
55 char *key;
56 char *iv;
57 char *input;
58 char *assoc;
59 char *result;
60 unsigned char tap[MAX_TAP];
61 unsigned char atap[MAX_TAP];
62 int np;
63 int anp;
64 unsigned char fail;
65 unsigned char wk; /* weak key flag */
66 unsigned char klen;
67 unsigned short ilen;
68 unsigned short alen;
69 unsigned short rlen;
70};
71
72static char zeroed_string[48];
73
74/*
75 * MD4 test vectors from RFC1320
76 */
77#define MD4_TEST_VECTORS 7
78
79static struct hash_testvec md4_tv_template [] = {
80 {
81 .plaintext = "",
82 .digest = "\x31\xd6\xcf\xe0\xd1\x6a\xe9\x31"
83 "\xb7\x3c\x59\xd7\xe0\xc0\x89\xc0",
84 }, {
85 .plaintext = "a",
86 .psize = 1,
87 .digest = "\xbd\xe5\x2c\xb3\x1d\xe3\x3e\x46"
88 "\x24\x5e\x05\xfb\xdb\xd6\xfb\x24",
89 }, {
90 .plaintext = "abc",
91 .psize = 3,
92 .digest = "\xa4\x48\x01\x7a\xaf\x21\xd8\x52"
93 "\x5f\xc1\x0a\xe8\x7a\xa6\x72\x9d",
94 }, {
95 .plaintext = "message digest",
96 .psize = 14,
97 .digest = "\xd9\x13\x0a\x81\x64\x54\x9f\xe8"
98 "\x18\x87\x48\x06\xe1\xc7\x01\x4b",
99 }, {
100 .plaintext = "abcdefghijklmnopqrstuvwxyz",
101 .psize = 26,
102 .digest = "\xd7\x9e\x1c\x30\x8a\xa5\xbb\xcd"
103 "\xee\xa8\xed\x63\xdf\x41\x2d\xa9",
104 .np = 2,
105 .tap = { 13, 13 },
106 }, {
107 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
108 .psize = 62,
109 .digest = "\x04\x3f\x85\x82\xf2\x41\xdb\x35"
110 "\x1c\xe6\x27\xe1\x53\xe7\xf0\xe4",
111 }, {
112 .plaintext = "123456789012345678901234567890123456789012345678901234567890123"
113 "45678901234567890",
114 .psize = 80,
115 .digest = "\xe3\x3b\x4d\xdc\x9c\x38\xf2\x19"
116 "\x9c\x3e\x7b\x16\x4f\xcc\x05\x36",
117 },
118};
119
120/*
121 * MD5 test vectors from RFC1321
122 */
123#define MD5_TEST_VECTORS 7
124
125static struct hash_testvec md5_tv_template[] = {
126 {
127 .digest = "\xd4\x1d\x8c\xd9\x8f\x00\xb2\x04"
128 "\xe9\x80\x09\x98\xec\xf8\x42\x7e",
129 }, {
130 .plaintext = "a",
131 .psize = 1,
132 .digest = "\x0c\xc1\x75\xb9\xc0\xf1\xb6\xa8"
133 "\x31\xc3\x99\xe2\x69\x77\x26\x61",
134 }, {
135 .plaintext = "abc",
136 .psize = 3,
137 .digest = "\x90\x01\x50\x98\x3c\xd2\x4f\xb0"
138 "\xd6\x96\x3f\x7d\x28\xe1\x7f\x72",
139 }, {
140 .plaintext = "message digest",
141 .psize = 14,
142 .digest = "\xf9\x6b\x69\x7d\x7c\xb7\x93\x8d"
143 "\x52\x5a\x2f\x31\xaa\xf1\x61\xd0",
144 }, {
145 .plaintext = "abcdefghijklmnopqrstuvwxyz",
146 .psize = 26,
147 .digest = "\xc3\xfc\xd3\xd7\x61\x92\xe4\x00"
148 "\x7d\xfb\x49\x6c\xca\x67\xe1\x3b",
149 .np = 2,
150 .tap = {13, 13}
151 }, {
152 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
153 .psize = 62,
154 .digest = "\xd1\x74\xab\x98\xd2\x77\xd9\xf5"
155 "\xa5\x61\x1c\x2c\x9f\x41\x9d\x9f",
156 }, {
157 .plaintext = "12345678901234567890123456789012345678901234567890123456789012"
158 "345678901234567890",
159 .psize = 80,
160 .digest = "\x57\xed\xf4\xa2\x2b\xe3\xc9\x55"
161 "\xac\x49\xda\x2e\x21\x07\xb6\x7a",
162 }
163
164};
165
166/*
167 * RIPEMD-128 test vectors from ISO/IEC 10118-3:2004(E)
168 */
169#define RMD128_TEST_VECTORS 10
170
171static struct hash_testvec rmd128_tv_template[] = {
172 {
173 .digest = "\xcd\xf2\x62\x13\xa1\x50\xdc\x3e"
174 "\xcb\x61\x0f\x18\xf6\xb3\x8b\x46",
175 }, {
176 .plaintext = "a",
177 .psize = 1,
178 .digest = "\x86\xbe\x7a\xfa\x33\x9d\x0f\xc7"
179 "\xcf\xc7\x85\xe7\x2f\x57\x8d\x33",
180 }, {
181 .plaintext = "abc",
182 .psize = 3,
183 .digest = "\xc1\x4a\x12\x19\x9c\x66\xe4\xba"
184 "\x84\x63\x6b\x0f\x69\x14\x4c\x77",
185 }, {
186 .plaintext = "message digest",
187 .psize = 14,
188 .digest = "\x9e\x32\x7b\x3d\x6e\x52\x30\x62"
189 "\xaf\xc1\x13\x2d\x7d\xf9\xd1\xb8",
190 }, {
191 .plaintext = "abcdefghijklmnopqrstuvwxyz",
192 .psize = 26,
193 .digest = "\xfd\x2a\xa6\x07\xf7\x1d\xc8\xf5"
194 "\x10\x71\x49\x22\xb3\x71\x83\x4e",
195 }, {
196 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
197 "fghijklmnopqrstuvwxyz0123456789",
198 .psize = 62,
199 .digest = "\xd1\xe9\x59\xeb\x17\x9c\x91\x1f"
200 "\xae\xa4\x62\x4c\x60\xc5\xc7\x02",
201 }, {
202 .plaintext = "1234567890123456789012345678901234567890"
203 "1234567890123456789012345678901234567890",
204 .psize = 80,
205 .digest = "\x3f\x45\xef\x19\x47\x32\xc2\xdb"
206 "\xb2\xc4\xa2\xc7\x69\x79\x5f\xa3",
207 }, {
208 .plaintext = "abcdbcdecdefdefgefghfghighij"
209 "hijkijkljklmklmnlmnomnopnopq",
210 .psize = 56,
211 .digest = "\xa1\xaa\x06\x89\xd0\xfa\xfa\x2d"
212 "\xdc\x22\xe8\x8b\x49\x13\x3a\x06",
213 .np = 2,
214 .tap = { 28, 28 },
215 }, {
216 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi"
217 "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr"
218 "lmnopqrsmnopqrstnopqrstu",
219 .psize = 112,
220 .digest = "\xd4\xec\xc9\x13\xe1\xdf\x77\x6b"
221 "\xf4\x8d\xe9\xd5\x5b\x1f\x25\x46",
222 }, {
223 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
224 .psize = 32,
225 .digest = "\x13\xfc\x13\xe8\xef\xff\x34\x7d"
226 "\xe1\x93\xff\x46\xdb\xac\xcf\xd4",
227 }
228};
229
230/*
231 * RIPEMD-160 test vectors from ISO/IEC 10118-3:2004(E)
232 */
233#define RMD160_TEST_VECTORS 10
234
235static struct hash_testvec rmd160_tv_template[] = {
236 {
237 .digest = "\x9c\x11\x85\xa5\xc5\xe9\xfc\x54\x61\x28"
238 "\x08\x97\x7e\xe8\xf5\x48\xb2\x25\x8d\x31",
239 }, {
240 .plaintext = "a",
241 .psize = 1,
242 .digest = "\x0b\xdc\x9d\x2d\x25\x6b\x3e\xe9\xda\xae"
243 "\x34\x7b\xe6\xf4\xdc\x83\x5a\x46\x7f\xfe",
244 }, {
245 .plaintext = "abc",
246 .psize = 3,
247 .digest = "\x8e\xb2\x08\xf7\xe0\x5d\x98\x7a\x9b\x04"
248 "\x4a\x8e\x98\xc6\xb0\x87\xf1\x5a\x0b\xfc",
249 }, {
250 .plaintext = "message digest",
251 .psize = 14,
252 .digest = "\x5d\x06\x89\xef\x49\xd2\xfa\xe5\x72\xb8"
253 "\x81\xb1\x23\xa8\x5f\xfa\x21\x59\x5f\x36",
254 }, {
255 .plaintext = "abcdefghijklmnopqrstuvwxyz",
256 .psize = 26,
257 .digest = "\xf7\x1c\x27\x10\x9c\x69\x2c\x1b\x56\xbb"
258 "\xdc\xeb\x5b\x9d\x28\x65\xb3\x70\x8d\xbc",
259 }, {
260 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
261 "fghijklmnopqrstuvwxyz0123456789",
262 .psize = 62,
263 .digest = "\xb0\xe2\x0b\x6e\x31\x16\x64\x02\x86\xed"
264 "\x3a\x87\xa5\x71\x30\x79\xb2\x1f\x51\x89",
265 }, {
266 .plaintext = "1234567890123456789012345678901234567890"
267 "1234567890123456789012345678901234567890",
268 .psize = 80,
269 .digest = "\x9b\x75\x2e\x45\x57\x3d\x4b\x39\xf4\xdb"
270 "\xd3\x32\x3c\xab\x82\xbf\x63\x32\x6b\xfb",
271 }, {
272 .plaintext = "abcdbcdecdefdefgefghfghighij"
273 "hijkijkljklmklmnlmnomnopnopq",
274 .psize = 56,
275 .digest = "\x12\xa0\x53\x38\x4a\x9c\x0c\x88\xe4\x05"
276 "\xa0\x6c\x27\xdc\xf4\x9a\xda\x62\xeb\x2b",
277 .np = 2,
278 .tap = { 28, 28 },
279 }, {
280 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi"
281 "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr"
282 "lmnopqrsmnopqrstnopqrstu",
283 .psize = 112,
284 .digest = "\x6f\x3f\xa3\x9b\x6b\x50\x3c\x38\x4f\x91"
285 "\x9a\x49\xa7\xaa\x5c\x2c\x08\xbd\xfb\x45",
286 }, {
287 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
288 .psize = 32,
289 .digest = "\x94\xc2\x64\x11\x54\x04\xe6\x33\x79\x0d"
290 "\xfc\xc8\x7b\x58\x7d\x36\x77\x06\x7d\x9f",
291 }
292};
293
294/*
295 * RIPEMD-256 test vectors
296 */
297#define RMD256_TEST_VECTORS 8
298
299static struct hash_testvec rmd256_tv_template[] = {
300 {
301 .digest = "\x02\xba\x4c\x4e\x5f\x8e\xcd\x18"
302 "\x77\xfc\x52\xd6\x4d\x30\xe3\x7a"
303 "\x2d\x97\x74\xfb\x1e\x5d\x02\x63"
304 "\x80\xae\x01\x68\xe3\xc5\x52\x2d",
305 }, {
306 .plaintext = "a",
307 .psize = 1,
308 .digest = "\xf9\x33\x3e\x45\xd8\x57\xf5\xd9"
309 "\x0a\x91\xba\xb7\x0a\x1e\xba\x0c"
310 "\xfb\x1b\xe4\xb0\x78\x3c\x9a\xcf"
311 "\xcd\x88\x3a\x91\x34\x69\x29\x25",
312 }, {
313 .plaintext = "abc",
314 .psize = 3,
315 .digest = "\xaf\xbd\x6e\x22\x8b\x9d\x8c\xbb"
316 "\xce\xf5\xca\x2d\x03\xe6\xdb\xa1"
317 "\x0a\xc0\xbc\x7d\xcb\xe4\x68\x0e"
318 "\x1e\x42\xd2\xe9\x75\x45\x9b\x65",
319 }, {
320 .plaintext = "message digest",
321 .psize = 14,
322 .digest = "\x87\xe9\x71\x75\x9a\x1c\xe4\x7a"
323 "\x51\x4d\x5c\x91\x4c\x39\x2c\x90"
324 "\x18\xc7\xc4\x6b\xc1\x44\x65\x55"
325 "\x4a\xfc\xdf\x54\xa5\x07\x0c\x0e",
326 }, {
327 .plaintext = "abcdefghijklmnopqrstuvwxyz",
328 .psize = 26,
329 .digest = "\x64\x9d\x30\x34\x75\x1e\xa2\x16"
330 "\x77\x6b\xf9\xa1\x8a\xcc\x81\xbc"
331 "\x78\x96\x11\x8a\x51\x97\x96\x87"
332 "\x82\xdd\x1f\xd9\x7d\x8d\x51\x33",
333 }, {
334 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
335 "fghijklmnopqrstuvwxyz0123456789",
336 .psize = 62,
337 .digest = "\x57\x40\xa4\x08\xac\x16\xb7\x20"
338 "\xb8\x44\x24\xae\x93\x1c\xbb\x1f"
339 "\xe3\x63\xd1\xd0\xbf\x40\x17\xf1"
340 "\xa8\x9f\x7e\xa6\xde\x77\xa0\xb8",
341 }, {
342 .plaintext = "1234567890123456789012345678901234567890"
343 "1234567890123456789012345678901234567890",
344 .psize = 80,
345 .digest = "\x06\xfd\xcc\x7a\x40\x95\x48\xaa"
346 "\xf9\x13\x68\xc0\x6a\x62\x75\xb5"
347 "\x53\xe3\xf0\x99\xbf\x0e\xa4\xed"
348 "\xfd\x67\x78\xdf\x89\xa8\x90\xdd",
349 }, {
350 .plaintext = "abcdbcdecdefdefgefghfghighij"
351 "hijkijkljklmklmnlmnomnopnopq",
352 .psize = 56,
353 .digest = "\x38\x43\x04\x55\x83\xaa\xc6\xc8"
354 "\xc8\xd9\x12\x85\x73\xe7\xa9\x80"
355 "\x9a\xfb\x2a\x0f\x34\xcc\xc3\x6e"
356 "\xa9\xe7\x2f\x16\xf6\x36\x8e\x3f",
357 .np = 2,
358 .tap = { 28, 28 },
359 }
360};
361
362/*
363 * RIPEMD-320 test vectors
364 */
365#define RMD320_TEST_VECTORS 8
366
367static struct hash_testvec rmd320_tv_template[] = {
368 {
369 .digest = "\x22\xd6\x5d\x56\x61\x53\x6c\xdc\x75\xc1"
370 "\xfd\xf5\xc6\xde\x7b\x41\xb9\xf2\x73\x25"
371 "\xeb\xc6\x1e\x85\x57\x17\x7d\x70\x5a\x0e"
372 "\xc8\x80\x15\x1c\x3a\x32\xa0\x08\x99\xb8",
373 }, {
374 .plaintext = "a",
375 .psize = 1,
376 .digest = "\xce\x78\x85\x06\x38\xf9\x26\x58\xa5\xa5"
377 "\x85\x09\x75\x79\x92\x6d\xda\x66\x7a\x57"
378 "\x16\x56\x2c\xfc\xf6\xfb\xe7\x7f\x63\x54"
379 "\x2f\x99\xb0\x47\x05\xd6\x97\x0d\xff\x5d",
380 }, {
381 .plaintext = "abc",
382 .psize = 3,
383 .digest = "\xde\x4c\x01\xb3\x05\x4f\x89\x30\xa7\x9d"
384 "\x09\xae\x73\x8e\x92\x30\x1e\x5a\x17\x08"
385 "\x5b\xef\xfd\xc1\xb8\xd1\x16\x71\x3e\x74"
386 "\xf8\x2f\xa9\x42\xd6\x4c\xdb\xc4\x68\x2d",
387 }, {
388 .plaintext = "message digest",
389 .psize = 14,
390 .digest = "\x3a\x8e\x28\x50\x2e\xd4\x5d\x42\x2f\x68"
391 "\x84\x4f\x9d\xd3\x16\xe7\xb9\x85\x33\xfa"
392 "\x3f\x2a\x91\xd2\x9f\x84\xd4\x25\xc8\x8d"
393 "\x6b\x4e\xff\x72\x7d\xf6\x6a\x7c\x01\x97",
394 }, {
395 .plaintext = "abcdefghijklmnopqrstuvwxyz",
396 .psize = 26,
397 .digest = "\xca\xbd\xb1\x81\x0b\x92\x47\x0a\x20\x93"
398 "\xaa\x6b\xce\x05\x95\x2c\x28\x34\x8c\xf4"
399 "\x3f\xf6\x08\x41\x97\x51\x66\xbb\x40\xed"
400 "\x23\x40\x04\xb8\x82\x44\x63\xe6\xb0\x09",
401 }, {
402 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
403 "fghijklmnopqrstuvwxyz0123456789",
404 .psize = 62,
405 .digest = "\xed\x54\x49\x40\xc8\x6d\x67\xf2\x50\xd2"
406 "\x32\xc3\x0b\x7b\x3e\x57\x70\xe0\xc6\x0c"
407 "\x8c\xb9\xa4\xca\xfe\x3b\x11\x38\x8a\xf9"
408 "\x92\x0e\x1b\x99\x23\x0b\x84\x3c\x86\xa4",
409 }, {
410 .plaintext = "1234567890123456789012345678901234567890"
411 "1234567890123456789012345678901234567890",
412 .psize = 80,
413 .digest = "\x55\x78\x88\xaf\x5f\x6d\x8e\xd6\x2a\xb6"
414 "\x69\x45\xc6\xd2\xa0\xa4\x7e\xcd\x53\x41"
415 "\xe9\x15\xeb\x8f\xea\x1d\x05\x24\x95\x5f"
416 "\x82\x5d\xc7\x17\xe4\xa0\x08\xab\x2d\x42",
417 }, {
418 .plaintext = "abcdbcdecdefdefgefghfghighij"
419 "hijkijkljklmklmnlmnomnopnopq",
420 .psize = 56,
421 .digest = "\xd0\x34\xa7\x95\x0c\xf7\x22\x02\x1b\xa4"
422 "\xb8\x4d\xf7\x69\xa5\xde\x20\x60\xe2\x59"
423 "\xdf\x4c\x9b\xb4\xa4\x26\x8c\x0e\x93\x5b"
424 "\xbc\x74\x70\xa9\x69\xc9\xd0\x72\xa1\xac",
425 .np = 2,
426 .tap = { 28, 28 },
427 }
428};
429
430/*
431 * SHA1 test vectors from from FIPS PUB 180-1
432 */
433#define SHA1_TEST_VECTORS 2
434
435static struct hash_testvec sha1_tv_template[] = {
436 {
437 .plaintext = "abc",
438 .psize = 3,
439 .digest = "\xa9\x99\x3e\x36\x47\x06\x81\x6a\xba\x3e"
440 "\x25\x71\x78\x50\xc2\x6c\x9c\xd0\xd8\x9d",
441 }, {
442 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
443 .psize = 56,
444 .digest = "\x84\x98\x3e\x44\x1c\x3b\xd2\x6e\xba\xae"
445 "\x4a\xa1\xf9\x51\x29\xe5\xe5\x46\x70\xf1",
446 .np = 2,
447 .tap = { 28, 28 }
448 }
449};
450
451
452/*
453 * SHA224 test vectors from from FIPS PUB 180-2
454 */
455#define SHA224_TEST_VECTORS 2
456
457static struct hash_testvec sha224_tv_template[] = {
458 {
459 .plaintext = "abc",
460 .psize = 3,
461 .digest = "\x23\x09\x7D\x22\x34\x05\xD8\x22"
462 "\x86\x42\xA4\x77\xBD\xA2\x55\xB3"
463 "\x2A\xAD\xBC\xE4\xBD\xA0\xB3\xF7"
464 "\xE3\x6C\x9D\xA7",
465 }, {
466 .plaintext =
467 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
468 .psize = 56,
469 .digest = "\x75\x38\x8B\x16\x51\x27\x76\xCC"
470 "\x5D\xBA\x5D\xA1\xFD\x89\x01\x50"
471 "\xB0\xC6\x45\x5C\xB4\xF5\x8B\x19"
472 "\x52\x52\x25\x25",
473 .np = 2,
474 .tap = { 28, 28 }
475 }
476};
477
478/*
479 * SHA256 test vectors from from NIST
480 */
481#define SHA256_TEST_VECTORS 2
482
483static struct hash_testvec sha256_tv_template[] = {
484 {
485 .plaintext = "abc",
486 .psize = 3,
487 .digest = "\xba\x78\x16\xbf\x8f\x01\xcf\xea"
488 "\x41\x41\x40\xde\x5d\xae\x22\x23"
489 "\xb0\x03\x61\xa3\x96\x17\x7a\x9c"
490 "\xb4\x10\xff\x61\xf2\x00\x15\xad",
491 }, {
492 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
493 .psize = 56,
494 .digest = "\x24\x8d\x6a\x61\xd2\x06\x38\xb8"
495 "\xe5\xc0\x26\x93\x0c\x3e\x60\x39"
496 "\xa3\x3c\xe4\x59\x64\xff\x21\x67"
497 "\xf6\xec\xed\xd4\x19\xdb\x06\xc1",
498 .np = 2,
499 .tap = { 28, 28 }
500 },
501};
502
503/*
504 * SHA384 test vectors from from NIST and kerneli
505 */
506#define SHA384_TEST_VECTORS 4
507
508static struct hash_testvec sha384_tv_template[] = {
509 {
510 .plaintext= "abc",
511 .psize = 3,
512 .digest = "\xcb\x00\x75\x3f\x45\xa3\x5e\x8b"
513 "\xb5\xa0\x3d\x69\x9a\xc6\x50\x07"
514 "\x27\x2c\x32\xab\x0e\xde\xd1\x63"
515 "\x1a\x8b\x60\x5a\x43\xff\x5b\xed"
516 "\x80\x86\x07\x2b\xa1\xe7\xcc\x23"
517 "\x58\xba\xec\xa1\x34\xc8\x25\xa7",
518 }, {
519 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
520 .psize = 56,
521 .digest = "\x33\x91\xfd\xdd\xfc\x8d\xc7\x39"
522 "\x37\x07\xa6\x5b\x1b\x47\x09\x39"
523 "\x7c\xf8\xb1\xd1\x62\xaf\x05\xab"
524 "\xfe\x8f\x45\x0d\xe5\xf3\x6b\xc6"
525 "\xb0\x45\x5a\x85\x20\xbc\x4e\x6f"
526 "\x5f\xe9\x5b\x1f\xe3\xc8\x45\x2b",
527 }, {
528 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"
529 "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
530 .psize = 112,
531 .digest = "\x09\x33\x0c\x33\xf7\x11\x47\xe8"
532 "\x3d\x19\x2f\xc7\x82\xcd\x1b\x47"
533 "\x53\x11\x1b\x17\x3b\x3b\x05\xd2"
534 "\x2f\xa0\x80\x86\xe3\xb0\xf7\x12"
535 "\xfc\xc7\xc7\x1a\x55\x7e\x2d\xb9"
536 "\x66\xc3\xe9\xfa\x91\x74\x60\x39",
537 }, {
538 .plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd"
539 "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz",
540 .psize = 104,
541 .digest = "\x3d\x20\x89\x73\xab\x35\x08\xdb"
542 "\xbd\x7e\x2c\x28\x62\xba\x29\x0a"
543 "\xd3\x01\x0e\x49\x78\xc1\x98\xdc"
544 "\x4d\x8f\xd0\x14\xe5\x82\x82\x3a"
545 "\x89\xe1\x6f\x9b\x2a\x7b\xbc\x1a"
546 "\xc9\x38\xe2\xd1\x99\xe8\xbe\xa4",
547 .np = 4,
548 .tap = { 26, 26, 26, 26 }
549 },
550};
551
552/*
553 * SHA512 test vectors from from NIST and kerneli
554 */
555#define SHA512_TEST_VECTORS 4
556
557static struct hash_testvec sha512_tv_template[] = {
558 {
559 .plaintext = "abc",
560 .psize = 3,
561 .digest = "\xdd\xaf\x35\xa1\x93\x61\x7a\xba"
562 "\xcc\x41\x73\x49\xae\x20\x41\x31"
563 "\x12\xe6\xfa\x4e\x89\xa9\x7e\xa2"
564 "\x0a\x9e\xee\xe6\x4b\x55\xd3\x9a"
565 "\x21\x92\x99\x2a\x27\x4f\xc1\xa8"
566 "\x36\xba\x3c\x23\xa3\xfe\xeb\xbd"
567 "\x45\x4d\x44\x23\x64\x3c\xe8\x0e"
568 "\x2a\x9a\xc9\x4f\xa5\x4c\xa4\x9f",
569 }, {
570 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
571 .psize = 56,
572 .digest = "\x20\x4a\x8f\xc6\xdd\xa8\x2f\x0a"
573 "\x0c\xed\x7b\xeb\x8e\x08\xa4\x16"
574 "\x57\xc1\x6e\xf4\x68\xb2\x28\xa8"
575 "\x27\x9b\xe3\x31\xa7\x03\xc3\x35"
576 "\x96\xfd\x15\xc1\x3b\x1b\x07\xf9"
577 "\xaa\x1d\x3b\xea\x57\x78\x9c\xa0"
578 "\x31\xad\x85\xc7\xa7\x1d\xd7\x03"
579 "\x54\xec\x63\x12\x38\xca\x34\x45",
580 }, {
581 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"
582 "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
583 .psize = 112,
584 .digest = "\x8e\x95\x9b\x75\xda\xe3\x13\xda"
585 "\x8c\xf4\xf7\x28\x14\xfc\x14\x3f"
586 "\x8f\x77\x79\xc6\xeb\x9f\x7f\xa1"
587 "\x72\x99\xae\xad\xb6\x88\x90\x18"
588 "\x50\x1d\x28\x9e\x49\x00\xf7\xe4"
589 "\x33\x1b\x99\xde\xc4\xb5\x43\x3a"
590 "\xc7\xd3\x29\xee\xb6\xdd\x26\x54"
591 "\x5e\x96\xe5\x5b\x87\x4b\xe9\x09",
592 }, {
593 .plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd"
594 "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz",
595 .psize = 104,
596 .digest = "\x93\x0d\x0c\xef\xcb\x30\xff\x11"
597 "\x33\xb6\x89\x81\x21\xf1\xcf\x3d"
598 "\x27\x57\x8a\xfc\xaf\xe8\x67\x7c"
599 "\x52\x57\xcf\x06\x99\x11\xf7\x5d"
600 "\x8f\x58\x31\xb5\x6e\xbf\xda\x67"
601 "\xb2\x78\xe6\x6d\xff\x8b\x84\xfe"
602 "\x2b\x28\x70\xf7\x42\xa5\x80\xd8"
603 "\xed\xb4\x19\x87\x23\x28\x50\xc9",
604 .np = 4,
605 .tap = { 26, 26, 26, 26 }
606 },
607};
608
609
610/*
611 * WHIRLPOOL test vectors from Whirlpool package
612 * by Vincent Rijmen and Paulo S. L. M. Barreto as part of the NESSIE
613 * submission
614 */
615#define WP512_TEST_VECTORS 8
616
617static struct hash_testvec wp512_tv_template[] = {
618 {
619 .plaintext = "",
620 .psize = 0,
621 .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66"
622 "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26"
623 "\xC5\x30\x23\x21\x30\xD4\x07\xF8"
624 "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7"
625 "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB"
626 "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57"
627 "\xEA\x89\x64\xE5\x9B\x63\xD9\x37"
628 "\x08\xB1\x38\xCC\x42\xA6\x6E\xB3",
629
630
631 }, {
632 .plaintext = "a",
633 .psize = 1,
634 .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F"
635 "\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
636 "\xF0\xDF\xF5\x94\x13\x14\x5E\x69"
637 "\x73\xC4\x50\x01\xD0\x08\x7B\x42"
638 "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6"
639 "\x3A\x42\x39\x1A\x39\x14\x5A\x59"
640 "\x1A\x92\x20\x0D\x56\x01\x95\xE5"
641 "\x3B\x47\x85\x84\xFD\xAE\x23\x1A",
642 }, {
643 .plaintext = "abc",
644 .psize = 3,
645 .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB"
646 "\x16\xB6\x56\x2C\x73\xB4\x02\x0B"
647 "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72"
648 "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C"
649 "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27"
650 "\x7D\x0E\x34\x95\x71\x14\xCB\xD6"
651 "\xC7\x97\xFC\x9D\x95\xD8\xB5\x82"
652 "\xD2\x25\x29\x20\x76\xD4\xEE\xF5",
653 }, {
654 .plaintext = "message digest",
655 .psize = 14,
656 .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6"
657 "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC"
658 "\x83\x8D\x00\x03\x22\x30\xF5\x3C"
659 "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B"
660 "\x84\x21\x55\x76\x59\xEF\x55\xC1"
661 "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6"
662 "\x92\xED\x92\x00\x52\x83\x8F\x33"
663 "\x62\xE8\x6D\xBD\x37\xA8\x90\x3E",
664 }, {
665 .plaintext = "abcdefghijklmnopqrstuvwxyz",
666 .psize = 26,
667 .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9"
668 "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A"
669 "\x8D\x38\x63\x1E\xAD\x42\x38\xF5"
670 "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B"
671 "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A"
672 "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6"
673 "\xF6\x8F\x67\x3E\x72\x07\x86\x5D"
674 "\x5D\x98\x19\xA3\xDB\xA4\xEB\x3B",
675 }, {
676 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
677 "abcdefghijklmnopqrstuvwxyz0123456789",
678 .psize = 62,
679 .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B"
680 "\xF1\x1F\x00\xED\x9A\xBA\x26\x90"
681 "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC"
682 "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E"
683 "\x08\xEB\xA2\x66\x29\x12\x9D\x8F"
684 "\xB7\xCB\x57\x21\x1B\x92\x81\xA6"
685 "\x55\x17\xCC\x87\x9D\x7B\x96\x21"
686 "\x42\xC6\x5F\x5A\x7A\xF0\x14\x67",
687 }, {
688 .plaintext = "1234567890123456789012345678901234567890"
689 "1234567890123456789012345678901234567890",
690 .psize = 80,
691 .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D"
692 "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0"
693 "\x87\x84\x37\x2B\xCC\xB2\x04\xD6"
694 "\x54\x9C\x4A\xFA\xDB\x60\x14\x29"
695 "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5"
696 "\x38\xCD\x04\x7B\x26\x81\xA5\x1A"
697 "\x2C\x60\x48\x1E\x88\xC5\xA2\x0B"
698 "\x2C\x2A\x80\xCF\x3A\x9A\x08\x3B",
699 }, {
700 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
701 .psize = 32,
702 .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61"
703 "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48"
704 "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62"
705 "\x07\xC5\x62\xF9\x88\xE9\x5C\x69"
706 "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B"
707 "\x7B\x94\x76\x39\xFE\x05\x0B\x56"
708 "\x93\x9B\xAA\xA0\xAD\xFF\x9A\xE6"
709 "\x74\x5B\x7B\x18\x1C\x3B\xE3\xFD",
710 },
711};
712
713#define WP384_TEST_VECTORS 8
714
715static struct hash_testvec wp384_tv_template[] = {
716 {
717 .plaintext = "",
718 .psize = 0,
719 .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66"
720 "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26"
721 "\xC5\x30\x23\x21\x30\xD4\x07\xF8"
722 "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7"
723 "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB"
724 "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57",
725
726
727 }, {
728 .plaintext = "a",
729 .psize = 1,
730 .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F"
731 "\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
732 "\xF0\xDF\xF5\x94\x13\x14\x5E\x69"
733 "\x73\xC4\x50\x01\xD0\x08\x7B\x42"
734 "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6"
735 "\x3A\x42\x39\x1A\x39\x14\x5A\x59",
736 }, {
737 .plaintext = "abc",
738 .psize = 3,
739 .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB"
740 "\x16\xB6\x56\x2C\x73\xB4\x02\x0B"
741 "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72"
742 "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C"
743 "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27"
744 "\x7D\x0E\x34\x95\x71\x14\xCB\xD6",
745 }, {
746 .plaintext = "message digest",
747 .psize = 14,
748 .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6"
749 "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC"
750 "\x83\x8D\x00\x03\x22\x30\xF5\x3C"
751 "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B"
752 "\x84\x21\x55\x76\x59\xEF\x55\xC1"
753 "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6",
754 }, {
755 .plaintext = "abcdefghijklmnopqrstuvwxyz",
756 .psize = 26,
757 .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9"
758 "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A"
759 "\x8D\x38\x63\x1E\xAD\x42\x38\xF5"
760 "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B"
761 "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A"
762 "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6",
763 }, {
764 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
765 "abcdefghijklmnopqrstuvwxyz0123456789",
766 .psize = 62,
767 .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B"
768 "\xF1\x1F\x00\xED\x9A\xBA\x26\x90"
769 "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC"
770 "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E"
771 "\x08\xEB\xA2\x66\x29\x12\x9D\x8F"
772 "\xB7\xCB\x57\x21\x1B\x92\x81\xA6",
773 }, {
774 .plaintext = "1234567890123456789012345678901234567890"
775 "1234567890123456789012345678901234567890",
776 .psize = 80,
777 .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D"
778 "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0"
779 "\x87\x84\x37\x2B\xCC\xB2\x04\xD6"
780 "\x54\x9C\x4A\xFA\xDB\x60\x14\x29"
781 "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5"
782 "\x38\xCD\x04\x7B\x26\x81\xA5\x1A",
783 }, {
784 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
785 .psize = 32,
786 .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61"
787 "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48"
788 "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62"
789 "\x07\xC5\x62\xF9\x88\xE9\x5C\x69"
790 "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B"
791 "\x7B\x94\x76\x39\xFE\x05\x0B\x56",
792 },
793};
794
795#define WP256_TEST_VECTORS 8
796
797static struct hash_testvec wp256_tv_template[] = {
798 {
799 .plaintext = "",
800 .psize = 0,
801 .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66"
802 "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26"
803 "\xC5\x30\x23\x21\x30\xD4\x07\xF8"
804 "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7",
805
806
807 }, {
808 .plaintext = "a",
809 .psize = 1,
810 .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F"
811 "\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
812 "\xF0\xDF\xF5\x94\x13\x14\x5E\x69"
813 "\x73\xC4\x50\x01\xD0\x08\x7B\x42",
814 }, {
815 .plaintext = "abc",
816 .psize = 3,
817 .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB"
818 "\x16\xB6\x56\x2C\x73\xB4\x02\x0B"
819 "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72"
820 "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C",
821 }, {
822 .plaintext = "message digest",
823 .psize = 14,
824 .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6"
825 "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC"
826 "\x83\x8D\x00\x03\x22\x30\xF5\x3C"
827 "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B",
828 }, {
829 .plaintext = "abcdefghijklmnopqrstuvwxyz",
830 .psize = 26,
831 .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9"
832 "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A"
833 "\x8D\x38\x63\x1E\xAD\x42\x38\xF5"
834 "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B",
835 }, {
836 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
837 "abcdefghijklmnopqrstuvwxyz0123456789",
838 .psize = 62,
839 .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B"
840 "\xF1\x1F\x00\xED\x9A\xBA\x26\x90"
841 "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC"
842 "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E",
843 }, {
844 .plaintext = "1234567890123456789012345678901234567890"
845 "1234567890123456789012345678901234567890",
846 .psize = 80,
847 .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D"
848 "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0"
849 "\x87\x84\x37\x2B\xCC\xB2\x04\xD6"
850 "\x54\x9C\x4A\xFA\xDB\x60\x14\x29",
851 }, {
852 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
853 .psize = 32,
854 .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61"
855 "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48"
856 "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62"
857 "\x07\xC5\x62\xF9\x88\xE9\x5C\x69",
858 },
859};
860
861/*
862 * TIGER test vectors from Tiger website
863 */
864#define TGR192_TEST_VECTORS 6
865
866static struct hash_testvec tgr192_tv_template[] = {
867 {
868 .plaintext = "",
869 .psize = 0,
870 .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32"
871 "\x16\x16\x6e\x76\xb1\xbb\x92\x5f"
872 "\xf3\x73\xde\x2d\x49\x58\x4e\x7a",
873 }, {
874 .plaintext = "abc",
875 .psize = 3,
876 .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a"
877 "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf"
878 "\x93\x5f\x7b\x95\x1c\x13\x29\x51",
879 }, {
880 .plaintext = "Tiger",
881 .psize = 5,
882 .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd"
883 "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec"
884 "\x37\x79\x0c\x11\x6f\x9d\x2b\xdf",
885 }, {
886 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-",
887 .psize = 64,
888 .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7"
889 "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e"
890 "\xb5\x86\x44\x50\x34\xa5\xa3\x86",
891 }, {
892 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789",
893 .psize = 64,
894 .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48"
895 "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9"
896 "\x57\x89\x65\x65\x97\x5f\x91\x97",
897 }, {
898 .plaintext = "Tiger - A Fast New Hash Function, "
899 "by Ross Anderson and Eli Biham, "
900 "proceedings of Fast Software Encryption 3, "
901 "Cambridge, 1996.",
902 .psize = 125,
903 .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63"
904 "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24"
905 "\xdd\x68\x15\x1d\x50\x39\x74\xfc",
906 },
907};
908
909#define TGR160_TEST_VECTORS 6
910
911static struct hash_testvec tgr160_tv_template[] = {
912 {
913 .plaintext = "",
914 .psize = 0,
915 .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32"
916 "\x16\x16\x6e\x76\xb1\xbb\x92\x5f"
917 "\xf3\x73\xde\x2d",
918 }, {
919 .plaintext = "abc",
920 .psize = 3,
921 .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a"
922 "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf"
923 "\x93\x5f\x7b\x95",
924 }, {
925 .plaintext = "Tiger",
926 .psize = 5,
927 .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd"
928 "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec"
929 "\x37\x79\x0c\x11",
930 }, {
931 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-",
932 .psize = 64,
933 .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7"
934 "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e"
935 "\xb5\x86\x44\x50",
936 }, {
937 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789",
938 .psize = 64,
939 .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48"
940 "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9"
941 "\x57\x89\x65\x65",
942 }, {
943 .plaintext = "Tiger - A Fast New Hash Function, "
944 "by Ross Anderson and Eli Biham, "
945 "proceedings of Fast Software Encryption 3, "
946 "Cambridge, 1996.",
947 .psize = 125,
948 .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63"
949 "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24"
950 "\xdd\x68\x15\x1d",
951 },
952};
953
954#define TGR128_TEST_VECTORS 6
955
956static struct hash_testvec tgr128_tv_template[] = {
957 {
958 .plaintext = "",
959 .psize = 0,
960 .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32"
961 "\x16\x16\x6e\x76\xb1\xbb\x92\x5f",
962 }, {
963 .plaintext = "abc",
964 .psize = 3,
965 .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a"
966 "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf",
967 }, {
968 .plaintext = "Tiger",
969 .psize = 5,
970 .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd"
971 "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec",
972 }, {
973 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-",
974 .psize = 64,
975 .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7"
976 "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e",
977 }, {
978 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789",
979 .psize = 64,
980 .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48"
981 "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9",
982 }, {
983 .plaintext = "Tiger - A Fast New Hash Function, "
984 "by Ross Anderson and Eli Biham, "
985 "proceedings of Fast Software Encryption 3, "
986 "Cambridge, 1996.",
987 .psize = 125,
988 .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63"
989 "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24",
990 },
991};
992
993/*
994 * HMAC-MD5 test vectors from RFC2202
995 * (These need to be fixed to not use strlen).
996 */
997#define HMAC_MD5_TEST_VECTORS 7
998
999static struct hash_testvec hmac_md5_tv_template[] =
1000{
1001 {
1002 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1003 .ksize = 16,
1004 .plaintext = "Hi There",
1005 .psize = 8,
1006 .digest = "\x92\x94\x72\x7a\x36\x38\xbb\x1c"
1007 "\x13\xf4\x8e\xf8\x15\x8b\xfc\x9d",
1008 }, {
1009 .key = "Jefe",
1010 .ksize = 4,
1011 .plaintext = "what do ya want for nothing?",
1012 .psize = 28,
1013 .digest = "\x75\x0c\x78\x3e\x6a\xb0\xb5\x03"
1014 "\xea\xa8\x6e\x31\x0a\x5d\xb7\x38",
1015 .np = 2,
1016 .tap = {14, 14}
1017 }, {
1018 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1019 .ksize = 16,
1020 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1021 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1022 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1023 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1024 .psize = 50,
1025 .digest = "\x56\xbe\x34\x52\x1d\x14\x4c\x88"
1026 "\xdb\xb8\xc7\x33\xf0\xe8\xb3\xf6",
1027 }, {
1028 .key = "\x01\x02\x03\x04\x05\x06\x07\x08"
1029 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1030 "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1031 .ksize = 25,
1032 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1033 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1034 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1035 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1036 .psize = 50,
1037 .digest = "\x69\x7e\xaf\x0a\xca\x3a\x3a\xea"
1038 "\x3a\x75\x16\x47\x46\xff\xaa\x79",
1039 }, {
1040 .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1041 .ksize = 16,
1042 .plaintext = "Test With Truncation",
1043 .psize = 20,
1044 .digest = "\x56\x46\x1e\xf2\x34\x2e\xdc\x00"
1045 "\xf9\xba\xb9\x95\x69\x0e\xfd\x4c",
1046 }, {
1047 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1048 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1049 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1050 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1051 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1052 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1053 "\xaa\xaa",
1054 .ksize = 80,
1055 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1056 .psize = 54,
1057 .digest = "\x6b\x1a\xb7\xfe\x4b\xd7\xbf\x8f"
1058 "\x0b\x62\xe6\xce\x61\xb9\xd0\xcd",
1059 }, {
1060 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1061 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1062 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1063 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1064 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1065 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1066 "\xaa\xaa",
1067 .ksize = 80,
1068 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1069 "Block-Size Data",
1070 .psize = 73,
1071 .digest = "\x6f\x63\x0f\xad\x67\xcd\xa0\xee"
1072 "\x1f\xb1\xf5\x62\xdb\x3a\xa5\x3e",
1073 },
1074};
1075
1076/*
1077 * HMAC-RIPEMD128 test vectors from RFC2286
1078 */
1079#define HMAC_RMD128_TEST_VECTORS 7
1080
1081static struct hash_testvec hmac_rmd128_tv_template[] = {
1082 {
1083 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1084 .ksize = 16,
1085 .plaintext = "Hi There",
1086 .psize = 8,
1087 .digest = "\xfb\xf6\x1f\x94\x92\xaa\x4b\xbf"
1088 "\x81\xc1\x72\xe8\x4e\x07\x34\xdb",
1089 }, {
1090 .key = "Jefe",
1091 .ksize = 4,
1092 .plaintext = "what do ya want for nothing?",
1093 .psize = 28,
1094 .digest = "\x87\x5f\x82\x88\x62\xb6\xb3\x34"
1095 "\xb4\x27\xc5\x5f\x9f\x7f\xf0\x9b",
1096 .np = 2,
1097 .tap = { 14, 14 },
1098 }, {
1099 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1100 .ksize = 16,
1101 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1102 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1103 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1104 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1105 .psize = 50,
1106 .digest = "\x09\xf0\xb2\x84\x6d\x2f\x54\x3d"
1107 "\xa3\x63\xcb\xec\x8d\x62\xa3\x8d",
1108 }, {
1109 .key = "\x01\x02\x03\x04\x05\x06\x07\x08"
1110 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1111 "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1112 .ksize = 25,
1113 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1114 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1115 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1116 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1117 .psize = 50,
1118 .digest = "\xbd\xbb\xd7\xcf\x03\xe4\x4b\x5a"
1119 "\xa6\x0a\xf8\x15\xbe\x4d\x22\x94",
1120 }, {
1121 .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1122 .ksize = 16,
1123 .plaintext = "Test With Truncation",
1124 .psize = 20,
1125 .digest = "\xe7\x98\x08\xf2\x4b\x25\xfd\x03"
1126 "\x1c\x15\x5f\x0d\x55\x1d\x9a\x3a",
1127 }, {
1128 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1129 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1130 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1131 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1132 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1133 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1134 "\xaa\xaa",
1135 .ksize = 80,
1136 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1137 .psize = 54,
1138 .digest = "\xdc\x73\x29\x28\xde\x98\x10\x4a"
1139 "\x1f\x59\xd3\x73\xc1\x50\xac\xbb",
1140 }, {
1141 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1142 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1143 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1144 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1145 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1146 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1147 "\xaa\xaa",
1148 .ksize = 80,
1149 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1150 "Block-Size Data",
1151 .psize = 73,
1152 .digest = "\x5c\x6b\xec\x96\x79\x3e\x16\xd4"
1153 "\x06\x90\xc2\x37\x63\x5f\x30\xc5",
1154 },
1155};
1156
1157/*
1158 * HMAC-RIPEMD160 test vectors from RFC2286
1159 */
1160#define HMAC_RMD160_TEST_VECTORS 7
1161
1162static struct hash_testvec hmac_rmd160_tv_template[] = {
1163 {
1164 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1165 .ksize = 20,
1166 .plaintext = "Hi There",
1167 .psize = 8,
1168 .digest = "\x24\xcb\x4b\xd6\x7d\x20\xfc\x1a\x5d\x2e"
1169 "\xd7\x73\x2d\xcc\x39\x37\x7f\x0a\x56\x68",
1170 }, {
1171 .key = "Jefe",
1172 .ksize = 4,
1173 .plaintext = "what do ya want for nothing?",
1174 .psize = 28,
1175 .digest = "\xdd\xa6\xc0\x21\x3a\x48\x5a\x9e\x24\xf4"
1176 "\x74\x20\x64\xa7\xf0\x33\xb4\x3c\x40\x69",
1177 .np = 2,
1178 .tap = { 14, 14 },
1179 }, {
1180 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1181 .ksize = 20,
1182 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1183 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1184 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1185 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1186 .psize = 50,
1187 .digest = "\xb0\xb1\x05\x36\x0d\xe7\x59\x96\x0a\xb4"
1188 "\xf3\x52\x98\xe1\x16\xe2\x95\xd8\xe7\xc1",
1189 }, {
1190 .key = "\x01\x02\x03\x04\x05\x06\x07\x08"
1191 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1192 "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1193 .ksize = 25,
1194 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1195 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1196 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1197 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1198 .psize = 50,
1199 .digest = "\xd5\xca\x86\x2f\x4d\x21\xd5\xe6\x10\xe1"
1200 "\x8b\x4c\xf1\xbe\xb9\x7a\x43\x65\xec\xf4",
1201 }, {
1202 .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1203 .ksize = 20,
1204 .plaintext = "Test With Truncation",
1205 .psize = 20,
1206 .digest = "\x76\x19\x69\x39\x78\xf9\x1d\x90\x53\x9a"
1207 "\xe7\x86\x50\x0f\xf3\xd8\xe0\x51\x8e\x39",
1208 }, {
1209 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1210 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1211 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1212 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1213 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1214 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1215 "\xaa\xaa",
1216 .ksize = 80,
1217 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1218 .psize = 54,
1219 .digest = "\x64\x66\xca\x07\xac\x5e\xac\x29\xe1\xbd"
1220 "\x52\x3e\x5a\xda\x76\x05\xb7\x91\xfd\x8b",
1221 }, {
1222 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1223 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1224 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1225 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1226 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1227 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1228 "\xaa\xaa",
1229 .ksize = 80,
1230 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1231 "Block-Size Data",
1232 .psize = 73,
1233 .digest = "\x69\xea\x60\x79\x8d\x71\x61\x6c\xce\x5f"
1234 "\xd0\x87\x1e\x23\x75\x4c\xd7\x5d\x5a\x0a",
1235 },
1236};
1237
1238/*
1239 * HMAC-SHA1 test vectors from RFC2202
1240 */
1241#define HMAC_SHA1_TEST_VECTORS 7
1242
1243static struct hash_testvec hmac_sha1_tv_template[] = {
1244 {
1245 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1246 .ksize = 20,
1247 .plaintext = "Hi There",
1248 .psize = 8,
1249 .digest = "\xb6\x17\x31\x86\x55\x05\x72\x64"
1250 "\xe2\x8b\xc0\xb6\xfb\x37\x8c\x8e\xf1"
1251 "\x46\xbe",
1252 }, {
1253 .key = "Jefe",
1254 .ksize = 4,
1255 .plaintext = "what do ya want for nothing?",
1256 .psize = 28,
1257 .digest = "\xef\xfc\xdf\x6a\xe5\xeb\x2f\xa2\xd2\x74"
1258 "\x16\xd5\xf1\x84\xdf\x9c\x25\x9a\x7c\x79",
1259 .np = 2,
1260 .tap = { 14, 14 }
1261 }, {
1262 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1263 .ksize = 20,
1264 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1265 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1266 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1267 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1268 .psize = 50,
1269 .digest = "\x12\x5d\x73\x42\xb9\xac\x11\xcd\x91\xa3"
1270 "\x9a\xf4\x8a\xa1\x7b\x4f\x63\xf1\x75\xd3",
1271 }, {
1272 .key = "\x01\x02\x03\x04\x05\x06\x07\x08"
1273 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1274 "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1275 .ksize = 25,
1276 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1277 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1278 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1279 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1280 .psize = 50,
1281 .digest = "\x4c\x90\x07\xf4\x02\x62\x50\xc6\xbc\x84"
1282 "\x14\xf9\xbf\x50\xc8\x6c\x2d\x72\x35\xda",
1283 }, {
1284 .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1285 .ksize = 20,
1286 .plaintext = "Test With Truncation",
1287 .psize = 20,
1288 .digest = "\x4c\x1a\x03\x42\x4b\x55\xe0\x7f\xe7\xf2"
1289 "\x7b\xe1\xd5\x8b\xb9\x32\x4a\x9a\x5a\x04",
1290 }, {
1291 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1292 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1293 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1294 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1295 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1296 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1297 "\xaa\xaa",
1298 .ksize = 80,
1299 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1300 .psize = 54,
1301 .digest = "\xaa\x4a\xe5\xe1\x52\x72\xd0\x0e\x95\x70"
1302 "\x56\x37\xce\x8a\x3b\x55\xed\x40\x21\x12",
1303 }, {
1304 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1305 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1306 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1307 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1308 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1309 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1310 "\xaa\xaa",
1311 .ksize = 80,
1312 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1313 "Block-Size Data",
1314 .psize = 73,
1315 .digest = "\xe8\xe9\x9d\x0f\x45\x23\x7d\x78\x6d\x6b"
1316 "\xba\xa7\x96\x5c\x78\x08\xbb\xff\x1a\x91",
1317 },
1318};
1319
1320
1321/*
1322 * SHA224 HMAC test vectors from RFC4231
1323 */
1324#define HMAC_SHA224_TEST_VECTORS 4
1325
1326static struct hash_testvec hmac_sha224_tv_template[] = {
1327 {
1328 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1329 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1330 "\x0b\x0b\x0b\x0b",
1331 .ksize = 20,
1332 /* ("Hi There") */
1333 .plaintext = "\x48\x69\x20\x54\x68\x65\x72\x65",
1334 .psize = 8,
1335 .digest = "\x89\x6f\xb1\x12\x8a\xbb\xdf\x19"
1336 "\x68\x32\x10\x7c\xd4\x9d\xf3\x3f"
1337 "\x47\xb4\xb1\x16\x99\x12\xba\x4f"
1338 "\x53\x68\x4b\x22",
1339 }, {
1340 .key = "Jefe",
1341 .ksize = 4,
1342 /* ("what do ya want for nothing?") */
1343 .plaintext = "\x77\x68\x61\x74\x20\x64\x6f\x20"
1344 "\x79\x61\x20\x77\x61\x6e\x74\x20"
1345 "\x66\x6f\x72\x20\x6e\x6f\x74\x68"
1346 "\x69\x6e\x67\x3f",
1347 .psize = 28,
1348 .digest = "\xa3\x0e\x01\x09\x8b\xc6\xdb\xbf"
1349 "\x45\x69\x0f\x3a\x7e\x9e\x6d\x0f"
1350 "\x8b\xbe\xa2\xa3\x9e\x61\x48\x00"
1351 "\x8f\xd0\x5e\x44",
1352 .np = 4,
1353 .tap = { 7, 7, 7, 7 }
1354 }, {
1355 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1356 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1357 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1358 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1359 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1360 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1361 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1362 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1363 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1364 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1365 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1366 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1367 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1368 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1369 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1370 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1371 "\xaa\xaa\xaa",
1372 .ksize = 131,
1373 /* ("Test Using Larger Than Block-Size Key - Hash Key First") */
1374 .plaintext = "\x54\x65\x73\x74\x20\x55\x73\x69"
1375 "\x6e\x67\x20\x4c\x61\x72\x67\x65"
1376 "\x72\x20\x54\x68\x61\x6e\x20\x42"
1377 "\x6c\x6f\x63\x6b\x2d\x53\x69\x7a"
1378 "\x65\x20\x4b\x65\x79\x20\x2d\x20"
1379 "\x48\x61\x73\x68\x20\x4b\x65\x79"
1380 "\x20\x46\x69\x72\x73\x74",
1381 .psize = 54,
1382 .digest = "\x95\xe9\xa0\xdb\x96\x20\x95\xad"
1383 "\xae\xbe\x9b\x2d\x6f\x0d\xbc\xe2"
1384 "\xd4\x99\xf1\x12\xf2\xd2\xb7\x27"
1385 "\x3f\xa6\x87\x0e",
1386 }, {
1387 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1388 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1389 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1390 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1391 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1392 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1393 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1394 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1395 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1396 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1397 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1398 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1399 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1400 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1401 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1402 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1403 "\xaa\xaa\xaa",
1404 .ksize = 131,
1405 /* ("This is a test using a larger than block-size key and a")
1406 (" larger than block-size data. The key needs to be")
1407 (" hashed before being used by the HMAC algorithm.") */
1408 .plaintext = "\x54\x68\x69\x73\x20\x69\x73\x20"
1409 "\x61\x20\x74\x65\x73\x74\x20\x75"
1410 "\x73\x69\x6e\x67\x20\x61\x20\x6c"
1411 "\x61\x72\x67\x65\x72\x20\x74\x68"
1412 "\x61\x6e\x20\x62\x6c\x6f\x63\x6b"
1413 "\x2d\x73\x69\x7a\x65\x20\x6b\x65"
1414 "\x79\x20\x61\x6e\x64\x20\x61\x20"
1415 "\x6c\x61\x72\x67\x65\x72\x20\x74"
1416 "\x68\x61\x6e\x20\x62\x6c\x6f\x63"
1417 "\x6b\x2d\x73\x69\x7a\x65\x20\x64"
1418 "\x61\x74\x61\x2e\x20\x54\x68\x65"
1419 "\x20\x6b\x65\x79\x20\x6e\x65\x65"
1420 "\x64\x73\x20\x74\x6f\x20\x62\x65"
1421 "\x20\x68\x61\x73\x68\x65\x64\x20"
1422 "\x62\x65\x66\x6f\x72\x65\x20\x62"
1423 "\x65\x69\x6e\x67\x20\x75\x73\x65"
1424 "\x64\x20\x62\x79\x20\x74\x68\x65"
1425 "\x20\x48\x4d\x41\x43\x20\x61\x6c"
1426 "\x67\x6f\x72\x69\x74\x68\x6d\x2e",
1427 .psize = 152,
1428 .digest = "\x3a\x85\x41\x66\xac\x5d\x9f\x02"
1429 "\x3f\x54\xd5\x17\xd0\xb3\x9d\xbd"
1430 "\x94\x67\x70\xdb\x9c\x2b\x95\xc9"
1431 "\xf6\xf5\x65\xd1",
1432 },
1433};
1434
1435/*
1436 * HMAC-SHA256 test vectors from
1437 * draft-ietf-ipsec-ciph-sha-256-01.txt
1438 */
1439#define HMAC_SHA256_TEST_VECTORS 10
1440
1441static struct hash_testvec hmac_sha256_tv_template[] = {
1442 {
1443 .key = "\x01\x02\x03\x04\x05\x06\x07\x08"
1444 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1445 "\x11\x12\x13\x14\x15\x16\x17\x18"
1446 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20",
1447 .ksize = 32,
1448 .plaintext = "abc",
1449 .psize = 3,
1450 .digest = "\xa2\x1b\x1f\x5d\x4c\xf4\xf7\x3a"
1451 "\x4d\xd9\x39\x75\x0f\x7a\x06\x6a"
1452 "\x7f\x98\xcc\x13\x1c\xb1\x6a\x66"
1453 "\x92\x75\x90\x21\xcf\xab\x81\x81",
1454 }, {
1455 .key = "\x01\x02\x03\x04\x05\x06\x07\x08"
1456 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1457 "\x11\x12\x13\x14\x15\x16\x17\x18"
1458 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20",
1459 .ksize = 32,
1460 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1461 .psize = 56,
1462 .digest = "\x10\x4f\xdc\x12\x57\x32\x8f\x08"
1463 "\x18\x4b\xa7\x31\x31\xc5\x3c\xae"
1464 "\xe6\x98\xe3\x61\x19\x42\x11\x49"
1465 "\xea\x8c\x71\x24\x56\x69\x7d\x30",
1466 }, {
1467 .key = "\x01\x02\x03\x04\x05\x06\x07\x08"
1468 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1469 "\x11\x12\x13\x14\x15\x16\x17\x18"
1470 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20",
1471 .ksize = 32,
1472 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"
1473 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1474 .psize = 112,
1475 .digest = "\x47\x03\x05\xfc\x7e\x40\xfe\x34"
1476 "\xd3\xee\xb3\xe7\x73\xd9\x5a\xab"
1477 "\x73\xac\xf0\xfd\x06\x04\x47\xa5"
1478 "\xeb\x45\x95\xbf\x33\xa9\xd1\xa3",
1479 }, {
1480 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1481 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1482 "\x0b\x0b\x0b\x0b\x0b\x0b",
1483 .ksize = 32,
1484 .plaintext = "Hi There",
1485 .psize = 8,
1486 .digest = "\x19\x8a\x60\x7e\xb4\x4b\xfb\xc6"
1487 "\x99\x03\xa0\xf1\xcf\x2b\xbd\xc5"
1488 "\xba\x0a\xa3\xf3\xd9\xae\x3c\x1c"
1489 "\x7a\x3b\x16\x96\xa0\xb6\x8c\xf7",
1490 }, {
1491 .key = "Jefe",
1492 .ksize = 4,
1493 .plaintext = "what do ya want for nothing?",
1494 .psize = 28,
1495 .digest = "\x5b\xdc\xc1\x46\xbf\x60\x75\x4e"
1496 "\x6a\x04\x24\x26\x08\x95\x75\xc7"
1497 "\x5a\x00\x3f\x08\x9d\x27\x39\x83"
1498 "\x9d\xec\x58\xb9\x64\xec\x38\x43",
1499 .np = 2,
1500 .tap = { 14, 14 }
1501 }, {
1502 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1503 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1504 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1505 .ksize = 32,
1506 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1507 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1508 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1509 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1510 .psize = 50,
1511 .digest = "\xcd\xcb\x12\x20\xd1\xec\xcc\xea"
1512 "\x91\xe5\x3a\xba\x30\x92\xf9\x62"
1513 "\xe5\x49\xfe\x6c\xe9\xed\x7f\xdc"
1514 "\x43\x19\x1f\xbd\xe4\x5c\x30\xb0",
1515 }, {
1516 .key = "\x01\x02\x03\x04\x05\x06\x07\x08"
1517 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1518 "\x11\x12\x13\x14\x15\x16\x17\x18"
1519 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
1520 "\x21\x22\x23\x24\x25",
1521 .ksize = 37,
1522 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1523 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1524 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1525 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1526 .psize = 50,
1527 .digest = "\xd4\x63\x3c\x17\xf6\xfb\x8d\x74"
1528 "\x4c\x66\xde\xe0\xf8\xf0\x74\x55"
1529 "\x6e\xc4\xaf\x55\xef\x07\x99\x85"
1530 "\x41\x46\x8e\xb4\x9b\xd2\xe9\x17",
1531 }, {
1532 .key = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c"
1533 "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c"
1534 "\x0c\x0c\x0c\x0c\x0c\x0c",
1535 .ksize = 32,
1536 .plaintext = "Test With Truncation",
1537 .psize = 20,
1538 .digest = "\x75\x46\xaf\x01\x84\x1f\xc0\x9b"
1539 "\x1a\xb9\xc3\x74\x9a\x5f\x1c\x17"
1540 "\xd4\xf5\x89\x66\x8a\x58\x7b\x27"
1541 "\x00\xa9\xc9\x7c\x11\x93\xcf\x42",
1542 }, {
1543 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1544 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1545 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1546 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1547 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1548 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1549 "\xaa\xaa",
1550 .ksize = 80,
1551 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1552 .psize = 54,
1553 .digest = "\x69\x53\x02\x5e\xd9\x6f\x0c\x09"
1554 "\xf8\x0a\x96\xf7\x8e\x65\x38\xdb"
1555 "\xe2\xe7\xb8\x20\xe3\xdd\x97\x0e"
1556 "\x7d\xdd\x39\x09\x1b\x32\x35\x2f",
1557 }, {
1558 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1559 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1560 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1561 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1562 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1563 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1564 "\xaa\xaa",
1565 .ksize = 80,
1566 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than "
1567 "One Block-Size Data",
1568 .psize = 73,
1569 .digest = "\x63\x55\xac\x22\xe8\x90\xd0\xa3"
1570 "\xc8\x48\x1a\x5c\xa4\x82\x5b\xc8"
1571 "\x84\xd3\xe7\xa1\xff\x98\xa2\xfc"
1572 "\x2a\xc7\xd8\xe0\x64\xc3\xb2\xe6",
1573 },
1574};
1575
1576#define XCBC_AES_TEST_VECTORS 6
1577
1578static struct hash_testvec aes_xcbc128_tv_template[] = {
1579 {
1580 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
1581 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1582 .plaintext = zeroed_string,
1583 .digest = "\x75\xf0\x25\x1d\x52\x8a\xc0\x1c"
1584 "\x45\x73\xdf\xd5\x84\xd7\x9f\x29",
1585 .psize = 0,
1586 .ksize = 16,
1587 }, {
1588 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
1589 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1590 .plaintext = "\x00\x01\x02",
1591 .digest = "\x5b\x37\x65\x80\xae\x2f\x19\xaf"
1592 "\xe7\x21\x9c\xee\xf1\x72\x75\x6f",
1593 .psize = 3,
1594 .ksize = 16,
1595 } , {
1596 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
1597 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1598 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1599 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1600 .digest = "\xd2\xa2\x46\xfa\x34\x9b\x68\xa7"
1601 "\x99\x98\xa4\x39\x4f\xf7\xa2\x63",
1602 .psize = 16,
1603 .ksize = 16,
1604 }, {
1605 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
1606 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1607 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1608 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1609 "\x10\x11\x12\x13",
1610 .digest = "\x47\xf5\x1b\x45\x64\x96\x62\x15"
1611 "\xb8\x98\x5c\x63\x05\x5e\xd3\x08",
1612 .tap = { 10, 10 },
1613 .psize = 20,
1614 .np = 2,
1615 .ksize = 16,
1616 }, {
1617 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
1618 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1619 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1620 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1621 "\x10\x11\x12\x13\x14\x15\x16\x17"
1622 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
1623 .digest = "\xf5\x4f\x0e\xc8\xd2\xb9\xf3\xd3"
1624 "\x68\x07\x73\x4b\xd5\x28\x3f\xd4",
1625 .psize = 32,
1626 .ksize = 16,
1627 }, {
1628 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
1629 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1630 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1631 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1632 "\x10\x11\x12\x13\x14\x15\x16\x17"
1633 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
1634 "\x20\x21",
1635 .digest = "\xbe\xcb\xb3\xbc\xcd\xb5\x18\xa3"
1636 "\x06\x77\xd5\x48\x1f\xb6\xb4\xd8",
1637 .tap = { 17, 17 },
1638 .psize = 34,
1639 .np = 2,
1640 .ksize = 16,
1641 }
1642};
1643
1644/*
1645 * SHA384 HMAC test vectors from RFC4231
1646 */
1647
1648#define HMAC_SHA384_TEST_VECTORS 4
1649
1650static struct hash_testvec hmac_sha384_tv_template[] = {
1651 {
1652 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1653 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1654 "\x0b\x0b\x0b\x0b",
1655 .ksize = 20,
1656 .plaintext = "Hi There",
1657 .psize = 8,
1658 .digest = "\xaf\xd0\x39\x44\xd8\x48\x95\x62"
1659 "\x6b\x08\x25\xf4\xab\x46\x90\x7f"
1660 "\x15\xf9\xda\xdb\xe4\x10\x1e\xc6"
1661 "\x82\xaa\x03\x4c\x7c\xeb\xc5\x9c"
1662 "\xfa\xea\x9e\xa9\x07\x6e\xde\x7f"
1663 "\x4a\xf1\x52\xe8\xb2\xfa\x9c\xb6",
1664 }, {
1665 .key = "Jefe",
1666 .ksize = 4,
1667 .plaintext = "what do ya want for nothing?",
1668 .psize = 28,
1669 .digest = "\xaf\x45\xd2\xe3\x76\x48\x40\x31"
1670 "\x61\x7f\x78\xd2\xb5\x8a\x6b\x1b"
1671 "\x9c\x7e\xf4\x64\xf5\xa0\x1b\x47"
1672 "\xe4\x2e\xc3\x73\x63\x22\x44\x5e"
1673 "\x8e\x22\x40\xca\x5e\x69\xe2\xc7"
1674 "\x8b\x32\x39\xec\xfa\xb2\x16\x49",
1675 .np = 4,
1676 .tap = { 7, 7, 7, 7 }
1677 }, {
1678 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1679 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1680 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1681 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1682 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1683 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1684 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1685 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1686 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1687 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1688 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1689 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1690 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1691 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1692 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1693 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1694 "\xaa\xaa\xaa",
1695 .ksize = 131,
1696 .plaintext = "Test Using Larger Than Block-Siz"
1697 "e Key - Hash Key First",
1698 .psize = 54,
1699 .digest = "\x4e\xce\x08\x44\x85\x81\x3e\x90"
1700 "\x88\xd2\xc6\x3a\x04\x1b\xc5\xb4"
1701 "\x4f\x9e\xf1\x01\x2a\x2b\x58\x8f"
1702 "\x3c\xd1\x1f\x05\x03\x3a\xc4\xc6"
1703 "\x0c\x2e\xf6\xab\x40\x30\xfe\x82"
1704 "\x96\x24\x8d\xf1\x63\xf4\x49\x52",
1705 }, {
1706 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1707 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1708 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1709 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1710 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1711 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1712 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1713 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1714 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1715 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1716 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1717 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1718 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1719 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1720 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1721 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1722 "\xaa\xaa\xaa",
1723 .ksize = 131,
1724 .plaintext = "This is a test u"
1725 "sing a larger th"
1726 "an block-size ke"
1727 "y and a larger t"
1728 "han block-size d"
1729 "ata. The key nee"
1730 "ds to be hashed "
1731 "before being use"
1732 "d by the HMAC al"
1733 "gorithm.",
1734 .psize = 152,
1735 .digest = "\x66\x17\x17\x8e\x94\x1f\x02\x0d"
1736 "\x35\x1e\x2f\x25\x4e\x8f\xd3\x2c"
1737 "\x60\x24\x20\xfe\xb0\xb8\xfb\x9a"
1738 "\xdc\xce\xbb\x82\x46\x1e\x99\xc5"
1739 "\xa6\x78\xcc\x31\xe7\x99\x17\x6d"
1740 "\x38\x60\xe6\x11\x0c\x46\x52\x3e",
1741 },
1742};
1743
1744/*
1745 * SHA512 HMAC test vectors from RFC4231
1746 */
1747
1748#define HMAC_SHA512_TEST_VECTORS 4
1749
1750static struct hash_testvec hmac_sha512_tv_template[] = {
1751 {
1752 .key = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1753 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1754 "\x0b\x0b\x0b\x0b",
1755 .ksize = 20,
1756 .plaintext = "Hi There",
1757 .psize = 8,
1758 .digest = "\x87\xaa\x7c\xde\xa5\xef\x61\x9d"
1759 "\x4f\xf0\xb4\x24\x1a\x1d\x6c\xb0"
1760 "\x23\x79\xf4\xe2\xce\x4e\xc2\x78"
1761 "\x7a\xd0\xb3\x05\x45\xe1\x7c\xde"
1762 "\xda\xa8\x33\xb7\xd6\xb8\xa7\x02"
1763 "\x03\x8b\x27\x4e\xae\xa3\xf4\xe4"
1764 "\xbe\x9d\x91\x4e\xeb\x61\xf1\x70"
1765 "\x2e\x69\x6c\x20\x3a\x12\x68\x54",
1766 }, {
1767 .key = "Jefe",
1768 .ksize = 4,
1769 .plaintext = "what do ya want for nothing?",
1770 .psize = 28,
1771 .digest = "\x16\x4b\x7a\x7b\xfc\xf8\x19\xe2"
1772 "\xe3\x95\xfb\xe7\x3b\x56\xe0\xa3"
1773 "\x87\xbd\x64\x22\x2e\x83\x1f\xd6"
1774 "\x10\x27\x0c\xd7\xea\x25\x05\x54"
1775 "\x97\x58\xbf\x75\xc0\x5a\x99\x4a"
1776 "\x6d\x03\x4f\x65\xf8\xf0\xe6\xfd"
1777 "\xca\xea\xb1\xa3\x4d\x4a\x6b\x4b"
1778 "\x63\x6e\x07\x0a\x38\xbc\xe7\x37",
1779 .np = 4,
1780 .tap = { 7, 7, 7, 7 }
1781 }, {
1782 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1783 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1784 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1785 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1786 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1787 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1788 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1789 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1790 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1791 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1792 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1793 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1794 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1795 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1796 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1797 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1798 "\xaa\xaa\xaa",
1799 .ksize = 131,
1800 .plaintext = "Test Using Large"
1801 "r Than Block-Siz"
1802 "e Key - Hash Key"
1803 " First",
1804 .psize = 54,
1805 .digest = "\x80\xb2\x42\x63\xc7\xc1\xa3\xeb"
1806 "\xb7\x14\x93\xc1\xdd\x7b\xe8\xb4"
1807 "\x9b\x46\xd1\xf4\x1b\x4a\xee\xc1"
1808 "\x12\x1b\x01\x37\x83\xf8\xf3\x52"
1809 "\x6b\x56\xd0\x37\xe0\x5f\x25\x98"
1810 "\xbd\x0f\xd2\x21\x5d\x6a\x1e\x52"
1811 "\x95\xe6\x4f\x73\xf6\x3f\x0a\xec"
1812 "\x8b\x91\x5a\x98\x5d\x78\x65\x98",
1813 }, {
1814 .key = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1815 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1816 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1817 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1818 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1819 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1820 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1821 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1822 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1823 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1824 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1825 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1826 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1827 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1828 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1829 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1830 "\xaa\xaa\xaa",
1831 .ksize = 131,
1832 .plaintext =
1833 "This is a test u"
1834 "sing a larger th"
1835 "an block-size ke"
1836 "y and a larger t"
1837 "han block-size d"
1838 "ata. The key nee"
1839 "ds to be hashed "
1840 "before being use"
1841 "d by the HMAC al"
1842 "gorithm.",
1843 .psize = 152,
1844 .digest = "\xe3\x7b\x6a\x77\x5d\xc8\x7d\xba"
1845 "\xa4\xdf\xa9\xf9\x6e\x5e\x3f\xfd"
1846 "\xde\xbd\x71\xf8\x86\x72\x89\x86"
1847 "\x5d\xf5\xa3\x2d\x20\xcd\xc9\x44"
1848 "\xb6\x02\x2c\xac\x3c\x49\x82\xb1"
1849 "\x0d\x5e\xeb\x55\xc3\xe4\xde\x15"
1850 "\x13\x46\x76\xfb\x6d\xe0\x44\x60"
1851 "\x65\xc9\x74\x40\xfa\x8c\x6a\x58",
1852 },
1853};
1854
1855/*
1856 * DES test vectors.
1857 */
1858#define DES_ENC_TEST_VECTORS 10
1859#define DES_DEC_TEST_VECTORS 4
1860#define DES_CBC_ENC_TEST_VECTORS 5
1861#define DES_CBC_DEC_TEST_VECTORS 4
1862#define DES3_EDE_ENC_TEST_VECTORS 3
1863#define DES3_EDE_DEC_TEST_VECTORS 3
1864#define DES3_EDE_CBC_ENC_TEST_VECTORS 1
1865#define DES3_EDE_CBC_DEC_TEST_VECTORS 1
1866
1867static struct cipher_testvec des_enc_tv_template[] = {
1868 { /* From Applied Cryptography */
1869 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1870 .klen = 8,
1871 .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1872 .ilen = 8,
1873 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1874 .rlen = 8,
1875 }, { /* Same key, different plaintext block */
1876 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1877 .klen = 8,
1878 .input = "\x22\x33\x44\x55\x66\x77\x88\x99",
1879 .ilen = 8,
1880 .result = "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1881 .rlen = 8,
1882 }, { /* Sbox test from NBS */
1883 .key = "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57",
1884 .klen = 8,
1885 .input = "\x01\xa1\xd6\xd0\x39\x77\x67\x42",
1886 .ilen = 8,
1887 .result = "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
1888 .rlen = 8,
1889 }, { /* Three blocks */
1890 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1891 .klen = 8,
1892 .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1893 "\x22\x33\x44\x55\x66\x77\x88\x99"
1894 "\xca\xfe\xba\xbe\xfe\xed\xbe\xef",
1895 .ilen = 24,
1896 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1897 "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
1898 "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90",
1899 .rlen = 24,
1900 }, { /* Weak key */
1901 .fail = 1,
1902 .wk = 1,
1903 .key = "\x01\x01\x01\x01\x01\x01\x01\x01",
1904 .klen = 8,
1905 .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1906 .ilen = 8,
1907 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1908 .rlen = 8,
1909 }, { /* Two blocks -- for testing encryption across pages */
1910 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1911 .klen = 8,
1912 .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1913 "\x22\x33\x44\x55\x66\x77\x88\x99",
1914 .ilen = 16,
1915 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1916 "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1917 .rlen = 16,
1918 .np = 2,
1919 .tap = { 8, 8 }
1920 }, { /* Four blocks -- for testing encryption with chunking */
1921 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1922 .klen = 8,
1923 .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1924 "\x22\x33\x44\x55\x66\x77\x88\x99"
1925 "\xca\xfe\xba\xbe\xfe\xed\xbe\xef"
1926 "\x22\x33\x44\x55\x66\x77\x88\x99",
1927 .ilen = 32,
1928 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1929 "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
1930 "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90"
1931 "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1932 .rlen = 32,
1933 .np = 3,
1934 .tap = { 14, 10, 8 }
1935 }, {
1936 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1937 .klen = 8,
1938 .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1939 "\x22\x33\x44\x55\x66\x77\x88\x99"
1940 "\xca\xfe\xba\xbe\xfe\xed\xbe\xef",
1941 .ilen = 24,
1942 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1943 "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
1944 "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90",
1945 .rlen = 24,
1946 .np = 4,
1947 .tap = { 2, 1, 3, 18 }
1948 }, {
1949 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1950 .klen = 8,
1951 .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1952 "\x22\x33\x44\x55\x66\x77\x88\x99",
1953 .ilen = 16,
1954 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1955 "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1956 .rlen = 16,
1957 .np = 5,
1958 .tap = { 2, 2, 2, 2, 8 }
1959 }, {
1960 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1961 .klen = 8,
1962 .input = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1963 .ilen = 8,
1964 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1965 .rlen = 8,
1966 .np = 8,
1967 .tap = { 1, 1, 1, 1, 1, 1, 1, 1 }
1968 },
1969};
1970
1971static struct cipher_testvec des_dec_tv_template[] = {
1972 { /* From Applied Cryptography */
1973 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1974 .klen = 8,
1975 .input = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1976 .ilen = 8,
1977 .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1978 .rlen = 8,
1979 }, { /* Sbox test from NBS */
1980 .key = "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57",
1981 .klen = 8,
1982 .input = "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
1983 .ilen = 8,
1984 .result = "\x01\xa1\xd6\xd0\x39\x77\x67\x42",
1985 .rlen = 8,
1986 }, { /* Two blocks, for chunking test */
1987 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1988 .klen = 8,
1989 .input = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1990 "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
1991 .ilen = 16,
1992 .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1993 "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5",
1994 .rlen = 16,
1995 .np = 2,
1996 .tap = { 8, 8 }
1997 }, {
1998 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1999 .klen = 8,
2000 .input = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2001 "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
2002 .ilen = 16,
2003 .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2004 "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5",
2005 .rlen = 16,
2006 .np = 3,
2007 .tap = { 3, 12, 1 }
2008 },
2009};
2010
2011static struct cipher_testvec des_cbc_enc_tv_template[] = {
2012 { /* From OpenSSL */
2013 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2014 .klen = 8,
2015 .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2016 .input = "\x37\x36\x35\x34\x33\x32\x31\x20"
2017 "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2018 "\x68\x65\x20\x74\x69\x6d\x65\x20",
2019 .ilen = 24,
2020 .result = "\xcc\xd1\x73\xff\xab\x20\x39\xf4"
2021 "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb"
2022 "\x46\x8e\x91\x15\x78\x88\xba\x68",
2023 .rlen = 24,
2024 }, { /* FIPS Pub 81 */
2025 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2026 .klen = 8,
2027 .iv = "\x12\x34\x56\x78\x90\xab\xcd\xef",
2028 .input = "\x4e\x6f\x77\x20\x69\x73\x20\x74",
2029 .ilen = 8,
2030 .result = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2031 .rlen = 8,
2032 }, {
2033 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2034 .klen = 8,
2035 .iv = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2036 .input = "\x68\x65\x20\x74\x69\x6d\x65\x20",
2037 .ilen = 8,
2038 .result = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2039 .rlen = 8,
2040 }, {
2041 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2042 .klen = 8,
2043 .iv = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2044 .input = "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2045 .ilen = 8,
2046 .result = "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2047 .rlen = 8,
2048 }, { /* Copy of openssl vector for chunk testing */
2049 /* From OpenSSL */
2050 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2051 .klen = 8,
2052 .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2053 .input = "\x37\x36\x35\x34\x33\x32\x31\x20"
2054 "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2055 "\x68\x65\x20\x74\x69\x6d\x65\x20",
2056 .ilen = 24,
2057 .result = "\xcc\xd1\x73\xff\xab\x20\x39\xf4"
2058 "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb"
2059 "\x46\x8e\x91\x15\x78\x88\xba\x68",
2060 .rlen = 24,
2061 .np = 2,
2062 .tap = { 13, 11 }
2063 },
2064};
2065
2066static struct cipher_testvec des_cbc_dec_tv_template[] = {
2067 { /* FIPS Pub 81 */
2068 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2069 .klen = 8,
2070 .iv = "\x12\x34\x56\x78\x90\xab\xcd\xef",
2071 .input = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2072 .ilen = 8,
2073 .result = "\x4e\x6f\x77\x20\x69\x73\x20\x74",
2074 .rlen = 8,
2075 }, {
2076 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2077 .klen = 8,
2078 .iv = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2079 .input = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2080 .ilen = 8,
2081 .result = "\x68\x65\x20\x74\x69\x6d\x65\x20",
2082 .rlen = 8,
2083 }, {
2084 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2085 .klen = 8,
2086 .iv = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2087 .input = "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2088 .ilen = 8,
2089 .result = "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2090 .rlen = 8,
2091 }, { /* Copy of above, for chunk testing */
2092 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2093 .klen = 8,
2094 .iv = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2095 .input = "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2096 .ilen = 8,
2097 .result = "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2098 .rlen = 8,
2099 .np = 2,
2100 .tap = { 4, 4 }
2101 },
2102};
2103
2104static struct cipher_testvec des3_ede_enc_tv_template[] = {
2105 { /* These are from openssl */
2106 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2107 "\x55\x55\x55\x55\x55\x55\x55\x55"
2108 "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2109 .klen = 24,
2110 .input = "\x73\x6f\x6d\x65\x64\x61\x74\x61",
2111 .ilen = 8,
2112 .result = "\x18\xd7\x48\xe5\x63\x62\x05\x72",
2113 .rlen = 8,
2114 }, {
2115 .key = "\x03\x52\x02\x07\x67\x20\x82\x17"
2116 "\x86\x02\x87\x66\x59\x08\x21\x98"
2117 "\x64\x05\x6a\xbd\xfe\xa9\x34\x57",
2118 .klen = 24,
2119 .input = "\x73\x71\x75\x69\x67\x67\x6c\x65",
2120 .ilen = 8,
2121 .result = "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30",
2122 .rlen = 8,
2123 }, {
2124 .key = "\x10\x46\x10\x34\x89\x98\x80\x20"
2125 "\x91\x07\xd0\x15\x89\x19\x01\x01"
2126 "\x19\x07\x92\x10\x98\x1a\x01\x01",
2127 .klen = 24,
2128 .input = "\x00\x00\x00\x00\x00\x00\x00\x00",
2129 .ilen = 8,
2130 .result = "\xe1\xef\x62\xc3\x32\xfe\x82\x5b",
2131 .rlen = 8,
2132 },
2133};
2134
2135static struct cipher_testvec des3_ede_dec_tv_template[] = {
2136 { /* These are from openssl */
2137 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2138 "\x55\x55\x55\x55\x55\x55\x55\x55"
2139 "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2140 .klen = 24,
2141 .input = "\x18\xd7\x48\xe5\x63\x62\x05\x72",
2142 .ilen = 8,
2143 .result = "\x73\x6f\x6d\x65\x64\x61\x74\x61",
2144 .rlen = 8,
2145 }, {
2146 .key = "\x03\x52\x02\x07\x67\x20\x82\x17"
2147 "\x86\x02\x87\x66\x59\x08\x21\x98"
2148 "\x64\x05\x6a\xbd\xfe\xa9\x34\x57",
2149 .klen = 24,
2150 .input = "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30",
2151 .ilen = 8,
2152 .result = "\x73\x71\x75\x69\x67\x67\x6c\x65",
2153 .rlen = 8,
2154 }, {
2155 .key = "\x10\x46\x10\x34\x89\x98\x80\x20"
2156 "\x91\x07\xd0\x15\x89\x19\x01\x01"
2157 "\x19\x07\x92\x10\x98\x1a\x01\x01",
2158 .klen = 24,
2159 .input = "\xe1\xef\x62\xc3\x32\xfe\x82\x5b",
2160 .ilen = 8,
2161 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
2162 .rlen = 8,
2163 },
2164};
2165
2166static struct cipher_testvec des3_ede_cbc_enc_tv_template[] = {
2167 { /* Generated from openssl */
2168 .key = "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24"
2169 "\x44\x4D\x99\x5A\x12\xD6\x40\xC0"
2170 "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8",
2171 .klen = 24,
2172 .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42",
2173 .input = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e"
2174 "\x53\x20\x63\x65\x65\x72\x73\x74"
2175 "\x54\x20\x6f\x6f\x4d\x20\x6e\x61"
2176 "\x20\x79\x65\x53\x72\x63\x74\x65"
2177 "\x20\x73\x6f\x54\x20\x6f\x61\x4d"
2178 "\x79\x6e\x53\x20\x63\x65\x65\x72"
2179 "\x73\x74\x54\x20\x6f\x6f\x4d\x20"
2180 "\x6e\x61\x20\x79\x65\x53\x72\x63"
2181 "\x74\x65\x20\x73\x6f\x54\x20\x6f"
2182 "\x61\x4d\x79\x6e\x53\x20\x63\x65"
2183 "\x65\x72\x73\x74\x54\x20\x6f\x6f"
2184 "\x4d\x20\x6e\x61\x20\x79\x65\x53"
2185 "\x72\x63\x74\x65\x20\x73\x6f\x54"
2186 "\x20\x6f\x61\x4d\x79\x6e\x53\x20"
2187 "\x63\x65\x65\x72\x73\x74\x54\x20"
2188 "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79",
2189 .ilen = 128,
2190 .result = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4"
2191 "\x67\x17\x21\xc7\x6e\x8a\xd5\x49"
2192 "\x74\xb3\x49\x05\xc5\x1c\xd0\xed"
2193 "\x12\x56\x5c\x53\x96\xb6\x00\x7d"
2194 "\x90\x48\xfc\xf5\x8d\x29\x39\xcc"
2195 "\x8a\xd5\x35\x18\x36\x23\x4e\xd7"
2196 "\x76\xd1\xda\x0c\x94\x67\xbb\x04"
2197 "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea"
2198 "\x22\x64\x47\xaa\x8f\x75\x13\xbf"
2199 "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a"
2200 "\x71\x63\x2e\x89\x7b\x1e\x12\xca"
2201 "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a"
2202 "\xd6\xf9\x21\x31\x62\x44\x45\xa6"
2203 "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc"
2204 "\x9d\xde\xa5\x70\xe9\x42\x45\x8a"
2205 "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19",
2206 .rlen = 128,
2207 },
2208};
2209
2210static struct cipher_testvec des3_ede_cbc_dec_tv_template[] = {
2211 { /* Generated from openssl */
2212 .key = "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24"
2213 "\x44\x4D\x99\x5A\x12\xD6\x40\xC0"
2214 "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8",
2215 .klen = 24,
2216 .iv = "\x7D\x33\x88\x93\x0F\x93\xB2\x42",
2217 .input = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4"
2218 "\x67\x17\x21\xc7\x6e\x8a\xd5\x49"
2219 "\x74\xb3\x49\x05\xc5\x1c\xd0\xed"
2220 "\x12\x56\x5c\x53\x96\xb6\x00\x7d"
2221 "\x90\x48\xfc\xf5\x8d\x29\x39\xcc"
2222 "\x8a\xd5\x35\x18\x36\x23\x4e\xd7"
2223 "\x76\xd1\xda\x0c\x94\x67\xbb\x04"
2224 "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea"
2225 "\x22\x64\x47\xaa\x8f\x75\x13\xbf"
2226 "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a"
2227 "\x71\x63\x2e\x89\x7b\x1e\x12\xca"
2228 "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a"
2229 "\xd6\xf9\x21\x31\x62\x44\x45\xa6"
2230 "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc"
2231 "\x9d\xde\xa5\x70\xe9\x42\x45\x8a"
2232 "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19",
2233 .ilen = 128,
2234 .result = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e"
2235 "\x53\x20\x63\x65\x65\x72\x73\x74"
2236 "\x54\x20\x6f\x6f\x4d\x20\x6e\x61"
2237 "\x20\x79\x65\x53\x72\x63\x74\x65"
2238 "\x20\x73\x6f\x54\x20\x6f\x61\x4d"
2239 "\x79\x6e\x53\x20\x63\x65\x65\x72"
2240 "\x73\x74\x54\x20\x6f\x6f\x4d\x20"
2241 "\x6e\x61\x20\x79\x65\x53\x72\x63"
2242 "\x74\x65\x20\x73\x6f\x54\x20\x6f"
2243 "\x61\x4d\x79\x6e\x53\x20\x63\x65"
2244 "\x65\x72\x73\x74\x54\x20\x6f\x6f"
2245 "\x4d\x20\x6e\x61\x20\x79\x65\x53"
2246 "\x72\x63\x74\x65\x20\x73\x6f\x54"
2247 "\x20\x6f\x61\x4d\x79\x6e\x53\x20"
2248 "\x63\x65\x65\x72\x73\x74\x54\x20"
2249 "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79",
2250 .rlen = 128,
2251 },
2252};
2253
2254/*
2255 * Blowfish test vectors.
2256 */
2257#define BF_ENC_TEST_VECTORS 6
2258#define BF_DEC_TEST_VECTORS 6
2259#define BF_CBC_ENC_TEST_VECTORS 1
2260#define BF_CBC_DEC_TEST_VECTORS 1
2261
2262static struct cipher_testvec bf_enc_tv_template[] = {
2263 { /* DES test vectors from OpenSSL */
2264 .key = "\x00\x00\x00\x00\x00\x00\x00\x00",
2265 .klen = 8,
2266 .input = "\x00\x00\x00\x00\x00\x00\x00\x00",
2267 .ilen = 8,
2268 .result = "\x4e\xf9\x97\x45\x61\x98\xdd\x78",
2269 .rlen = 8,
2270 }, {
2271 .key = "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e",
2272 .klen = 8,
2273 .input = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2274 .ilen = 8,
2275 .result = "\xa7\x90\x79\x51\x08\xea\x3c\xae",
2276 .rlen = 8,
2277 }, {
2278 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2279 .klen = 8,
2280 .input = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2281 .ilen = 8,
2282 .result = "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82",
2283 .rlen = 8,
2284 }, { /* Vary the keylength... */
2285 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2286 "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f",
2287 .klen = 16,
2288 .input = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2289 .ilen = 8,
2290 .result = "\x93\x14\x28\x87\xee\x3b\xe1\x5c",
2291 .rlen = 8,
2292 }, {
2293 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2294 "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2295 "\x00\x11\x22\x33\x44",
2296 .klen = 21,
2297 .input = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2298 .ilen = 8,
2299 .result = "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f",
2300 .rlen = 8,
2301 }, { /* Generated with bf488 */
2302 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2303 "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2304 "\x00\x11\x22\x33\x44\x55\x66\x77"
2305 "\x04\x68\x91\x04\xc2\xfd\x3b\x2f"
2306 "\x58\x40\x23\x64\x1a\xba\x61\x76"
2307 "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e"
2308 "\xff\xff\xff\xff\xff\xff\xff\xff",
2309 .klen = 56,
2310 .input = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2311 .ilen = 8,
2312 .result = "\xc0\x45\x04\x01\x2e\x4e\x1f\x53",
2313 .rlen = 8,
2314 },
2315};
2316
2317static struct cipher_testvec bf_dec_tv_template[] = {
2318 { /* DES test vectors from OpenSSL */
2319 .key = "\x00\x00\x00\x00\x00\x00\x00\x00",
2320 .klen = 8,
2321 .input = "\x4e\xf9\x97\x45\x61\x98\xdd\x78",
2322 .ilen = 8,
2323 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
2324 .rlen = 8,
2325 }, {
2326 .key = "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e",
2327 .klen = 8,
2328 .input = "\xa7\x90\x79\x51\x08\xea\x3c\xae",
2329 .ilen = 8,
2330 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2331 .rlen = 8,
2332 }, {
2333 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2334 .klen = 8,
2335 .input = "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82",
2336 .ilen = 8,
2337 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2338 .rlen = 8,
2339 }, { /* Vary the keylength... */
2340 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2341 "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f",
2342 .klen = 16,
2343 .input = "\x93\x14\x28\x87\xee\x3b\xe1\x5c",
2344 .ilen = 8,
2345 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2346 .rlen = 8,
2347 }, {
2348 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2349 "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2350 "\x00\x11\x22\x33\x44",
2351 .klen = 21,
2352 .input = "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f",
2353 .ilen = 8,
2354 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2355 .rlen = 8,
2356 }, { /* Generated with bf488, using OpenSSL, Libgcrypt and Nettle */
2357 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2358 "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2359 "\x00\x11\x22\x33\x44\x55\x66\x77"
2360 "\x04\x68\x91\x04\xc2\xfd\x3b\x2f"
2361 "\x58\x40\x23\x64\x1a\xba\x61\x76"
2362 "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e"
2363 "\xff\xff\xff\xff\xff\xff\xff\xff",
2364 .klen = 56,
2365 .input = "\xc0\x45\x04\x01\x2e\x4e\x1f\x53",
2366 .ilen = 8,
2367 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2368 .rlen = 8,
2369 },
2370};
2371
2372static struct cipher_testvec bf_cbc_enc_tv_template[] = {
2373 { /* From OpenSSL */
2374 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2375 "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2376 .klen = 16,
2377 .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2378 .input = "\x37\x36\x35\x34\x33\x32\x31\x20"
2379 "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2380 "\x68\x65\x20\x74\x69\x6d\x65\x20"
2381 "\x66\x6f\x72\x20\x00\x00\x00\x00",
2382 .ilen = 32,
2383 .result = "\x6b\x77\xb4\xd6\x30\x06\xde\xe6"
2384 "\x05\xb1\x56\xe2\x74\x03\x97\x93"
2385 "\x58\xde\xb9\xe7\x15\x46\x16\xd9"
2386 "\x59\xf1\x65\x2b\xd5\xff\x92\xcc",
2387 .rlen = 32,
2388 },
2389};
2390
2391static struct cipher_testvec bf_cbc_dec_tv_template[] = {
2392 { /* From OpenSSL */
2393 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2394 "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2395 .klen = 16,
2396 .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2397 .input = "\x6b\x77\xb4\xd6\x30\x06\xde\xe6"
2398 "\x05\xb1\x56\xe2\x74\x03\x97\x93"
2399 "\x58\xde\xb9\xe7\x15\x46\x16\xd9"
2400 "\x59\xf1\x65\x2b\xd5\xff\x92\xcc",
2401 .ilen = 32,
2402 .result = "\x37\x36\x35\x34\x33\x32\x31\x20"
2403 "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2404 "\x68\x65\x20\x74\x69\x6d\x65\x20"
2405 "\x66\x6f\x72\x20\x00\x00\x00\x00",
2406 .rlen = 32,
2407 },
2408};
2409
2410/*
2411 * Twofish test vectors.
2412 */
2413#define TF_ENC_TEST_VECTORS 3
2414#define TF_DEC_TEST_VECTORS 3
2415#define TF_CBC_ENC_TEST_VECTORS 4
2416#define TF_CBC_DEC_TEST_VECTORS 4
2417
2418static struct cipher_testvec tf_enc_tv_template[] = {
2419 {
2420 .key = zeroed_string,
2421 .klen = 16,
2422 .input = zeroed_string,
2423 .ilen = 16,
2424 .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2425 "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2426 .rlen = 16,
2427 }, {
2428 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2429 "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2430 "\x00\x11\x22\x33\x44\x55\x66\x77",
2431 .klen = 24,
2432 .input = zeroed_string,
2433 .ilen = 16,
2434 .result = "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf"
2435 "\x50\x1f\x13\xb8\x92\xbd\x22\x48",
2436 .rlen = 16,
2437 }, {
2438 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2439 "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2440 "\x00\x11\x22\x33\x44\x55\x66\x77"
2441 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2442 .klen = 32,
2443 .input = zeroed_string,
2444 .ilen = 16,
2445 .result = "\x37\x52\x7b\xe0\x05\x23\x34\xb8"
2446 "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20",
2447 .rlen = 16,
2448 },
2449};
2450
2451static struct cipher_testvec tf_dec_tv_template[] = {
2452 {
2453 .key = zeroed_string,
2454 .klen = 16,
2455 .input = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2456 "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2457 .ilen = 16,
2458 .result = zeroed_string,
2459 .rlen = 16,
2460 }, {
2461 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2462 "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2463 "\x00\x11\x22\x33\x44\x55\x66\x77",
2464 .klen = 24,
2465 .input = "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf"
2466 "\x50\x1f\x13\xb8\x92\xbd\x22\x48",
2467 .ilen = 16,
2468 .result = zeroed_string,
2469 .rlen = 16,
2470 }, {
2471 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2472 "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2473 "\x00\x11\x22\x33\x44\x55\x66\x77"
2474 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2475 .klen = 32,
2476 .input = "\x37\x52\x7b\xe0\x05\x23\x34\xb8"
2477 "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20",
2478 .ilen = 16,
2479 .result = zeroed_string,
2480 .rlen = 16,
2481 },
2482};
2483
2484static struct cipher_testvec tf_cbc_enc_tv_template[] = {
2485 { /* Generated with Nettle */
2486 .key = zeroed_string,
2487 .klen = 16,
2488 .iv = zeroed_string,
2489 .input = zeroed_string,
2490 .ilen = 16,
2491 .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2492 "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2493 .rlen = 16,
2494 }, {
2495 .key = zeroed_string,
2496 .klen = 16,
2497 .iv = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2498 "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2499 .input = zeroed_string,
2500 .ilen = 16,
2501 .result = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2502 "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2503 .rlen = 16,
2504 }, {
2505 .key = zeroed_string,
2506 .klen = 16,
2507 .iv = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2508 "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2509 .input = zeroed_string,
2510 .ilen = 16,
2511 .result = "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2512 "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2513 .rlen = 16,
2514 }, {
2515 .key = zeroed_string,
2516 .klen = 16,
2517 .iv = zeroed_string,
2518 .input = zeroed_string,
2519 .ilen = 48,
2520 .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2521 "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a"
2522 "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2523 "\x86\xcb\x08\x6b\x78\x9f\x54\x19"
2524 "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2525 "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2526 .rlen = 48,
2527 },
2528};
2529
2530static struct cipher_testvec tf_cbc_dec_tv_template[] = {
2531 { /* Reverse of the first four above */
2532 .key = zeroed_string,
2533 .klen = 16,
2534 .iv = zeroed_string,
2535 .input = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2536 "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2537 .ilen = 16,
2538 .result = zeroed_string,
2539 .rlen = 16,
2540 }, {
2541 .key = zeroed_string,
2542 .klen = 16,
2543 .iv = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2544 "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2545 .input = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2546 "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2547 .ilen = 16,
2548 .result = zeroed_string,
2549 .rlen = 16,
2550 }, {
2551 .key = zeroed_string,
2552 .klen = 16,
2553 .iv = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2554 "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2555 .input = "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2556 "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2557 .ilen = 16,
2558 .result = zeroed_string,
2559 .rlen = 16,
2560 }, {
2561 .key = zeroed_string,
2562 .klen = 16,
2563 .iv = zeroed_string,
2564 .input = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2565 "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a"
2566 "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2567 "\x86\xcb\x08\x6b\x78\x9f\x54\x19"
2568 "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2569 "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2570 .ilen = 48,
2571 .result = zeroed_string,
2572 .rlen = 48,
2573 },
2574};
2575
2576/*
2577 * Serpent test vectors. These are backwards because Serpent writes
2578 * octet sequences in right-to-left mode.
2579 */
2580#define SERPENT_ENC_TEST_VECTORS 4
2581#define SERPENT_DEC_TEST_VECTORS 4
2582
2583#define TNEPRES_ENC_TEST_VECTORS 4
2584#define TNEPRES_DEC_TEST_VECTORS 4
2585
2586static struct cipher_testvec serpent_enc_tv_template[] = {
2587 {
2588 .input = "\x00\x01\x02\x03\x04\x05\x06\x07"
2589 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2590 .ilen = 16,
2591 .result = "\x12\x07\xfc\xce\x9b\xd0\xd6\x47"
2592 "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2",
2593 .rlen = 16,
2594 }, {
2595 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
2596 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2597 .klen = 16,
2598 .input = "\x00\x01\x02\x03\x04\x05\x06\x07"
2599 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2600 .ilen = 16,
2601 .result = "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c"
2602 "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d",
2603 .rlen = 16,
2604 }, {
2605 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
2606 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2607 "\x10\x11\x12\x13\x14\x15\x16\x17"
2608 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2609 .klen = 32,
2610 .input = "\x00\x01\x02\x03\x04\x05\x06\x07"
2611 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2612 .ilen = 16,
2613 .result = "\xde\x26\x9f\xf8\x33\xe4\x32\xb8"
2614 "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c",
2615 .rlen = 16,
2616 }, {
2617 .key = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2618 .klen = 16,
2619 .input = zeroed_string,
2620 .ilen = 16,
2621 .result = "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c"
2622 "\x05\x34\x5a\x9d\xad\xbf\xaf\x49",
2623 .rlen = 16,
2624 },
2625};
2626
2627static struct cipher_testvec tnepres_enc_tv_template[] = {
2628 { /* KeySize=128, PT=0, I=1 */
2629 .input = "\x00\x00\x00\x00\x00\x00\x00\x00"
2630 "\x00\x00\x00\x00\x00\x00\x00\x00",
2631 .key = "\x80\x00\x00\x00\x00\x00\x00\x00"
2632 "\x00\x00\x00\x00\x00\x00\x00\x00",
2633 .klen = 16,
2634 .ilen = 16,
2635 .result = "\x49\xaf\xbf\xad\x9d\x5a\x34\x05"
2636 "\x2c\xd8\xff\xa5\x98\x6b\xd2\xdd",
2637 .rlen = 16,
2638 }, { /* KeySize=192, PT=0, I=1 */
2639 .key = "\x80\x00\x00\x00\x00\x00\x00\x00"
2640 "\x00\x00\x00\x00\x00\x00\x00\x00"
2641 "\x00\x00\x00\x00\x00\x00\x00\x00",
2642 .klen = 24,
2643 .input = "\x00\x00\x00\x00\x00\x00\x00\x00"
2644 "\x00\x00\x00\x00\x00\x00\x00\x00",
2645 .ilen = 16,
2646 .result = "\xe7\x8e\x54\x02\xc7\x19\x55\x68"
2647 "\xac\x36\x78\xf7\xa3\xf6\x0c\x66",
2648 .rlen = 16,
2649 }, { /* KeySize=256, PT=0, I=1 */
2650 .key = "\x80\x00\x00\x00\x00\x00\x00\x00"
2651 "\x00\x00\x00\x00\x00\x00\x00\x00"
2652 "\x00\x00\x00\x00\x00\x00\x00\x00"
2653 "\x00\x00\x00\x00\x00\x00\x00\x00",
2654 .klen = 32,
2655 .input = "\x00\x00\x00\x00\x00\x00\x00\x00"
2656 "\x00\x00\x00\x00\x00\x00\x00\x00",
2657 .ilen = 16,
2658 .result = "\xab\xed\x96\xe7\x66\xbf\x28\xcb"
2659 "\xc0\xeb\xd2\x1a\x82\xef\x08\x19",
2660 .rlen = 16,
2661 }, { /* KeySize=256, I=257 */
2662 .key = "\x1f\x1e\x1d\x1c\x1b\x1a\x19\x18"
2663 "\x17\x16\x15\x14\x13\x12\x11\x10"
2664 "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08"
2665 "\x07\x06\x05\x04\x03\x02\x01\x00",
2666 .klen = 32,
2667 .input = "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08"
2668 "\x07\x06\x05\x04\x03\x02\x01\x00",
2669 .ilen = 16,
2670 .result = "\x5c\xe7\x1c\x70\xd2\x88\x2e\x5b"
2671 "\xb8\x32\xe4\x33\xf8\x9f\x26\xde",
2672 .rlen = 16,
2673 },
2674};
2675
2676
2677static struct cipher_testvec serpent_dec_tv_template[] = {
2678 {
2679 .input = "\x12\x07\xfc\xce\x9b\xd0\xd6\x47"
2680 "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2",
2681 .ilen = 16,
2682 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2683 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2684 .rlen = 16,
2685 }, {
2686 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
2687 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2688 .klen = 16,
2689 .input = "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c"
2690 "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d",
2691 .ilen = 16,
2692 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2693 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2694 .rlen = 16,
2695 }, {
2696 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
2697 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2698 "\x10\x11\x12\x13\x14\x15\x16\x17"
2699 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2700 .klen = 32,
2701 .input = "\xde\x26\x9f\xf8\x33\xe4\x32\xb8"
2702 "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c",
2703 .ilen = 16,
2704 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2705 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2706 .rlen = 16,
2707 }, {
2708 .key = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2709 .klen = 16,
2710 .input = "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c"
2711 "\x05\x34\x5a\x9d\xad\xbf\xaf\x49",
2712 .ilen = 16,
2713 .result = zeroed_string,
2714 .rlen = 16,
2715 },
2716};
2717
2718static struct cipher_testvec tnepres_dec_tv_template[] = {
2719 {
2720 .input = "\x41\xcc\x6b\x31\x59\x31\x45\x97"
2721 "\x6d\x6f\xbb\x38\x4b\x37\x21\x28",
2722 .ilen = 16,
2723 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2724 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2725 .rlen = 16,
2726 }, {
2727 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
2728 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2729 .klen = 16,
2730 .input = "\xea\xf4\xd7\xfc\xd8\x01\x34\x47"
2731 "\x81\x45\x0b\xfa\x0c\xd6\xad\x6e",
2732 .ilen = 16,
2733 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2734 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2735 .rlen = 16,
2736 }, {
2737 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
2738 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2739 "\x10\x11\x12\x13\x14\x15\x16\x17"
2740 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2741 .klen = 32,
2742 .input = "\x64\xa9\x1a\x37\xed\x9f\xe7\x49"
2743 "\xa8\x4e\x76\xd6\xf5\x0d\x78\xee",
2744 .ilen = 16,
2745 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2746 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2747 .rlen = 16,
2748 }, { /* KeySize=128, I=121 */
2749 .key = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2750 .klen = 16,
2751 .input = "\x3d\xda\xbf\xc0\x06\xda\xab\x06"
2752 "\x46\x2a\xf4\xef\x81\x54\x4e\x26",
2753 .ilen = 16,
2754 .result = zeroed_string,
2755 .rlen = 16,
2756 },
2757};
2758
2759
2760/* Cast6 test vectors from RFC 2612 */
2761#define CAST6_ENC_TEST_VECTORS 3
2762#define CAST6_DEC_TEST_VECTORS 3
2763
2764static struct cipher_testvec cast6_enc_tv_template[] = {
2765 {
2766 .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2767 "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d",
2768 .klen = 16,
2769 .input = zeroed_string,
2770 .ilen = 16,
2771 .result = "\xc8\x42\xa0\x89\x72\xb4\x3d\x20"
2772 "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b",
2773 .rlen = 16,
2774 }, {
2775 .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2776 "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2777 "\xba\xc7\x7a\x77\x17\x94\x28\x63",
2778 .klen = 24,
2779 .input = zeroed_string,
2780 .ilen = 16,
2781 .result = "\x1b\x38\x6c\x02\x10\xdc\xad\xcb"
2782 "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8",
2783 .rlen = 16,
2784 }, {
2785 .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2786 "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2787 "\x8d\x7c\x47\xce\x26\x49\x08\x46"
2788 "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04",
2789 .klen = 32,
2790 .input = zeroed_string,
2791 .ilen = 16,
2792 .result = "\x4f\x6a\x20\x38\x28\x68\x97\xb9"
2793 "\xc9\x87\x01\x36\x55\x33\x17\xfa",
2794 .rlen = 16,
2795 },
2796};
2797
2798static struct cipher_testvec cast6_dec_tv_template[] = {
2799 {
2800 .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2801 "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d",
2802 .klen = 16,
2803 .input = "\xc8\x42\xa0\x89\x72\xb4\x3d\x20"
2804 "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b",
2805 .ilen = 16,
2806 .result = zeroed_string,
2807 .rlen = 16,
2808 }, {
2809 .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2810 "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2811 "\xba\xc7\x7a\x77\x17\x94\x28\x63",
2812 .klen = 24,
2813 .input = "\x1b\x38\x6c\x02\x10\xdc\xad\xcb"
2814 "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8",
2815 .ilen = 16,
2816 .result = zeroed_string,
2817 .rlen = 16,
2818 }, {
2819 .key = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2820 "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2821 "\x8d\x7c\x47\xce\x26\x49\x08\x46"
2822 "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04",
2823 .klen = 32,
2824 .input = "\x4f\x6a\x20\x38\x28\x68\x97\xb9"
2825 "\xc9\x87\x01\x36\x55\x33\x17\xfa",
2826 .ilen = 16,
2827 .result = zeroed_string,
2828 .rlen = 16,
2829 },
2830};
2831
2832
2833/*
2834 * AES test vectors.
2835 */
2836#define AES_ENC_TEST_VECTORS 3
2837#define AES_DEC_TEST_VECTORS 3
2838#define AES_CBC_ENC_TEST_VECTORS 4
2839#define AES_CBC_DEC_TEST_VECTORS 4
2840#define AES_LRW_ENC_TEST_VECTORS 8
2841#define AES_LRW_DEC_TEST_VECTORS 8
2842#define AES_XTS_ENC_TEST_VECTORS 4
2843#define AES_XTS_DEC_TEST_VECTORS 4
2844#define AES_CTR_ENC_TEST_VECTORS 7
2845#define AES_CTR_DEC_TEST_VECTORS 6
2846#define AES_GCM_ENC_TEST_VECTORS 9
2847#define AES_GCM_DEC_TEST_VECTORS 8
2848#define AES_CCM_ENC_TEST_VECTORS 7
2849#define AES_CCM_DEC_TEST_VECTORS 7
2850
2851static struct cipher_testvec aes_enc_tv_template[] = {
2852 { /* From FIPS-197 */
2853 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
2854 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2855 .klen = 16,
2856 .input = "\x00\x11\x22\x33\x44\x55\x66\x77"
2857 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2858 .ilen = 16,
2859 .result = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30"
2860 "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a",
2861 .rlen = 16,
2862 }, {
2863 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
2864 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2865 "\x10\x11\x12\x13\x14\x15\x16\x17",
2866 .klen = 24,
2867 .input = "\x00\x11\x22\x33\x44\x55\x66\x77"
2868 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2869 .ilen = 16,
2870 .result = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0"
2871 "\x6e\xaf\x70\xa0\xec\x0d\x71\x91",
2872 .rlen = 16,
2873 }, {
2874 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
2875 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2876 "\x10\x11\x12\x13\x14\x15\x16\x17"
2877 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2878 .klen = 32,
2879 .input = "\x00\x11\x22\x33\x44\x55\x66\x77"
2880 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2881 .ilen = 16,
2882 .result = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf"
2883 "\xea\xfc\x49\x90\x4b\x49\x60\x89",
2884 .rlen = 16,
2885 },
2886};
2887
2888static struct cipher_testvec aes_dec_tv_template[] = {
2889 { /* From FIPS-197 */
2890 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
2891 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2892 .klen = 16,
2893 .input = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30"
2894 "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a",
2895 .ilen = 16,
2896 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
2897 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2898 .rlen = 16,
2899 }, {
2900 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
2901 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2902 "\x10\x11\x12\x13\x14\x15\x16\x17",
2903 .klen = 24,
2904 .input = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0"
2905 "\x6e\xaf\x70\xa0\xec\x0d\x71\x91",
2906 .ilen = 16,
2907 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
2908 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2909 .rlen = 16,
2910 }, {
2911 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
2912 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2913 "\x10\x11\x12\x13\x14\x15\x16\x17"
2914 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2915 .klen = 32,
2916 .input = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf"
2917 "\xea\xfc\x49\x90\x4b\x49\x60\x89",
2918 .ilen = 16,
2919 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
2920 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2921 .rlen = 16,
2922 },
2923};
2924
2925static struct cipher_testvec aes_cbc_enc_tv_template[] = {
2926 { /* From RFC 3602 */
2927 .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
2928 "\x51\x2e\x03\xd5\x34\x12\x00\x06",
2929 .klen = 16,
2930 .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
2931 "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
2932 .input = "Single block msg",
2933 .ilen = 16,
2934 .result = "\xe3\x53\x77\x9c\x10\x79\xae\xb8"
2935 "\x27\x08\x94\x2d\xbe\x77\x18\x1a",
2936 .rlen = 16,
2937 }, {
2938 .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
2939 "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
2940 .klen = 16,
2941 .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
2942 "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
2943 .input = "\x00\x01\x02\x03\x04\x05\x06\x07"
2944 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2945 "\x10\x11\x12\x13\x14\x15\x16\x17"
2946 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2947 .ilen = 32,
2948 .result = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a"
2949 "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a"
2950 "\x75\x86\x60\x2d\x25\x3c\xff\xf9"
2951 "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1",
2952 .rlen = 32,
2953 }, { /* From NIST SP800-38A */
2954 .key = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
2955 "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
2956 "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
2957 .klen = 24,
2958 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07"
2959 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2960 .input = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
2961 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
2962 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
2963 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
2964 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
2965 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
2966 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
2967 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
2968 .ilen = 64,
2969 .result = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d"
2970 "\x71\x78\x18\x3a\x9f\xa0\x71\xe8"
2971 "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4"
2972 "\xe5\xe7\x38\x76\x3f\x69\x14\x5a"
2973 "\x57\x1b\x24\x20\x12\xfb\x7a\xe0"
2974 "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0"
2975 "\x08\xb0\xe2\x79\x88\x59\x88\x81"
2976 "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd",
2977 .rlen = 64,
2978 }, {
2979 .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
2980 "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
2981 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
2982 "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
2983 .klen = 32,
2984 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07"
2985 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2986 .input = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
2987 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
2988 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
2989 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
2990 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
2991 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
2992 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
2993 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
2994 .ilen = 64,
2995 .result = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba"
2996 "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6"
2997 "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d"
2998 "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d"
2999 "\x39\xf2\x33\x69\xa9\xd9\xba\xcf"
3000 "\xa5\x30\xe2\x63\x04\x23\x14\x61"
3001 "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc"
3002 "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b",
3003 .rlen = 64,
3004 },
3005};
3006
3007static struct cipher_testvec aes_cbc_dec_tv_template[] = {
3008 { /* From RFC 3602 */
3009 .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
3010 "\x51\x2e\x03\xd5\x34\x12\x00\x06",
3011 .klen = 16,
3012 .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
3013 "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
3014 .input = "\xe3\x53\x77\x9c\x10\x79\xae\xb8"
3015 "\x27\x08\x94\x2d\xbe\x77\x18\x1a",
3016 .ilen = 16,
3017 .result = "Single block msg",
3018 .rlen = 16,
3019 }, {
3020 .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
3021 "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
3022 .klen = 16,
3023 .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
3024 "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
3025 .input = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a"
3026 "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a"
3027 "\x75\x86\x60\x2d\x25\x3c\xff\xf9"
3028 "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1",
3029 .ilen = 32,
3030 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
3031 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3032 "\x10\x11\x12\x13\x14\x15\x16\x17"
3033 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
3034 .rlen = 32,
3035 }, { /* From NIST SP800-38A */
3036 .key = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
3037 "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
3038 "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
3039 .klen = 24,
3040 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07"
3041 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3042 .input = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d"
3043 "\x71\x78\x18\x3a\x9f\xa0\x71\xe8"
3044 "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4"
3045 "\xe5\xe7\x38\x76\x3f\x69\x14\x5a"
3046 "\x57\x1b\x24\x20\x12\xfb\x7a\xe0"
3047 "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0"
3048 "\x08\xb0\xe2\x79\x88\x59\x88\x81"
3049 "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd",
3050 .ilen = 64,
3051 .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3052 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3053 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3054 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3055 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3056 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3057 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3058 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3059 .rlen = 64,
3060 }, {
3061 .key = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
3062 "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
3063 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
3064 "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
3065 .klen = 32,
3066 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07"
3067 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3068 .input = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba"
3069 "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6"
3070 "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d"
3071 "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d"
3072 "\x39\xf2\x33\x69\xa9\xd9\xba\xcf"
3073 "\xa5\x30\xe2\x63\x04\x23\x14\x61"
3074 "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc"
3075 "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b",
3076 .ilen = 64,
3077 .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3078 "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3079 "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3080 "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3081 "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3082 "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3083 "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3084 "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3085 .rlen = 64,
3086 },
3087};
3088
3089static struct cipher_testvec aes_lrw_enc_tv_template[] = {
3090 /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */
3091 { /* LRW-32-AES 1 */
3092 .key = "\x45\x62\xac\x25\xf8\x28\x17\x6d"
3093 "\x4c\x26\x84\x14\xb5\x68\x01\x85"
3094 "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03"
3095 "\xee\x5a\x83\x0c\xcc\x09\x4c\x87",
3096 .klen = 32,
3097 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3098 "\x00\x00\x00\x00\x00\x00\x00\x01",
3099 .input = "\x30\x31\x32\x33\x34\x35\x36\x37"
3100 "\x38\x39\x41\x42\x43\x44\x45\x46",
3101 .ilen = 16,
3102 .result = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f"
3103 "\xe9\x5d\x48\x92\x54\x63\x4e\xb8",
3104 .rlen = 16,
3105 }, { /* LRW-32-AES 2 */
3106 .key = "\x59\x70\x47\x14\xf5\x57\x47\x8c"
3107 "\xd7\x79\xe8\x0f\x54\x88\x79\x44"
3108 "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea"
3109 "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf",
3110 .klen = 32,
3111 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3112 "\x00\x00\x00\x00\x00\x00\x00\x02",
3113 .input = "\x30\x31\x32\x33\x34\x35\x36\x37"
3114 "\x38\x39\x41\x42\x43\x44\x45\x46",
3115 .ilen = 16,
3116 .result = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5"
3117 "\x27\x4f\x07\x69\xb2\x60\xe1\x36",
3118 .rlen = 16,
3119 }, { /* LRW-32-AES 3 */
3120 .key = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50"
3121 "\x30\xfe\x69\xe2\x37\x7f\x98\x47"
3122 "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6"
3123 "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f",
3124 .klen = 32,
3125 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3126 "\x00\x00\x00\x02\x00\x00\x00\x00",
3127 .input = "\x30\x31\x32\x33\x34\x35\x36\x37"
3128 "\x38\x39\x41\x42\x43\x44\x45\x46",
3129 .ilen = 16,
3130 .result = "\x76\x32\x21\x83\xed\x8f\xf1\x82"
3131 "\xf9\x59\x62\x03\x69\x0e\x5e\x01",
3132 .rlen = 16,
3133 }, { /* LRW-32-AES 4 */
3134 .key = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15"
3135 "\x25\x83\xf7\x3c\x1f\x01\x28\x74"
3136 "\xca\xc6\xbc\x35\x4d\x4a\x65\x54"
3137 "\x90\xae\x61\xcf\x7b\xae\xbd\xcc"
3138 "\xad\xe4\x94\xc5\x4a\x29\xae\x70",
3139 .klen = 40,
3140 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3141 "\x00\x00\x00\x00\x00\x00\x00\x01",
3142 .input = "\x30\x31\x32\x33\x34\x35\x36\x37"
3143 "\x38\x39\x41\x42\x43\x44\x45\x46",
3144 .ilen = 16,
3145 .result = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0"
3146 "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41",
3147 .rlen = 16,
3148 }, { /* LRW-32-AES 5 */
3149 .key = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff"
3150 "\xf8\x86\xce\xac\x93\xc5\xad\xc6"
3151 "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd"
3152 "\x52\x13\xb2\xb7\xf0\xff\x11\xd8"
3153 "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f",
3154 .klen = 40,
3155 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3156 "\x00\x00\x00\x02\x00\x00\x00\x00",
3157 .input = "\x30\x31\x32\x33\x34\x35\x36\x37"
3158 "\x38\x39\x41\x42\x43\x44\x45\x46",
3159 .ilen = 16,
3160 .result = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65"
3161 "\xc8\x60\x48\x02\x87\xe3\x34\x06",
3162 .rlen = 16,
3163 }, { /* LRW-32-AES 6 */
3164 .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3165 "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3166 "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3167 "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3168 "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3169 "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3170 .klen = 48,
3171 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3172 "\x00\x00\x00\x00\x00\x00\x00\x01",
3173 .input = "\x30\x31\x32\x33\x34\x35\x36\x37"
3174 "\x38\x39\x41\x42\x43\x44\x45\x46",
3175 .ilen = 16,
3176 .result = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e"
3177 "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b",
3178 .rlen = 16,
3179 }, { /* LRW-32-AES 7 */
3180 .key = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d"
3181 "\xd4\x70\x98\x0b\xc7\x95\x84\xc8"
3182 "\xb2\xfb\x64\xce\x60\x97\x87\x8d"
3183 "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7"
3184 "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4"
3185 "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c",
3186 .klen = 48,
3187 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3188 "\x00\x00\x00\x02\x00\x00\x00\x00",
3189 .input = "\x30\x31\x32\x33\x34\x35\x36\x37"
3190 "\x38\x39\x41\x42\x43\x44\x45\x46",
3191 .ilen = 16,
3192 .result = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f"
3193 "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5",
3194 .rlen = 16,
3195 }, {
3196/* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */
3197 .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3198 "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3199 "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3200 "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3201 "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3202 "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3203 .klen = 48,
3204 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3205 "\x00\x00\x00\x00\x00\x00\x00\x01",
3206 .input = "\x05\x11\xb7\x18\xab\xc6\x2d\xac"
3207 "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c"
3208 "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8"
3209 "\x50\x38\x1f\x71\x49\xb6\x57\xd6"
3210 "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90"
3211 "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6"
3212 "\xad\x1e\x9e\x20\x5f\x38\xbe\x04"
3213 "\xda\x10\x8e\xed\xa2\xa4\x87\xab"
3214 "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c"
3215 "\xc9\xac\x42\x31\x95\x7c\xc9\x04"
3216 "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6"
3217 "\x15\xd7\x3f\x4f\x2f\x66\x69\x03"
3218 "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65"
3219 "\x4c\x96\x12\xed\x7c\x92\x03\x01"
3220 "\x6f\xbc\x35\x93\xac\xf1\x27\xf1"
3221 "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50"
3222 "\x89\xa4\x8e\x66\x44\x85\xcc\xfd"
3223 "\x33\x14\x70\xe3\x96\xb2\xc3\xd3"
3224 "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5"
3225 "\x2d\x64\x75\xdd\xb4\x54\xe6\x74"
3226 "\x8c\xd3\x9d\x9e\x86\xab\x51\x53"
3227 "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40"
3228 "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5"
3229 "\x76\x12\x73\x44\x1a\x56\xd7\x72"
3230 "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda"
3231 "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd"
3232 "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60"
3233 "\x1a\xe2\x70\x85\x58\xc2\x1b\x09"
3234 "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9"
3235 "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8"
3236 "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8"
3237 "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10"
3238 "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1"
3239 "\x90\x3e\x76\x4a\x74\xa4\x21\x2c"
3240 "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e"
3241 "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f"
3242 "\x8d\x23\x31\x74\x84\xeb\x88\x6e"
3243 "\xcc\xb9\xbc\x22\x83\x19\x07\x22"
3244 "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78"
3245 "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5"
3246 "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41"
3247 "\x3c\xce\x8f\x42\x60\x71\xa7\x75"
3248 "\x08\x40\x65\x8a\x82\xbf\xf5\x43"
3249 "\x71\x96\xa9\x4d\x44\x8a\x20\xbe"
3250 "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65"
3251 "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9"
3252 "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4"
3253 "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a"
3254 "\x62\x73\x65\xfd\x46\x63\x25\x3d"
3255 "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf"
3256 "\x24\xf3\xb4\xac\x64\xba\xdf\x4b"
3257 "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7"
3258 "\xc5\x68\x77\x84\x32\x2b\xcc\x85"
3259 "\x74\x96\xf0\x12\x77\x61\xb9\xeb"
3260 "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8"
3261 "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24"
3262 "\xda\x39\x87\x45\xc0\x2b\xbb\x01"
3263 "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce"
3264 "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6"
3265 "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32"
3266 "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45"
3267 "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6"
3268 "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4"
3269 "\x21\xc4\xc2\x75\x67\x89\x37\x0a",
3270 .ilen = 512,
3271 .result = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b"
3272 "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a"
3273 "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23"
3274 "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e"
3275 "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c"
3276 "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d"
3277 "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3"
3278 "\xe8\x58\x46\x97\x39\x51\x07\xde"
3279 "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3"
3280 "\x0e\x84\x23\x1d\x16\xd4\x1c\x59"
3281 "\x9c\x1a\x02\x55\xab\x3a\x97\x1d"
3282 "\xdf\xdd\xc7\x06\x51\xd7\x70\xae"
3283 "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82"
3284 "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68"
3285 "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce"
3286 "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98"
3287 "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2"
3288 "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f"
3289 "\xea\x20\xe7\xcb\x65\x77\x3a\xdf"
3290 "\xc8\x97\x67\x15\xc2\x2a\x27\xcc"
3291 "\x18\x55\xa1\x24\x0b\x24\x24\xaf"
3292 "\x5b\xec\x68\xb8\xc8\xf5\xba\x63"
3293 "\xff\xed\x89\xce\xd5\x3d\x88\xf3"
3294 "\x25\xef\x05\x7c\x3a\xef\xeb\xd8"
3295 "\x7a\x32\x0d\xd1\x1e\x58\x59\x99"
3296 "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c"
3297 "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50"
3298 "\x41\x30\x58\xc5\x62\x74\x52\x1d"
3299 "\x45\x24\x6a\x42\x64\x4f\x97\x1c"
3300 "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48"
3301 "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1"
3302 "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46"
3303 "\xe4\x81\x84\x95\x36\x59\x7a\x6b"
3304 "\xaa\xb3\x60\xad\xce\x9f\x9f\x28"
3305 "\xe0\x01\x75\x22\xc4\x4e\xa9\x62"
3306 "\x5c\x62\x0d\x00\xcb\x13\xe8\x43"
3307 "\x72\xd4\x2d\x53\x46\xb5\xd1\x16"
3308 "\x22\x18\xdf\x34\x33\xf5\xd6\x1c"
3309 "\xb8\x79\x78\x97\x94\xff\x72\x13"
3310 "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6"
3311 "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4"
3312 "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f"
3313 "\x2d\x14\x8e\x24\x61\x2c\xe1\x17"
3314 "\xcc\xce\x51\x0c\x19\x8a\x82\x30"
3315 "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd"
3316 "\xb7\xeb\xfa\xfd\x27\x51\xde\x85"
3317 "\x1e\x86\x53\x11\x53\x94\x00\xee"
3318 "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11"
3319 "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62"
3320 "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1"
3321 "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a"
3322 "\x9e\xfa\x31\x18\x45\x3c\x21\x33"
3323 "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1"
3324 "\x03\xad\x1b\x48\xd4\x67\x27\xf0"
3325 "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7"
3326 "\xdd\x2b\x01\x39\x04\x5a\x58\x7a"
3327 "\xf7\x11\x90\xec\xbd\x51\x5c\x32"
3328 "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6"
3329 "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d"
3330 "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4"
3331 "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3"
3332 "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29"
3333 "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7"
3334 "\x74\x3f\x7d\x58\x88\x75\xde\x3e",
3335 .rlen = 512,
3336 }
3337};
3338
3339static struct cipher_testvec aes_lrw_dec_tv_template[] = {
3340 /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */
3341 /* same as enc vectors with input and result reversed */
3342 { /* LRW-32-AES 1 */
3343 .key = "\x45\x62\xac\x25\xf8\x28\x17\x6d"
3344 "\x4c\x26\x84\x14\xb5\x68\x01\x85"
3345 "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03"
3346 "\xee\x5a\x83\x0c\xcc\x09\x4c\x87",
3347 .klen = 32,
3348 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3349 "\x00\x00\x00\x00\x00\x00\x00\x01",
3350 .input = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f"
3351 "\xe9\x5d\x48\x92\x54\x63\x4e\xb8",
3352 .ilen = 16,
3353 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3354 "\x38\x39\x41\x42\x43\x44\x45\x46",
3355 .rlen = 16,
3356 }, { /* LRW-32-AES 2 */
3357 .key = "\x59\x70\x47\x14\xf5\x57\x47\x8c"
3358 "\xd7\x79\xe8\x0f\x54\x88\x79\x44"
3359 "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea"
3360 "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf",
3361 .klen = 32,
3362 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3363 "\x00\x00\x00\x00\x00\x00\x00\x02",
3364 .input = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5"
3365 "\x27\x4f\x07\x69\xb2\x60\xe1\x36",
3366 .ilen = 16,
3367 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3368 "\x38\x39\x41\x42\x43\x44\x45\x46",
3369 .rlen = 16,
3370 }, { /* LRW-32-AES 3 */
3371 .key = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50"
3372 "\x30\xfe\x69\xe2\x37\x7f\x98\x47"
3373 "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6"
3374 "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f",
3375 .klen = 32,
3376 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3377 "\x00\x00\x00\x02\x00\x00\x00\x00",
3378 .input = "\x76\x32\x21\x83\xed\x8f\xf1\x82"
3379 "\xf9\x59\x62\x03\x69\x0e\x5e\x01",
3380 .ilen = 16,
3381 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3382 "\x38\x39\x41\x42\x43\x44\x45\x46",
3383 .rlen = 16,
3384 }, { /* LRW-32-AES 4 */
3385 .key = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15"
3386 "\x25\x83\xf7\x3c\x1f\x01\x28\x74"
3387 "\xca\xc6\xbc\x35\x4d\x4a\x65\x54"
3388 "\x90\xae\x61\xcf\x7b\xae\xbd\xcc"
3389 "\xad\xe4\x94\xc5\x4a\x29\xae\x70",
3390 .klen = 40,
3391 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3392 "\x00\x00\x00\x00\x00\x00\x00\x01",
3393 .input = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0"
3394 "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41",
3395 .ilen = 16,
3396 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3397 "\x38\x39\x41\x42\x43\x44\x45\x46",
3398 .rlen = 16,
3399 }, { /* LRW-32-AES 5 */
3400 .key = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff"
3401 "\xf8\x86\xce\xac\x93\xc5\xad\xc6"
3402 "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd"
3403 "\x52\x13\xb2\xb7\xf0\xff\x11\xd8"
3404 "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f",
3405 .klen = 40,
3406 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3407 "\x00\x00\x00\x02\x00\x00\x00\x00",
3408 .input = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65"
3409 "\xc8\x60\x48\x02\x87\xe3\x34\x06",
3410 .ilen = 16,
3411 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3412 "\x38\x39\x41\x42\x43\x44\x45\x46",
3413 .rlen = 16,
3414 }, { /* LRW-32-AES 6 */
3415 .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3416 "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3417 "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3418 "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3419 "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3420 "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3421 .klen = 48,
3422 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3423 "\x00\x00\x00\x00\x00\x00\x00\x01",
3424 .input = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e"
3425 "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b",
3426 .ilen = 16,
3427 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3428 "\x38\x39\x41\x42\x43\x44\x45\x46",
3429 .rlen = 16,
3430 }, { /* LRW-32-AES 7 */
3431 .key = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d"
3432 "\xd4\x70\x98\x0b\xc7\x95\x84\xc8"
3433 "\xb2\xfb\x64\xce\x60\x97\x87\x8d"
3434 "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7"
3435 "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4"
3436 "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c",
3437 .klen = 48,
3438 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3439 "\x00\x00\x00\x02\x00\x00\x00\x00",
3440 .input = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f"
3441 "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5",
3442 .ilen = 16,
3443 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3444 "\x38\x39\x41\x42\x43\x44\x45\x46",
3445 .rlen = 16,
3446 }, {
3447/* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */
3448 .key = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3449 "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3450 "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3451 "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3452 "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3453 "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3454 .klen = 48,
3455 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3456 "\x00\x00\x00\x00\x00\x00\x00\x01",
3457 .input = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b"
3458 "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a"
3459 "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23"
3460 "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e"
3461 "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c"
3462 "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d"
3463 "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3"
3464 "\xe8\x58\x46\x97\x39\x51\x07\xde"
3465 "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3"
3466 "\x0e\x84\x23\x1d\x16\xd4\x1c\x59"
3467 "\x9c\x1a\x02\x55\xab\x3a\x97\x1d"
3468 "\xdf\xdd\xc7\x06\x51\xd7\x70\xae"
3469 "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82"
3470 "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68"
3471 "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce"
3472 "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98"
3473 "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2"
3474 "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f"
3475 "\xea\x20\xe7\xcb\x65\x77\x3a\xdf"
3476 "\xc8\x97\x67\x15\xc2\x2a\x27\xcc"
3477 "\x18\x55\xa1\x24\x0b\x24\x24\xaf"
3478 "\x5b\xec\x68\xb8\xc8\xf5\xba\x63"
3479 "\xff\xed\x89\xce\xd5\x3d\x88\xf3"
3480 "\x25\xef\x05\x7c\x3a\xef\xeb\xd8"
3481 "\x7a\x32\x0d\xd1\x1e\x58\x59\x99"
3482 "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c"
3483 "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50"
3484 "\x41\x30\x58\xc5\x62\x74\x52\x1d"
3485 "\x45\x24\x6a\x42\x64\x4f\x97\x1c"
3486 "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48"
3487 "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1"
3488 "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46"
3489 "\xe4\x81\x84\x95\x36\x59\x7a\x6b"
3490 "\xaa\xb3\x60\xad\xce\x9f\x9f\x28"
3491 "\xe0\x01\x75\x22\xc4\x4e\xa9\x62"
3492 "\x5c\x62\x0d\x00\xcb\x13\xe8\x43"
3493 "\x72\xd4\x2d\x53\x46\xb5\xd1\x16"
3494 "\x22\x18\xdf\x34\x33\xf5\xd6\x1c"
3495 "\xb8\x79\x78\x97\x94\xff\x72\x13"
3496 "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6"
3497 "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4"
3498 "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f"
3499 "\x2d\x14\x8e\x24\x61\x2c\xe1\x17"
3500 "\xcc\xce\x51\x0c\x19\x8a\x82\x30"
3501 "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd"
3502 "\xb7\xeb\xfa\xfd\x27\x51\xde\x85"
3503 "\x1e\x86\x53\x11\x53\x94\x00\xee"
3504 "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11"
3505 "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62"
3506 "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1"
3507 "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a"
3508 "\x9e\xfa\x31\x18\x45\x3c\x21\x33"
3509 "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1"
3510 "\x03\xad\x1b\x48\xd4\x67\x27\xf0"
3511 "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7"
3512 "\xdd\x2b\x01\x39\x04\x5a\x58\x7a"
3513 "\xf7\x11\x90\xec\xbd\x51\x5c\x32"
3514 "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6"
3515 "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d"
3516 "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4"
3517 "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3"
3518 "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29"
3519 "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7"
3520 "\x74\x3f\x7d\x58\x88\x75\xde\x3e",
3521 .ilen = 512,
3522 .result = "\x05\x11\xb7\x18\xab\xc6\x2d\xac"
3523 "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c"
3524 "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8"
3525 "\x50\x38\x1f\x71\x49\xb6\x57\xd6"
3526 "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90"
3527 "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6"
3528 "\xad\x1e\x9e\x20\x5f\x38\xbe\x04"
3529 "\xda\x10\x8e\xed\xa2\xa4\x87\xab"
3530 "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c"
3531 "\xc9\xac\x42\x31\x95\x7c\xc9\x04"
3532 "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6"
3533 "\x15\xd7\x3f\x4f\x2f\x66\x69\x03"
3534 "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65"
3535 "\x4c\x96\x12\xed\x7c\x92\x03\x01"
3536 "\x6f\xbc\x35\x93\xac\xf1\x27\xf1"
3537 "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50"
3538 "\x89\xa4\x8e\x66\x44\x85\xcc\xfd"
3539 "\x33\x14\x70\xe3\x96\xb2\xc3\xd3"
3540 "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5"
3541 "\x2d\x64\x75\xdd\xb4\x54\xe6\x74"
3542 "\x8c\xd3\x9d\x9e\x86\xab\x51\x53"
3543 "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40"
3544 "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5"
3545 "\x76\x12\x73\x44\x1a\x56\xd7\x72"
3546 "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda"
3547 "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd"
3548 "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60"
3549 "\x1a\xe2\x70\x85\x58\xc2\x1b\x09"
3550 "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9"
3551 "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8"
3552 "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8"
3553 "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10"
3554 "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1"
3555 "\x90\x3e\x76\x4a\x74\xa4\x21\x2c"
3556 "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e"
3557 "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f"
3558 "\x8d\x23\x31\x74\x84\xeb\x88\x6e"
3559 "\xcc\xb9\xbc\x22\x83\x19\x07\x22"
3560 "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78"
3561 "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5"
3562 "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41"
3563 "\x3c\xce\x8f\x42\x60\x71\xa7\x75"
3564 "\x08\x40\x65\x8a\x82\xbf\xf5\x43"
3565 "\x71\x96\xa9\x4d\x44\x8a\x20\xbe"
3566 "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65"
3567 "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9"
3568 "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4"
3569 "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a"
3570 "\x62\x73\x65\xfd\x46\x63\x25\x3d"
3571 "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf"
3572 "\x24\xf3\xb4\xac\x64\xba\xdf\x4b"
3573 "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7"
3574 "\xc5\x68\x77\x84\x32\x2b\xcc\x85"
3575 "\x74\x96\xf0\x12\x77\x61\xb9\xeb"
3576 "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8"
3577 "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24"
3578 "\xda\x39\x87\x45\xc0\x2b\xbb\x01"
3579 "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce"
3580 "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6"
3581 "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32"
3582 "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45"
3583 "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6"
3584 "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4"
3585 "\x21\xc4\xc2\x75\x67\x89\x37\x0a",
3586 .rlen = 512,
3587 }
3588};
3589
3590static struct cipher_testvec aes_xts_enc_tv_template[] = {
3591 /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */
3592 { /* XTS-AES 1 */
3593 .key = "\x00\x00\x00\x00\x00\x00\x00\x00"
3594 "\x00\x00\x00\x00\x00\x00\x00\x00"
3595 "\x00\x00\x00\x00\x00\x00\x00\x00"
3596 "\x00\x00\x00\x00\x00\x00\x00\x00",
3597 .klen = 32,
3598 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3599 "\x00\x00\x00\x00\x00\x00\x00\x00",
3600 .input = "\x00\x00\x00\x00\x00\x00\x00\x00"
3601 "\x00\x00\x00\x00\x00\x00\x00\x00"
3602 "\x00\x00\x00\x00\x00\x00\x00\x00"
3603 "\x00\x00\x00\x00\x00\x00\x00\x00",
3604 .ilen = 32,
3605 .result = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec"
3606 "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92"
3607 "\xcd\x43\xd2\xf5\x95\x98\xed\x85"
3608 "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e",
3609 .rlen = 32,
3610 }, { /* XTS-AES 2 */
3611 .key = "\x11\x11\x11\x11\x11\x11\x11\x11"
3612 "\x11\x11\x11\x11\x11\x11\x11\x11"
3613 "\x22\x22\x22\x22\x22\x22\x22\x22"
3614 "\x22\x22\x22\x22\x22\x22\x22\x22",
3615 .klen = 32,
3616 .iv = "\x33\x33\x33\x33\x33\x00\x00\x00"
3617 "\x00\x00\x00\x00\x00\x00\x00\x00",
3618 .input = "\x44\x44\x44\x44\x44\x44\x44\x44"
3619 "\x44\x44\x44\x44\x44\x44\x44\x44"
3620 "\x44\x44\x44\x44\x44\x44\x44\x44"
3621 "\x44\x44\x44\x44\x44\x44\x44\x44",
3622 .ilen = 32,
3623 .result = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e"
3624 "\x39\x33\x40\x38\xac\xef\x83\x8b"
3625 "\xfb\x18\x6f\xff\x74\x80\xad\xc4"
3626 "\x28\x93\x82\xec\xd6\xd3\x94\xf0",
3627 .rlen = 32,
3628 }, { /* XTS-AES 3 */
3629 .key = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8"
3630 "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0"
3631 "\x22\x22\x22\x22\x22\x22\x22\x22"
3632 "\x22\x22\x22\x22\x22\x22\x22\x22",
3633 .klen = 32,
3634 .iv = "\x33\x33\x33\x33\x33\x00\x00\x00"
3635 "\x00\x00\x00\x00\x00\x00\x00\x00",
3636 .input = "\x44\x44\x44\x44\x44\x44\x44\x44"
3637 "\x44\x44\x44\x44\x44\x44\x44\x44"
3638 "\x44\x44\x44\x44\x44\x44\x44\x44"
3639 "\x44\x44\x44\x44\x44\x44\x44\x44",
3640 .ilen = 32,
3641 .result = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a"
3642 "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2"
3643 "\x92\xdf\x4c\x04\x7e\x0b\x21\x53"
3644 "\x21\x86\xa5\x97\x1a\x22\x7a\x89",
3645 .rlen = 32,
3646 }, { /* XTS-AES 4 */
3647 .key = "\x27\x18\x28\x18\x28\x45\x90\x45"
3648 "\x23\x53\x60\x28\x74\x71\x35\x26"
3649 "\x31\x41\x59\x26\x53\x58\x97\x93"
3650 "\x23\x84\x62\x64\x33\x83\x27\x95",
3651 .klen = 32,
3652 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3653 "\x00\x00\x00\x00\x00\x00\x00\x00",
3654 .input = "\x00\x01\x02\x03\x04\x05\x06\x07"
3655 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3656 "\x10\x11\x12\x13\x14\x15\x16\x17"
3657 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3658 "\x20\x21\x22\x23\x24\x25\x26\x27"
3659 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3660 "\x30\x31\x32\x33\x34\x35\x36\x37"
3661 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3662 "\x40\x41\x42\x43\x44\x45\x46\x47"
3663 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3664 "\x50\x51\x52\x53\x54\x55\x56\x57"
3665 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3666 "\x60\x61\x62\x63\x64\x65\x66\x67"
3667 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3668 "\x70\x71\x72\x73\x74\x75\x76\x77"
3669 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3670 "\x80\x81\x82\x83\x84\x85\x86\x87"
3671 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3672 "\x90\x91\x92\x93\x94\x95\x96\x97"
3673 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3674 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3675 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3676 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3677 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3678 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3679 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3680 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3681 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3682 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3683 "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3684 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3685 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
3686 "\x00\x01\x02\x03\x04\x05\x06\x07"
3687 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3688 "\x10\x11\x12\x13\x14\x15\x16\x17"
3689 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3690 "\x20\x21\x22\x23\x24\x25\x26\x27"
3691 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3692 "\x30\x31\x32\x33\x34\x35\x36\x37"
3693 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3694 "\x40\x41\x42\x43\x44\x45\x46\x47"
3695 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3696 "\x50\x51\x52\x53\x54\x55\x56\x57"
3697 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3698 "\x60\x61\x62\x63\x64\x65\x66\x67"
3699 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3700 "\x70\x71\x72\x73\x74\x75\x76\x77"
3701 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3702 "\x80\x81\x82\x83\x84\x85\x86\x87"
3703 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3704 "\x90\x91\x92\x93\x94\x95\x96\x97"
3705 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3706 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3707 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3708 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3709 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3710 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3711 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3712 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3713 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3714 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3715 "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3716 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3717 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
3718 .ilen = 512,
3719 .result = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76"
3720 "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2"
3721 "\xa9\x6e\x4b\xbe\x32\x08\xff\x25"
3722 "\x28\x7d\xd3\x81\x96\x16\xe8\x9c"
3723 "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f"
3724 "\x83\x33\xd8\xfa\x7f\x56\x00\x00"
3725 "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad"
3726 "\x40\xe7\x36\xdd\xb4\xd3\x54\x12"
3727 "\x32\x80\x63\xfd\x2a\xab\x53\xe5"
3728 "\xea\x1e\x0a\x9f\x33\x25\x00\xa5"
3729 "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc"
3730 "\x51\x2c\x88\x66\xc7\xe8\x60\xce"
3731 "\x93\xfd\xf1\x66\xa2\x49\x12\xb4"
3732 "\x22\x97\x61\x46\xae\x20\xce\x84"
3733 "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a"
3734 "\xae\xf2\x0c\x0d\x61\xad\x02\x65"
3735 "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89"
3736 "\x52\xc6\x51\xd3\x31\x74\xbe\x51"
3737 "\xa1\x0c\x42\x11\x10\xe6\xd8\x15"
3738 "\x88\xed\xe8\x21\x03\xa2\x52\xd8"
3739 "\xa7\x50\xe8\x76\x8d\xef\xff\xed"
3740 "\x91\x22\x81\x0a\xae\xb9\x9f\x91"
3741 "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e"
3742 "\x51\xbc\xb0\x82\x35\xa6\xf4\x34"
3743 "\x13\x32\xe4\xca\x60\x48\x2a\x4b"
3744 "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5"
3745 "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4"
3746 "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c"
3747 "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd"
3748 "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3"
3749 "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f"
3750 "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e"
3751 "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91"
3752 "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19"
3753 "\x7c\x4e\x5b\x03\x39\x36\x97\xe1"
3754 "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc"
3755 "\x1e\x08\x29\x85\x16\xe2\xc9\xed"
3756 "\x03\xff\x3c\x1b\x78\x60\xf6\xde"
3757 "\x76\xd4\xce\xcd\x94\xc8\x11\x98"
3758 "\x55\xef\x52\x97\xca\x67\xe9\xf3"
3759 "\xe7\xff\x72\xb1\xe9\x97\x85\xca"
3760 "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6"
3761 "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc"
3762 "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44"
3763 "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0"
3764 "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95"
3765 "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4"
3766 "\x99\x02\x7a\x78\x57\x2a\xee\xbd"
3767 "\x74\xd2\x0c\xc3\x98\x81\xc2\x13"
3768 "\xee\x77\x0b\x10\x10\xe4\xbe\xa7"
3769 "\x18\x84\x69\x77\xae\x11\x9f\x7a"
3770 "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52"
3771 "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a"
3772 "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38"
3773 "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e"
3774 "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e"
3775 "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad"
3776 "\x15\xb4\xaa\x5b\x65\x50\x16\xa8"
3777 "\x44\x92\x77\xdb\xd4\x77\xef\x2c"
3778 "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d"
3779 "\xeb\x4a\x42\x7d\x19\x23\xce\x3f"
3780 "\xf2\x62\x73\x57\x79\xa4\x18\xf2"
3781 "\x0a\x28\x2d\xf9\x20\x14\x7b\xea"
3782 "\xbe\x42\x1e\xe5\x31\x9d\x05\x68",
3783 .rlen = 512,
3784 }
3785};
3786
3787static struct cipher_testvec aes_xts_dec_tv_template[] = {
3788 /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */
3789 { /* XTS-AES 1 */
3790 .key = "\x00\x00\x00\x00\x00\x00\x00\x00"
3791 "\x00\x00\x00\x00\x00\x00\x00\x00"
3792 "\x00\x00\x00\x00\x00\x00\x00\x00"
3793 "\x00\x00\x00\x00\x00\x00\x00\x00",
3794 .klen = 32,
3795 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3796 "\x00\x00\x00\x00\x00\x00\x00\x00",
3797 .input = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec"
3798 "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92"
3799 "\xcd\x43\xd2\xf5\x95\x98\xed\x85"
3800 "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e",
3801 .ilen = 32,
3802 .result = "\x00\x00\x00\x00\x00\x00\x00\x00"
3803 "\x00\x00\x00\x00\x00\x00\x00\x00"
3804 "\x00\x00\x00\x00\x00\x00\x00\x00"
3805 "\x00\x00\x00\x00\x00\x00\x00\x00",
3806 .rlen = 32,
3807 }, { /* XTS-AES 2 */
3808 .key = "\x11\x11\x11\x11\x11\x11\x11\x11"
3809 "\x11\x11\x11\x11\x11\x11\x11\x11"
3810 "\x22\x22\x22\x22\x22\x22\x22\x22"
3811 "\x22\x22\x22\x22\x22\x22\x22\x22",
3812 .klen = 32,
3813 .iv = "\x33\x33\x33\x33\x33\x00\x00\x00"
3814 "\x00\x00\x00\x00\x00\x00\x00\x00",
3815 .input = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e"
3816 "\x39\x33\x40\x38\xac\xef\x83\x8b"
3817 "\xfb\x18\x6f\xff\x74\x80\xad\xc4"
3818 "\x28\x93\x82\xec\xd6\xd3\x94\xf0",
3819 .ilen = 32,
3820 .result = "\x44\x44\x44\x44\x44\x44\x44\x44"
3821 "\x44\x44\x44\x44\x44\x44\x44\x44"
3822 "\x44\x44\x44\x44\x44\x44\x44\x44"
3823 "\x44\x44\x44\x44\x44\x44\x44\x44",
3824 .rlen = 32,
3825 }, { /* XTS-AES 3 */
3826 .key = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8"
3827 "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0"
3828 "\x22\x22\x22\x22\x22\x22\x22\x22"
3829 "\x22\x22\x22\x22\x22\x22\x22\x22",
3830 .klen = 32,
3831 .iv = "\x33\x33\x33\x33\x33\x00\x00\x00"
3832 "\x00\x00\x00\x00\x00\x00\x00\x00",
3833 .input = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a"
3834 "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2"
3835 "\x92\xdf\x4c\x04\x7e\x0b\x21\x53"
3836 "\x21\x86\xa5\x97\x1a\x22\x7a\x89",
3837 .ilen = 32,
3838 .result = "\x44\x44\x44\x44\x44\x44\x44\x44"
3839 "\x44\x44\x44\x44\x44\x44\x44\x44"
3840 "\x44\x44\x44\x44\x44\x44\x44\x44"
3841 "\x44\x44\x44\x44\x44\x44\x44\x44",
3842 .rlen = 32,
3843 }, { /* XTS-AES 4 */
3844 .key = "\x27\x18\x28\x18\x28\x45\x90\x45"
3845 "\x23\x53\x60\x28\x74\x71\x35\x26"
3846 "\x31\x41\x59\x26\x53\x58\x97\x93"
3847 "\x23\x84\x62\x64\x33\x83\x27\x95",
3848 .klen = 32,
3849 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
3850 "\x00\x00\x00\x00\x00\x00\x00\x00",
3851 .input = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76"
3852 "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2"
3853 "\xa9\x6e\x4b\xbe\x32\x08\xff\x25"
3854 "\x28\x7d\xd3\x81\x96\x16\xe8\x9c"
3855 "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f"
3856 "\x83\x33\xd8\xfa\x7f\x56\x00\x00"
3857 "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad"
3858 "\x40\xe7\x36\xdd\xb4\xd3\x54\x12"
3859 "\x32\x80\x63\xfd\x2a\xab\x53\xe5"
3860 "\xea\x1e\x0a\x9f\x33\x25\x00\xa5"
3861 "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc"
3862 "\x51\x2c\x88\x66\xc7\xe8\x60\xce"
3863 "\x93\xfd\xf1\x66\xa2\x49\x12\xb4"
3864 "\x22\x97\x61\x46\xae\x20\xce\x84"
3865 "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a"
3866 "\xae\xf2\x0c\x0d\x61\xad\x02\x65"
3867 "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89"
3868 "\x52\xc6\x51\xd3\x31\x74\xbe\x51"
3869 "\xa1\x0c\x42\x11\x10\xe6\xd8\x15"
3870 "\x88\xed\xe8\x21\x03\xa2\x52\xd8"
3871 "\xa7\x50\xe8\x76\x8d\xef\xff\xed"
3872 "\x91\x22\x81\x0a\xae\xb9\x9f\x91"
3873 "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e"
3874 "\x51\xbc\xb0\x82\x35\xa6\xf4\x34"
3875 "\x13\x32\xe4\xca\x60\x48\x2a\x4b"
3876 "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5"
3877 "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4"
3878 "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c"
3879 "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd"
3880 "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3"
3881 "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f"
3882 "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e"
3883 "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91"
3884 "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19"
3885 "\x7c\x4e\x5b\x03\x39\x36\x97\xe1"
3886 "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc"
3887 "\x1e\x08\x29\x85\x16\xe2\xc9\xed"
3888 "\x03\xff\x3c\x1b\x78\x60\xf6\xde"
3889 "\x76\xd4\xce\xcd\x94\xc8\x11\x98"
3890 "\x55\xef\x52\x97\xca\x67\xe9\xf3"
3891 "\xe7\xff\x72\xb1\xe9\x97\x85\xca"
3892 "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6"
3893 "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc"
3894 "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44"
3895 "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0"
3896 "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95"
3897 "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4"
3898 "\x99\x02\x7a\x78\x57\x2a\xee\xbd"
3899 "\x74\xd2\x0c\xc3\x98\x81\xc2\x13"
3900 "\xee\x77\x0b\x10\x10\xe4\xbe\xa7"
3901 "\x18\x84\x69\x77\xae\x11\x9f\x7a"
3902 "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52"
3903 "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a"
3904 "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38"
3905 "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e"
3906 "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e"
3907 "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad"
3908 "\x15\xb4\xaa\x5b\x65\x50\x16\xa8"
3909 "\x44\x92\x77\xdb\xd4\x77\xef\x2c"
3910 "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d"
3911 "\xeb\x4a\x42\x7d\x19\x23\xce\x3f"
3912 "\xf2\x62\x73\x57\x79\xa4\x18\xf2"
3913 "\x0a\x28\x2d\xf9\x20\x14\x7b\xea"
3914 "\xbe\x42\x1e\xe5\x31\x9d\x05\x68",
3915 .ilen = 512,
3916 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
3917 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3918 "\x10\x11\x12\x13\x14\x15\x16\x17"
3919 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3920 "\x20\x21\x22\x23\x24\x25\x26\x27"
3921 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3922 "\x30\x31\x32\x33\x34\x35\x36\x37"
3923 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3924 "\x40\x41\x42\x43\x44\x45\x46\x47"
3925 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3926 "\x50\x51\x52\x53\x54\x55\x56\x57"
3927 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3928 "\x60\x61\x62\x63\x64\x65\x66\x67"
3929 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3930 "\x70\x71\x72\x73\x74\x75\x76\x77"
3931 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3932 "\x80\x81\x82\x83\x84\x85\x86\x87"
3933 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3934 "\x90\x91\x92\x93\x94\x95\x96\x97"
3935 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3936 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3937 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3938 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3939 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3940 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3941 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3942 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3943 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3944 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3945 "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3946 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3947 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
3948 "\x00\x01\x02\x03\x04\x05\x06\x07"
3949 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3950 "\x10\x11\x12\x13\x14\x15\x16\x17"
3951 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3952 "\x20\x21\x22\x23\x24\x25\x26\x27"
3953 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3954 "\x30\x31\x32\x33\x34\x35\x36\x37"
3955 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3956 "\x40\x41\x42\x43\x44\x45\x46\x47"
3957 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3958 "\x50\x51\x52\x53\x54\x55\x56\x57"
3959 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3960 "\x60\x61\x62\x63\x64\x65\x66\x67"
3961 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3962 "\x70\x71\x72\x73\x74\x75\x76\x77"
3963 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3964 "\x80\x81\x82\x83\x84\x85\x86\x87"
3965 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3966 "\x90\x91\x92\x93\x94\x95\x96\x97"
3967 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3968 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3969 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3970 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3971 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3972 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3973 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3974 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3975 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3976 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3977 "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3978 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3979 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
3980 .rlen = 512,
3981 }
3982};
3983
3984
3985static struct cipher_testvec aes_ctr_enc_tv_template[] = {
3986 { /* From RFC 3686 */
3987 .key = "\xae\x68\x52\xf8\x12\x10\x67\xcc"
3988 "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e"
3989 "\x00\x00\x00\x30",
3990 .klen = 20,
3991 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
3992 .input = "Single block msg",
3993 .ilen = 16,
3994 .result = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79"
3995 "\x2d\x61\x75\xa3\x26\x13\x11\xb8",
3996 .rlen = 16,
3997 }, {
3998 .key = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7"
3999 "\x43\xd6\xce\x1f\x32\x53\x91\x63"
4000 "\x00\x6c\xb6\xdb",
4001 .klen = 20,
4002 .iv = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b",
4003 .input = "\x00\x01\x02\x03\x04\x05\x06\x07"
4004 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4005 "\x10\x11\x12\x13\x14\x15\x16\x17"
4006 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4007 .ilen = 32,
4008 .result = "\x51\x04\xa1\x06\x16\x8a\x72\xd9"
4009 "\x79\x0d\x41\xee\x8e\xda\xd3\x88"
4010 "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8"
4011 "\xfc\xe6\x30\xdf\x91\x41\xbe\x28",
4012 .rlen = 32,
4013 }, {
4014 .key = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79"
4015 "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed"
4016 "\x86\x3d\x06\xcc\xfd\xb7\x85\x15"
4017 "\x00\x00\x00\x48",
4018 .klen = 28,
4019 .iv = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb",
4020 .input = "Single block msg",
4021 .ilen = 16,
4022 .result = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8"
4023 "\x4e\x79\x35\xa0\x03\xcb\xe9\x28",
4024 .rlen = 16,
4025 }, {
4026 .key = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c"
4027 "\x19\xe7\x34\x08\x19\xe0\xf6\x9c"
4028 "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a"
4029 "\x00\x96\xb0\x3b",
4030 .klen = 28,
4031 .iv = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d",
4032 .input = "\x00\x01\x02\x03\x04\x05\x06\x07"
4033 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4034 "\x10\x11\x12\x13\x14\x15\x16\x17"
4035 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4036 .ilen = 32,
4037 .result = "\x45\x32\x43\xfc\x60\x9b\x23\x32"
4038 "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f"
4039 "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c"
4040 "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00",
4041 .rlen = 32,
4042 }, {
4043 .key = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f"
4044 "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c"
4045 "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3"
4046 "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04"
4047 "\x00\x00\x00\x60",
4048 .klen = 36,
4049 .iv = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2",
4050 .input = "Single block msg",
4051 .ilen = 16,
4052 .result = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7"
4053 "\x56\x08\x63\xdc\x71\xe3\xe0\xc0",
4054 .rlen = 16,
4055 }, {
4056 .key = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb"
4057 "\x07\x96\x36\x58\x79\xef\xf8\x86"
4058 "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74"
4059 "\x4b\x50\x59\x0c\x87\xa2\x38\x84"
4060 "\x00\xfa\xac\x24",
4061 .klen = 36,
4062 .iv = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75",
4063 .input = "\x00\x01\x02\x03\x04\x05\x06\x07"
4064 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4065 "\x10\x11\x12\x13\x14\x15\x16\x17"
4066 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4067 .ilen = 32,
4068 .result = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c"
4069 "\x49\xee\x00\x0b\x80\x4e\xb2\xa9"
4070 "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a"
4071 "\x55\x30\x83\x1d\x93\x44\xaf\x1c",
4072 .rlen = 32,
4073 }, {
4074 // generated using Crypto++
4075 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
4076 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4077 "\x10\x11\x12\x13\x14\x15\x16\x17"
4078 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4079 "\x00\x00\x00\x00",
4080 .klen = 32 + 4,
4081 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
4082 .input =
4083 "\x00\x01\x02\x03\x04\x05\x06\x07"
4084 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4085 "\x10\x11\x12\x13\x14\x15\x16\x17"
4086 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4087 "\x20\x21\x22\x23\x24\x25\x26\x27"
4088 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
4089 "\x30\x31\x32\x33\x34\x35\x36\x37"
4090 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
4091 "\x40\x41\x42\x43\x44\x45\x46\x47"
4092 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
4093 "\x50\x51\x52\x53\x54\x55\x56\x57"
4094 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
4095 "\x60\x61\x62\x63\x64\x65\x66\x67"
4096 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
4097 "\x70\x71\x72\x73\x74\x75\x76\x77"
4098 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
4099 "\x80\x81\x82\x83\x84\x85\x86\x87"
4100 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
4101 "\x90\x91\x92\x93\x94\x95\x96\x97"
4102 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
4103 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
4104 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
4105 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
4106 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
4107 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
4108 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
4109 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
4110 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
4111 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
4112 "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
4113 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4114 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
4115 "\x00\x03\x06\x09\x0c\x0f\x12\x15"
4116 "\x18\x1b\x1e\x21\x24\x27\x2a\x2d"
4117 "\x30\x33\x36\x39\x3c\x3f\x42\x45"
4118 "\x48\x4b\x4e\x51\x54\x57\x5a\x5d"
4119 "\x60\x63\x66\x69\x6c\x6f\x72\x75"
4120 "\x78\x7b\x7e\x81\x84\x87\x8a\x8d"
4121 "\x90\x93\x96\x99\x9c\x9f\xa2\xa5"
4122 "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd"
4123 "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5"
4124 "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed"
4125 "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05"
4126 "\x08\x0b\x0e\x11\x14\x17\x1a\x1d"
4127 "\x20\x23\x26\x29\x2c\x2f\x32\x35"
4128 "\x38\x3b\x3e\x41\x44\x47\x4a\x4d"
4129 "\x50\x53\x56\x59\x5c\x5f\x62\x65"
4130 "\x68\x6b\x6e\x71\x74\x77\x7a\x7d"
4131 "\x80\x83\x86\x89\x8c\x8f\x92\x95"
4132 "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad"
4133 "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5"
4134 "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd"
4135 "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5"
4136 "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d"
4137 "\x10\x13\x16\x19\x1c\x1f\x22\x25"
4138 "\x28\x2b\x2e\x31\x34\x37\x3a\x3d"
4139 "\x40\x43\x46\x49\x4c\x4f\x52\x55"
4140 "\x58\x5b\x5e\x61\x64\x67\x6a\x6d"
4141 "\x70\x73\x76\x79\x7c\x7f\x82\x85"
4142 "\x88\x8b\x8e\x91\x94\x97\x9a\x9d"
4143 "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5"
4144 "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd"
4145 "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5"
4146 "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd"
4147 "\x00\x05\x0a\x0f\x14\x19\x1e\x23"
4148 "\x28\x2d\x32\x37\x3c\x41\x46\x4b"
4149 "\x50\x55\x5a\x5f\x64\x69\x6e\x73"
4150 "\x78\x7d\x82\x87\x8c\x91\x96\x9b"
4151 "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3"
4152 "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb"
4153 "\xf0\xf5\xfa\xff\x04\x09\x0e\x13"
4154 "\x18\x1d\x22\x27\x2c\x31\x36\x3b"
4155 "\x40\x45\x4a\x4f\x54\x59\x5e\x63"
4156 "\x68\x6d\x72\x77\x7c\x81\x86\x8b"
4157 "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3"
4158 "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb"
4159 "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03"
4160 "\x08\x0d\x12\x17\x1c\x21\x26\x2b"
4161 "\x30\x35\x3a\x3f\x44\x49\x4e\x53"
4162 "\x58\x5d\x62\x67\x6c\x71\x76\x7b"
4163 "\x80\x85\x8a\x8f\x94\x99\x9e\xa3"
4164 "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb"
4165 "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3"
4166 "\xf8\xfd\x02\x07\x0c\x11\x16\x1b"
4167 "\x20\x25\x2a\x2f\x34\x39\x3e\x43"
4168 "\x48\x4d\x52\x57\x5c\x61\x66\x6b"
4169 "\x70\x75\x7a\x7f\x84\x89\x8e\x93"
4170 "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb"
4171 "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3"
4172 "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b"
4173 "\x10\x15\x1a\x1f\x24\x29\x2e\x33"
4174 "\x38\x3d\x42\x47\x4c\x51\x56\x5b"
4175 "\x60\x65\x6a\x6f\x74\x79\x7e\x83"
4176 "\x88\x8d\x92\x97\x9c\xa1\xa6\xab"
4177 "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3"
4178 "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb"
4179 "\x00\x07\x0e\x15\x1c\x23\x2a\x31"
4180 "\x38\x3f\x46\x4d\x54\x5b\x62\x69"
4181 "\x70\x77\x7e\x85\x8c\x93\x9a\xa1"
4182 "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9"
4183 "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11"
4184 "\x18\x1f\x26\x2d\x34\x3b\x42\x49"
4185 "\x50\x57\x5e\x65\x6c\x73\x7a\x81"
4186 "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9"
4187 "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1"
4188 "\xf8\xff\x06\x0d\x14\x1b\x22\x29"
4189 "\x30\x37\x3e\x45\x4c\x53\x5a\x61"
4190 "\x68\x6f\x76\x7d\x84\x8b\x92\x99"
4191 "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1"
4192 "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09"
4193 "\x10\x17\x1e\x25\x2c\x33\x3a\x41"
4194 "\x48\x4f\x56\x5d\x64\x6b\x72\x79"
4195 "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1"
4196 "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9"
4197 "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21"
4198 "\x28\x2f\x36\x3d\x44\x4b\x52\x59"
4199 "\x60\x67\x6e\x75\x7c\x83\x8a\x91"
4200 "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9"
4201 "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01"
4202 "\x08\x0f\x16\x1d\x24\x2b\x32\x39"
4203 "\x40\x47\x4e\x55\x5c\x63\x6a\x71"
4204 "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9"
4205 "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1"
4206 "\xe8\xef\xf6\xfd\x04\x0b\x12\x19"
4207 "\x20\x27\x2e\x35\x3c\x43\x4a\x51"
4208 "\x58\x5f\x66\x6d\x74\x7b\x82\x89"
4209 "\x90\x97\x9e\xa5\xac\xb3\xba\xc1"
4210 "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9"
4211 "\x00\x09\x12\x1b\x24\x2d\x36\x3f"
4212 "\x48\x51\x5a\x63\x6c\x75\x7e\x87"
4213 "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf"
4214 "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17"
4215 "\x20\x29\x32\x3b\x44\x4d\x56\x5f"
4216 "\x68\x71\x7a\x83\x8c\x95\x9e\xa7"
4217 "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef"
4218 "\xf8\x01\x0a\x13\x1c\x25\x2e\x37"
4219 "\x40\x49\x52\x5b\x64\x6d\x76\x7f"
4220 "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7"
4221 "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f"
4222 "\x18\x21\x2a\x33\x3c\x45\x4e\x57"
4223 "\x60\x69\x72\x7b\x84\x8d\x96\x9f"
4224 "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7"
4225 "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f"
4226 "\x38\x41\x4a\x53\x5c\x65\x6e\x77"
4227 "\x80\x89\x92\x9b\xa4\xad\xb6\xbf"
4228 "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07"
4229 "\x10\x19\x22\x2b\x34\x3d\x46\x4f"
4230 "\x58\x61\x6a\x73\x7c\x85\x8e\x97"
4231 "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf"
4232 "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27"
4233 "\x30\x39\x42\x4b\x54\x5d\x66\x6f"
4234 "\x78\x81\x8a\x93\x9c\xa5\xae\xb7"
4235 "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff"
4236 "\x08\x11\x1a\x23\x2c\x35\x3e\x47"
4237 "\x50\x59\x62\x6b\x74\x7d\x86\x8f"
4238 "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7"
4239 "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f"
4240 "\x28\x31\x3a\x43\x4c\x55\x5e\x67"
4241 "\x70\x79\x82\x8b\x94\x9d\xa6\xaf"
4242 "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7"
4243 "\x00\x0b\x16\x21\x2c\x37\x42\x4d"
4244 "\x58\x63\x6e\x79\x84\x8f\x9a\xa5"
4245 "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd"
4246 "\x08\x13\x1e\x29\x34\x3f\x4a\x55"
4247 "\x60\x6b\x76\x81\x8c\x97\xa2\xad"
4248 "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05"
4249 "\x10\x1b\x26\x31\x3c\x47\x52\x5d"
4250 "\x68\x73\x7e\x89\x94\x9f\xaa\xb5"
4251 "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d"
4252 "\x18\x23\x2e\x39\x44\x4f\x5a\x65"
4253 "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd"
4254 "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15"
4255 "\x20\x2b\x36\x41\x4c\x57\x62\x6d"
4256 "\x78\x83\x8e\x99\xa4\xaf\xba\xc5"
4257 "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d"
4258 "\x28\x33\x3e\x49\x54\x5f\x6a\x75"
4259 "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd"
4260 "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25"
4261 "\x30\x3b\x46\x51\x5c\x67\x72\x7d"
4262 "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5"
4263 "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d"
4264 "\x38\x43\x4e\x59\x64\x6f\x7a\x85"
4265 "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd"
4266 "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35"
4267 "\x40\x4b\x56\x61\x6c\x77\x82\x8d"
4268 "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5"
4269 "\xf0\xfb\x06\x11\x1c\x27\x32\x3d"
4270 "\x48\x53\x5e\x69\x74\x7f\x8a\x95"
4271 "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed"
4272 "\xf8\x03\x0e\x19\x24\x2f\x3a\x45"
4273 "\x50\x5b\x66\x71\x7c\x87\x92\x9d"
4274 "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5"
4275 "\x00\x0d\x1a\x27\x34\x41\x4e\x5b"
4276 "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3"
4277 "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b"
4278 "\x38\x45\x52\x5f\x6c\x79\x86\x93"
4279 "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb"
4280 "\x08\x15\x22\x2f\x3c\x49\x56\x63"
4281 "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb"
4282 "\xd8\xe5\xf2\xff\x0c\x19\x26\x33"
4283 "\x40\x4d\x5a\x67\x74\x81\x8e\x9b"
4284 "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03"
4285 "\x10\x1d\x2a\x37\x44\x51\x5e\x6b"
4286 "\x78\x85\x92\x9f\xac\xb9\xc6\xd3"
4287 "\xe0\xed\xfa\x07\x14\x21\x2e\x3b"
4288 "\x48\x55\x62\x6f\x7c\x89\x96\xa3"
4289 "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b"
4290 "\x18\x25\x32\x3f\x4c\x59\x66\x73"
4291 "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb"
4292 "\xe8\xf5\x02\x0f\x1c\x29\x36\x43"
4293 "\x50\x5d\x6a\x77\x84\x91\x9e\xab"
4294 "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13"
4295 "\x20\x2d\x3a\x47\x54\x61\x6e\x7b"
4296 "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3"
4297 "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b"
4298 "\x58\x65\x72\x7f\x8c\x99\xa6\xb3"
4299 "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b"
4300 "\x28\x35\x42\x4f\x5c\x69\x76\x83"
4301 "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb"
4302 "\xf8\x05\x12\x1f\x2c\x39\x46\x53"
4303 "\x60\x6d\x7a\x87\x94\xa1\xae\xbb"
4304 "\xc8\xd5\xe2\xef\xfc\x09\x16\x23"
4305 "\x30\x3d\x4a\x57\x64\x71\x7e\x8b"
4306 "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3"
4307 "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69"
4308 "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1"
4309 "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59"
4310 "\x68\x77\x86\x95\xa4\xb3\xc2\xd1"
4311 "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49"
4312 "\x58\x67\x76\x85\x94\xa3\xb2\xc1"
4313 "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39"
4314 "\x48\x57\x66\x75\x84\x93\xa2\xb1"
4315 "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29"
4316 "\x38\x47\x56\x65\x74\x83\x92\xa1"
4317 "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19"
4318 "\x28\x37\x46\x55\x64\x73\x82\x91"
4319 "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09"
4320 "\x18\x27\x36\x45\x54\x63\x72\x81"
4321 "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9"
4322 "\x08\x17\x26\x35\x44\x53\x62\x71"
4323 "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9"
4324 "\xf8\x07\x16\x25\x34\x43\x52\x61"
4325 "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9"
4326 "\xe8\xf7\x06\x15\x24\x33\x42\x51"
4327 "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9"
4328 "\xd8\xe7\xf6\x05\x14\x23\x32\x41"
4329 "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9"
4330 "\xc8\xd7\xe6\xf5\x04\x13\x22\x31"
4331 "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9"
4332 "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21"
4333 "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99"
4334 "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11"
4335 "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89"
4336 "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01"
4337 "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79"
4338 "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1"
4339 "\x00\x11\x22\x33\x44\x55\x66\x77"
4340 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff"
4341 "\x10\x21\x32\x43\x54\x65\x76\x87"
4342 "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f"
4343 "\x20\x31\x42\x53\x64\x75\x86\x97"
4344 "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f"
4345 "\x30\x41\x52\x63\x74\x85\x96\xa7"
4346 "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f"
4347 "\x40\x51\x62\x73\x84\x95\xa6\xb7"
4348 "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f"
4349 "\x50\x61\x72\x83\x94\xa5\xb6\xc7"
4350 "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f"
4351 "\x60\x71\x82\x93\xa4\xb5\xc6\xd7"
4352 "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f"
4353 "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7"
4354 "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f"
4355 "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7"
4356 "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f"
4357 "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07"
4358 "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f"
4359 "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17"
4360 "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f"
4361 "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27"
4362 "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf"
4363 "\xc0\xd1\xe2\xf3\x04\x15\x26\x37"
4364 "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf"
4365 "\xd0\xe1\xf2\x03\x14\x25\x36\x47"
4366 "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf"
4367 "\xe0\xf1\x02\x13\x24\x35\x46\x57"
4368 "\x68\x79\x8a\x9b\xac\xbd\xce\xdf"
4369 "\xf0\x01\x12\x23\x34\x45\x56\x67"
4370 "\x78\x89\x9a\xab\xbc\xcd\xde\xef"
4371 "\x00\x13\x26\x39\x4c\x5f\x72\x85"
4372 "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d"
4373 "\x30\x43\x56\x69\x7c\x8f\xa2\xb5"
4374 "\xc8\xdb\xee\x01\x14\x27\x3a\x4d"
4375 "\x60\x73\x86\x99\xac\xbf\xd2\xe5"
4376 "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d"
4377 "\x90\xa3\xb6\xc9\xdc\xef\x02\x15"
4378 "\x28\x3b\x4e\x61\x74\x87\x9a\xad"
4379 "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45"
4380 "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd"
4381 "\xf0\x03\x16\x29\x3c\x4f\x62\x75"
4382 "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d"
4383 "\x20\x33\x46\x59\x6c\x7f\x92\xa5"
4384 "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d"
4385 "\x50\x63\x76\x89\x9c\xaf\xc2\xd5"
4386 "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d"
4387 "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05"
4388 "\x18\x2b\x3e\x51\x64\x77\x8a\x9d"
4389 "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35"
4390 "\x48\x5b\x6e\x81\x94\xa7\xba\xcd"
4391 "\xe0\xf3\x06\x19\x2c\x3f\x52\x65"
4392 "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd"
4393 "\x10\x23\x36\x49\x5c\x6f\x82\x95"
4394 "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d"
4395 "\x40\x53\x66\x79\x8c\x9f\xb2\xc5"
4396 "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d"
4397 "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5"
4398 "\x08\x1b\x2e\x41\x54\x67\x7a\x8d"
4399 "\xa0\xb3\xc6\xd9\xec\xff\x12\x25"
4400 "\x38\x4b\x5e\x71\x84\x97\xaa\xbd"
4401 "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55"
4402 "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed"
4403 "\x00\x15\x2a\x3f\x54\x69\x7e\x93"
4404 "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b"
4405 "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3"
4406 "\xf8\x0d\x22\x37\x4c\x61\x76\x8b"
4407 "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33"
4408 "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb"
4409 "\xf0\x05\x1a\x2f\x44\x59\x6e\x83"
4410 "\x98\xad\xc2\xd7\xec\x01\x16\x2b"
4411 "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3"
4412 "\xe8\xfd\x12\x27\x3c\x51\x66\x7b"
4413 "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23"
4414 "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb"
4415 "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73"
4416 "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b"
4417 "\x30\x45\x5a\x6f\x84\x99\xae\xc3"
4418 "\xd8\xed\x02\x17\x2c\x41\x56\x6b"
4419 "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13"
4420 "\x28\x3d\x52\x67\x7c\x91\xa6\xbb"
4421 "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63"
4422 "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b"
4423 "\x20\x35\x4a\x5f\x74\x89\x9e\xb3"
4424 "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b"
4425 "\x70\x85\x9a\xaf\xc4\xd9\xee\x03"
4426 "\x18\x2d\x42\x57\x6c\x81\x96\xab"
4427 "\xc0\xd5\xea\xff\x14\x29\x3e\x53"
4428 "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb"
4429 "\x10\x25\x3a\x4f\x64\x79\x8e\xa3"
4430 "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b"
4431 "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3"
4432 "\x08\x1d\x32\x47\x5c\x71\x86\x9b"
4433 "\xb0\xc5\xda\xef\x04\x19\x2e\x43"
4434 "\x58\x6d\x82\x97\xac\xc1\xd6\xeb"
4435 "\x00\x17\x2e\x45\x5c\x73\x8a\xa1"
4436 "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59"
4437 "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11"
4438 "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9"
4439 "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81"
4440 "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39"
4441 "\x50\x67\x7e\x95\xac\xc3\xda\xf1"
4442 "\x08\x1f\x36\x4d\x64\x7b\x92\xa9"
4443 "\xc0\xd7\xee\x05\x1c\x33\x4a\x61"
4444 "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19"
4445 "\x30\x47\x5e\x75\x8c\xa3\xba\xd1"
4446 "\xe8\xff\x16\x2d\x44\x5b\x72\x89"
4447 "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41"
4448 "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9"
4449 "\x10\x27\x3e\x55\x6c\x83\x9a\xb1"
4450 "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69"
4451 "\x80\x97\xae\xc5\xdc\xf3\x0a\x21"
4452 "\x38\x4f\x66\x7d\x94\xab\xc2\xd9"
4453 "\xf0\x07\x1e\x35\x4c\x63\x7a\x91"
4454 "\xa8\xbf\xd6\xed\x04\x1b\x32\x49"
4455 "\x60\x77\x8e\xa5\xbc\xd3\xea\x01"
4456 "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9"
4457 "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71"
4458 "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29"
4459 "\x40\x57\x6e\x85\x9c\xb3\xca\xe1"
4460 "\xf8\x0f\x26\x3d\x54\x6b\x82\x99"
4461 "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51"
4462 "\x68\x7f\x96\xad\xc4\xdb\xf2\x09"
4463 "\x20\x37\x4e\x65\x7c\x93\xaa\xc1"
4464 "\xd8\xef\x06\x1d\x34\x4b\x62\x79"
4465 "\x90\xa7\xbe\xd5\xec\x03\x1a\x31"
4466 "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9"
4467 "\x00\x19\x32\x4b\x64\x7d\x96\xaf"
4468 "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77"
4469 "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f"
4470 "\x58\x71\x8a\xa3\xbc\xd5\xee\x07"
4471 "\x20\x39\x52\x6b\x84\x9d\xb6\xcf"
4472 "\xe8\x01\x1a\x33\x4c\x65\x7e\x97"
4473 "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f"
4474 "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27"
4475 "\x40\x59\x72\x8b\xa4\xbd\xd6\xef"
4476 "\x08\x21\x3a\x53\x6c\x85\x9e\xb7"
4477 "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f"
4478 "\x98\xb1\xca\xe3\xfc\x15\x2e\x47"
4479 "\x60\x79\x92\xab\xc4\xdd\xf6\x0f"
4480 "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7"
4481 "\xf0\x09\x22\x3b\x54\x6d\x86\x9f"
4482 "\xb8\xd1\xea\x03\x1c\x35\x4e\x67"
4483 "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f"
4484 "\x48\x61\x7a\x93\xac\xc5\xde\xf7"
4485 "\x10\x29\x42\x5b\x74\x8d\xa6\xbf"
4486 "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87"
4487 "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f"
4488 "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17"
4489 "\x30\x49\x62\x7b\x94\xad\xc6\xdf"
4490 "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7"
4491 "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f"
4492 "\x88\xa1\xba\xd3\xec\x05\x1e\x37"
4493 "\x50\x69\x82\x9b\xb4\xcd\xe6\xff"
4494 "\x18\x31\x4a\x63\x7c\x95\xae\xc7"
4495 "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f"
4496 "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57"
4497 "\x70\x89\xa2\xbb\xd4\xed\x06\x1f"
4498 "\x38\x51\x6a\x83\x9c\xb5\xce\xe7"
4499 "\x00\x1b\x36\x51\x6c\x87\xa2\xbd"
4500 "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95"
4501 "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d"
4502 "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45"
4503 "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d"
4504 "\x38\x53\x6e\x89\xa4\xbf\xda\xf5"
4505 "\x10\x2b\x46\x61\x7c\x97\xb2\xcd"
4506 "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5"
4507 "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d"
4508 "\x98\xb3\xce\xe9\x04\x1f\x3a\x55"
4509 "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d"
4510 "\x48\x63\x7e\x99\xb4\xcf\xea\x05"
4511 "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd"
4512 "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5"
4513 "\xd0\xeb\x06\x21\x3c\x57\x72\x8d"
4514 "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65"
4515 "\x80\x9b\xb6\xd1\xec\x07\x22\x3d"
4516 "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15"
4517 "\x30\x4b\x66\x81\x9c\xb7\xd2\xed"
4518 "\x08\x23\x3e\x59\x74\x8f\xaa\xc5"
4519 "\xe0\xfb\x16\x31\x4c\x67\x82\x9d"
4520 "\xb8\xd3\xee\x09\x24\x3f\x5a\x75"
4521 "\x90\xab\xc6\xe1\xfc\x17\x32\x4d"
4522 "\x68\x83\x9e\xb9\xd4\xef\x0a\x25"
4523 "\x40\x5b\x76\x91\xac\xc7\xe2\xfd"
4524 "\x18\x33\x4e\x69\x84\x9f\xba\xd5"
4525 "\xf0\x0b\x26\x41\x5c\x77\x92\xad"
4526 "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85"
4527 "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d"
4528 "\x78\x93\xae\xc9\xe4\xff\x1a\x35"
4529 "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d"
4530 "\x28\x43\x5e\x79\x94\xaf\xca\xe5"
4531 "\x00\x1d\x3a\x57\x74\x91\xae\xcb"
4532 "\xe8\x05\x22\x3f\x5c\x79\x96\xb3"
4533 "\xd0\xed\x0a\x27\x44\x61\x7e\x9b"
4534 "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83"
4535 "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b"
4536 "\x88\xa5\xc2\xdf\xfc\x19\x36\x53"
4537 "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b"
4538 "\x58\x75\x92\xaf\xcc\xe9\x06\x23"
4539 "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b"
4540 "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3"
4541 "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb"
4542 "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3"
4543 "\xe0\xfd\x1a\x37\x54\x71\x8e\xab"
4544 "\xc8\xe5\x02\x1f\x3c\x59\x76\x93"
4545 "\xb0\xcd\xea\x07\x24\x41\x5e\x7b"
4546 "\x98\xb5\xd2\xef\x0c\x29\x46\x63"
4547 "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b"
4548 "\x68\x85\xa2\xbf\xdc\xf9\x16\x33"
4549 "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b"
4550 "\x38\x55\x72\x8f\xac\xc9\xe6\x03"
4551 "\x20\x3d\x5a\x77\x94\xb1\xce\xeb"
4552 "\x08\x25\x42\x5f\x7c\x99\xb6\xd3"
4553 "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb"
4554 "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3"
4555 "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b"
4556 "\xa8\xc5\xe2\xff\x1c\x39\x56\x73"
4557 "\x90\xad\xca\xe7\x04\x21\x3e\x5b"
4558 "\x78\x95\xb2\xcf\xec\x09\x26\x43"
4559 "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b"
4560 "\x48\x65\x82\x9f\xbc\xd9\xf6\x13"
4561 "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb"
4562 "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3"
4563 "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9"
4564 "\xf8\x17\x36\x55\x74\x93\xb2\xd1"
4565 "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9"
4566 "\xe8\x07\x26\x45\x64\x83\xa2\xc1"
4567 "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9"
4568 "\xd8\xf7\x16\x35\x54\x73\x92\xb1"
4569 "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9"
4570 "\xc8\xe7\x06\x25\x44\x63\x82\xa1"
4571 "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99"
4572 "\xb8\xd7\xf6\x15\x34\x53\x72\x91"
4573 "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89"
4574 "\xa8\xc7\xe6\x05\x24\x43\x62\x81"
4575 "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79"
4576 "\x98\xb7\xd6\xf5\x14\x33\x52\x71"
4577 "\x90\xaf\xce\xed\x0c\x2b\x4a\x69"
4578 "\x88\xa7\xc6\xe5\x04\x23\x42\x61"
4579 "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59"
4580 "\x78\x97\xb6\xd5\xf4\x13\x32\x51"
4581 "\x70\x8f\xae\xcd\xec\x0b\x2a\x49"
4582 "\x68\x87\xa6\xc5\xe4\x03\x22\x41"
4583 "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39"
4584 "\x58\x77\x96\xb5\xd4\xf3\x12\x31"
4585 "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29"
4586 "\x48\x67\x86\xa5\xc4\xe3\x02\x21"
4587 "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19"
4588 "\x38\x57\x76\x95\xb4\xd3\xf2\x11"
4589 "\x30\x4f\x6e\x8d\xac\xcb\xea\x09"
4590 "\x28\x47\x66\x85\xa4\xc3\xe2\x01"
4591 "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9"
4592 "\x18\x37\x56\x75\x94\xb3\xd2\xf1"
4593 "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9"
4594 "\x08\x27\x46\x65\x84\xa3\xc2\xe1"
4595 "\x00\x21\x42\x63",
4596 .ilen = 4100,
4597 .result =
4598 "\xf0\x5c\x74\xad\x4e\xbc\x99\xe2"
4599 "\xae\xff\x91\x3a\x44\xcf\x38\x32"
4600 "\x1e\xad\xa7\xcd\xa1\x39\x95\xaa"
4601 "\x10\xb1\xb3\x2e\x04\x31\x8f\x86"
4602 "\xf2\x62\x74\x70\x0c\xa4\x46\x08"
4603 "\xa8\xb7\x99\xa8\xe9\xd2\x73\x79"
4604 "\x7e\x6e\xd4\x8f\x1e\xc7\x8e\x31"
4605 "\x0b\xfa\x4b\xce\xfd\xf3\x57\x71"
4606 "\xe9\x46\x03\xa5\x3d\x34\x00\xe2"
4607 "\x18\xff\x75\x6d\x06\x2d\x00\xab"
4608 "\xb9\x3e\x6c\x59\xc5\x84\x06\xb5"
4609 "\x8b\xd0\x89\x9c\x4a\x79\x16\xc6"
4610 "\x3d\x74\x54\xfa\x44\xcd\x23\x26"
4611 "\x5c\xcf\x7e\x28\x92\x32\xbf\xdf"
4612 "\xa7\x20\x3c\x74\x58\x2a\x9a\xde"
4613 "\x61\x00\x1c\x4f\xff\x59\xc4\x22"
4614 "\xac\x3c\xd0\xe8\x6c\xf9\x97\x1b"
4615 "\x58\x9b\xad\x71\xe8\xa9\xb5\x0d"
4616 "\xee\x2f\x04\x1f\x7f\xbc\x99\xee"
4617 "\x84\xff\x42\x60\xdc\x3a\x18\xa5"
4618 "\x81\xf9\xef\xdc\x7a\x0f\x65\x41"
4619 "\x2f\xa3\xd3\xf9\xc2\xcb\xc0\x4d"
4620 "\x8f\xd3\x76\x96\xad\x49\x6d\x38"
4621 "\x3d\x39\x0b\x6c\x80\xb7\x54\x69"
4622 "\xf0\x2c\x90\x02\x29\x0d\x1c\x12"
4623 "\xad\x55\xc3\x8b\x68\xd9\xcc\xb3"
4624 "\xb2\x64\x33\x90\x5e\xca\x4b\xe2"
4625 "\xfb\x75\xdc\x63\xf7\x9f\x82\x74"
4626 "\xf0\xc9\xaa\x7f\xe9\x2a\x9b\x33"
4627 "\xbc\x88\x00\x7f\xca\xb2\x1f\x14"
4628 "\xdb\xc5\x8e\x7b\x11\x3c\x3e\x08"
4629 "\xf3\x83\xe8\xe0\x94\x86\x2e\x92"
4630 "\x78\x6b\x01\xc9\xc7\x83\xba\x21"
4631 "\x6a\x25\x15\x33\x4e\x45\x08\xec"
4632 "\x35\xdb\xe0\x6e\x31\x51\x79\xa9"
4633 "\x42\x44\x65\xc1\xa0\xf1\xf9\x2a"
4634 "\x70\xd5\xb6\xc6\xc1\x8c\x39\xfc"
4635 "\x25\xa6\x55\xd9\xdd\x2d\x4c\xec"
4636 "\x49\xc6\xeb\x0e\xa8\x25\x2a\x16"
4637 "\x1b\x66\x84\xda\xe2\x92\xe5\xc0"
4638 "\xc8\x53\x07\xaf\x80\x84\xec\xfd"
4639 "\xcd\xd1\x6e\xcd\x6f\x6a\xf5\x36"
4640 "\xc5\x15\xe5\x25\x7d\x77\xd1\x1a"
4641 "\x93\x36\xa9\xcf\x7c\xa4\x54\x4a"
4642 "\x06\x51\x48\x4e\xf6\x59\x87\xd2"
4643 "\x04\x02\xef\xd3\x44\xde\x76\x31"
4644 "\xb3\x34\x17\x1b\x9d\x66\x11\x9f"
4645 "\x1e\xcc\x17\xe9\xc7\x3c\x1b\xe7"
4646 "\xcb\x50\x08\xfc\xdc\x2b\x24\xdb"
4647 "\x65\x83\xd0\x3b\xe3\x30\xea\x94"
4648 "\x6c\xe7\xe8\x35\x32\xc7\xdb\x64"
4649 "\xb4\x01\xab\x36\x2c\x77\x13\xaf"
4650 "\xf8\x2b\x88\x3f\x54\x39\xc4\x44"
4651 "\xfe\xef\x6f\x68\x34\xbe\x0f\x05"
4652 "\x16\x6d\xf6\x0a\x30\xe7\xe3\xed"
4653 "\xc4\xde\x3c\x1b\x13\xd8\xdb\xfe"
4654 "\x41\x62\xe5\x28\xd4\x8d\xa3\xc7"
4655 "\x93\x97\xc6\x48\x45\x1d\x9f\x83"
4656 "\xdf\x4b\x40\x3e\x42\x25\x87\x80"
4657 "\x4c\x7d\xa8\xd4\x98\x23\x95\x75"
4658 "\x41\x8c\xda\x41\x9b\xd4\xa7\x06"
4659 "\xb5\xf1\x71\x09\x53\xbe\xca\xbf"
4660 "\x32\x03\xed\xf0\x50\x1c\x56\x39"
4661 "\x5b\xa4\x75\x18\xf7\x9b\x58\xef"
4662 "\x53\xfc\x2a\x38\x23\x15\x75\xcd"
4663 "\x45\xe5\x5a\x82\x55\xba\x21\xfa"
4664 "\xd4\xbd\xc6\x94\x7c\xc5\x80\x12"
4665 "\xf7\x4b\x32\xc4\x9a\x82\xd8\x28"
4666 "\x8f\xd9\xc2\x0f\x60\x03\xbe\x5e"
4667 "\x21\xd6\x5f\x58\xbf\x5c\xb1\x32"
4668 "\x82\x8d\xa9\xe5\xf2\x66\x1a\xc0"
4669 "\xa0\xbc\x58\x2f\x71\xf5\x2f\xed"
4670 "\xd1\x26\xb9\xd8\x49\x5a\x07\x19"
4671 "\x01\x7c\x59\xb0\xf8\xa4\xb7\xd3"
4672 "\x7b\x1a\x8c\x38\xf4\x50\xa4\x59"
4673 "\xb0\xcc\x41\x0b\x88\x7f\xe5\x31"
4674 "\xb3\x42\xba\xa2\x7e\xd4\x32\x71"
4675 "\x45\x87\x48\xa9\xc2\xf2\x89\xb3"
4676 "\xe4\xa7\x7e\x52\x15\x61\xfa\xfe"
4677 "\xc9\xdd\x81\xeb\x13\xab\xab\xc3"
4678 "\x98\x59\xd8\x16\x3d\x14\x7a\x1c"
4679 "\x3c\x41\x9a\x16\x16\x9b\xd2\xd2"
4680 "\x69\x3a\x29\x23\xac\x86\x32\xa5"
4681 "\x48\x9c\x9e\xf3\x47\x77\x81\x70"
4682 "\x24\xe8\x85\xd2\xf5\xb5\xfa\xff"
4683 "\x59\x6a\xd3\x50\x59\x43\x59\xde"
4684 "\xd9\xf1\x55\xa5\x0c\xc3\x1a\x1a"
4685 "\x18\x34\x0d\x1a\x63\x33\xed\x10"
4686 "\xe0\x1d\x2a\x18\xd2\xc0\x54\xa8"
4687 "\xca\xb5\x9a\xd3\xdd\xca\x45\x84"
4688 "\x50\xe7\x0f\xfe\xa4\x99\x5a\xbe"
4689 "\x43\x2d\x9a\xcb\x92\x3f\x5a\x1d"
4690 "\x85\xd8\xc9\xdf\x68\xc9\x12\x80"
4691 "\x56\x0c\xdc\x00\xdc\x3a\x7d\x9d"
4692 "\xa3\xa2\xe8\x4d\xbf\xf9\x70\xa0"
4693 "\xa4\x13\x4f\x6b\xaf\x0a\x89\x7f"
4694 "\xda\xf0\xbf\x9b\xc8\x1d\xe5\xf8"
4695 "\x2e\x8b\x07\xb5\x73\x1b\xcc\xa2"
4696 "\xa6\xad\x30\xbc\x78\x3c\x5b\x10"
4697 "\xfa\x5e\x62\x2d\x9e\x64\xb3\x33"
4698 "\xce\xf9\x1f\x86\xe7\x8b\xa2\xb8"
4699 "\xe8\x99\x57\x8c\x11\xed\x66\xd9"
4700 "\x3c\x72\xb9\xc3\xe6\x4e\x17\x3a"
4701 "\x6a\xcb\x42\x24\x06\xed\x3e\x4e"
4702 "\xa3\xe8\x6a\x94\xda\x0d\x4e\xd5"
4703 "\x14\x19\xcf\xb6\x26\xd8\x2e\xcc"
4704 "\x64\x76\x38\x49\x4d\xfe\x30\x6d"
4705 "\xe4\xc8\x8c\x7b\xc4\xe0\x35\xba"
4706 "\x22\x6e\x76\xe1\x1a\xf2\x53\xc3"
4707 "\x28\xa2\x82\x1f\x61\x69\xad\xc1"
4708 "\x7b\x28\x4b\x1e\x6c\x85\x95\x9b"
4709 "\x51\xb5\x17\x7f\x12\x69\x8c\x24"
4710 "\xd5\xc7\x5a\x5a\x11\x54\xff\x5a"
4711 "\xf7\x16\xc3\x91\xa6\xf0\xdc\x0a"
4712 "\xb6\xa7\x4a\x0d\x7a\x58\xfe\xa5"
4713 "\xf5\xcb\x8f\x7b\x0e\xea\x57\xe7"
4714 "\xbd\x79\xd6\x1c\x88\x23\x6c\xf2"
4715 "\x4d\x29\x77\x53\x35\x6a\x00\x8d"
4716 "\xcd\xa3\x58\xbe\x77\x99\x18\xf8"
4717 "\xe6\xe1\x8f\xe9\x37\x8f\xe3\xe2"
4718 "\x5a\x8a\x93\x25\xaf\xf3\x78\x80"
4719 "\xbe\xa6\x1b\xc6\xac\x8b\x1c\x91"
4720 "\x58\xe1\x9f\x89\x35\x9d\x1d\x21"
4721 "\x29\x9f\xf4\x99\x02\x27\x0f\xa8"
4722 "\x4f\x79\x94\x2b\x33\x2c\xda\xa2"
4723 "\x26\x39\x83\x94\xef\x27\xd8\x53"
4724 "\x8f\x66\x0d\xe4\x41\x7d\x34\xcd"
4725 "\x43\x7c\x95\x0a\x53\xef\x66\xda"
4726 "\x7e\x9b\xf3\x93\xaf\xd0\x73\x71"
4727 "\xba\x40\x9b\x74\xf8\xd7\xd7\x41"
4728 "\x6d\xaf\x72\x9c\x8d\x21\x87\x3c"
4729 "\xfd\x0a\x90\xa9\x47\x96\x9e\xd3"
4730 "\x88\xee\x73\xcf\x66\x2f\x52\x56"
4731 "\x6d\xa9\x80\x4c\xe2\x6f\x62\x88"
4732 "\x3f\x0e\x54\x17\x48\x80\x5d\xd3"
4733 "\xc3\xda\x25\x3d\xa1\xc8\xcb\x9f"
4734 "\x9b\x70\xb3\xa1\xeb\x04\x52\xa1"
4735 "\xf2\x22\x0f\xfc\xc8\x18\xfa\xf9"
4736 "\x85\x9c\xf1\xac\xeb\x0c\x02\x46"
4737 "\x75\xd2\xf5\x2c\xe3\xd2\x59\x94"
4738 "\x12\xf3\x3c\xfc\xd7\x92\xfa\x36"
4739 "\xba\x61\x34\x38\x7c\xda\x48\x3e"
4740 "\x08\xc9\x39\x23\x5e\x02\x2c\x1a"
4741 "\x18\x7e\xb4\xd9\xfd\x9e\x40\x02"
4742 "\xb1\x33\x37\x32\xe7\xde\xd6\xd0"
4743 "\x7c\x58\x65\x4b\xf8\x34\x27\x9c"
4744 "\x44\xb4\xbd\xe9\xe9\x4c\x78\x7d"
4745 "\x4b\x9f\xce\xb1\xcd\x47\xa5\x37"
4746 "\xe5\x6d\xbd\xb9\x43\x94\x0a\xd4"
4747 "\xd6\xf9\x04\x5f\xb5\x66\x6c\x1a"
4748 "\x35\x12\xe3\x36\x28\x27\x36\x58"
4749 "\x01\x2b\x79\xe4\xba\x6d\x10\x7d"
4750 "\x65\xdf\x84\x95\xf4\xd5\xb6\x8f"
4751 "\x2b\x9f\x96\x00\x86\x60\xf0\x21"
4752 "\x76\xa8\x6a\x8c\x28\x1c\xb3\x6b"
4753 "\x97\xd7\xb6\x53\x2a\xcc\xab\x40"
4754 "\x9d\x62\x79\x58\x52\xe6\x65\xb7"
4755 "\xab\x55\x67\x9c\x89\x7c\x03\xb0"
4756 "\x73\x59\xc5\x81\xf5\x18\x17\x5c"
4757 "\x89\xf3\x78\x35\x44\x62\x78\x72"
4758 "\xd0\x96\xeb\x31\xe7\x87\x77\x14"
4759 "\x99\x51\xf2\x59\x26\x9e\xb5\xa6"
4760 "\x45\xfe\x6e\xbd\x07\x4c\x94\x5a"
4761 "\xa5\x7d\xfc\xf1\x2b\x77\xe2\xfe"
4762 "\x17\xd4\x84\xa0\xac\xb5\xc7\xda"
4763 "\xa9\x1a\xb6\xf3\x74\x11\xb4\x9d"
4764 "\xfb\x79\x2e\x04\x2d\x50\x28\x83"
4765 "\xbf\xc6\x52\xd3\x34\xd6\xe8\x7a"
4766 "\xb6\xea\xe7\xa8\x6c\x15\x1e\x2c"
4767 "\x57\xbc\x48\x4e\x5f\x5c\xb6\x92"
4768 "\xd2\x49\x77\x81\x6d\x90\x70\xae"
4769 "\x98\xa1\x03\x0d\x6b\xb9\x77\x14"
4770 "\xf1\x4e\x23\xd3\xf8\x68\xbd\xc2"
4771 "\xfe\x04\xb7\x5c\xc5\x17\x60\x8f"
4772 "\x65\x54\xa4\x7a\x42\xdc\x18\x0d"
4773 "\xb5\xcf\x0f\xd3\xc7\x91\x66\x1b"
4774 "\x45\x42\x27\x75\x50\xe5\xee\xb8"
4775 "\x7f\x33\x2c\xba\x4a\x92\x4d\x2c"
4776 "\x3c\xe3\x0d\x80\x01\xba\x0d\x29"
4777 "\xd8\x3c\xe9\x13\x16\x57\xe6\xea"
4778 "\x94\x52\xe7\x00\x4d\x30\xb0\x0f"
4779 "\x35\xb8\xb8\xa7\xb1\xb5\x3b\x44"
4780 "\xe1\x2f\xfd\x88\xed\x43\xe7\x52"
4781 "\x10\x93\xb3\x8a\x30\x6b\x0a\xf7"
4782 "\x23\xc6\x50\x9d\x4a\xb0\xde\xc3"
4783 "\xdc\x9b\x2f\x01\x56\x36\x09\xc5"
4784 "\x2f\x6b\xfe\xf1\xd8\x27\x45\x03"
4785 "\x30\x5e\x5c\x5b\xb4\x62\x0e\x1a"
4786 "\xa9\x21\x2b\x92\x94\x87\x62\x57"
4787 "\x4c\x10\x74\x1a\xf1\x0a\xc5\x84"
4788 "\x3b\x9e\x72\x02\xd7\xcc\x09\x56"
4789 "\xbd\x54\xc1\xf0\xc3\xe3\xb3\xf8"
4790 "\xd2\x0d\x61\xcb\xef\xce\x0d\x05"
4791 "\xb0\x98\xd9\x8e\x4f\xf9\xbc\x93"
4792 "\xa6\xea\xc8\xcf\x10\x53\x4b\xf1"
4793 "\xec\xfc\x89\xf9\x64\xb0\x22\xbf"
4794 "\x9e\x55\x46\x9f\x7c\x50\x8e\x84"
4795 "\x54\x20\x98\xd7\x6c\x40\x1e\xdb"
4796 "\x69\x34\x78\x61\x24\x21\x9c\x8a"
4797 "\xb3\x62\x31\x8b\x6e\xf5\x2a\x35"
4798 "\x86\x13\xb1\x6c\x64\x2e\x41\xa5"
4799 "\x05\xf2\x42\xba\xd2\x3a\x0d\x8e"
4800 "\x8a\x59\x94\x3c\xcf\x36\x27\x82"
4801 "\xc2\x45\xee\x58\xcd\x88\xb4\xec"
4802 "\xde\xb2\x96\x0a\xaf\x38\x6f\x88"
4803 "\xd7\xd8\xe1\xdf\xb9\x96\xa9\x0a"
4804 "\xb1\x95\x28\x86\x20\xe9\x17\x49"
4805 "\xa2\x29\x38\xaa\xa5\xe9\x6e\xf1"
4806 "\x19\x27\xc0\xd5\x2a\x22\xc3\x0b"
4807 "\xdb\x7c\x73\x10\xb9\xba\x89\x76"
4808 "\x54\xae\x7d\x71\xb3\x93\xf6\x32"
4809 "\xe6\x47\x43\x55\xac\xa0\x0d\xc2"
4810 "\x93\x27\x4a\x8e\x0e\x74\x15\xc7"
4811 "\x0b\x85\xd9\x0c\xa9\x30\x7a\x3e"
4812 "\xea\x8f\x85\x6d\x3a\x12\x4f\x72"
4813 "\x69\x58\x7a\x80\xbb\xb5\x97\xf3"
4814 "\xcf\x70\xd2\x5d\xdd\x4d\x21\x79"
4815 "\x54\x4d\xe4\x05\xe8\xbd\xc2\x62"
4816 "\xb1\x3b\x77\x1c\xd6\x5c\xf3\xa0"
4817 "\x79\x00\xa8\x6c\x29\xd9\x18\x24"
4818 "\x36\xa2\x46\xc0\x96\x65\x7f\xbd"
4819 "\x2a\xed\x36\x16\x0c\xaa\x9f\xf4"
4820 "\xc5\xb4\xe2\x12\xed\x69\xed\x4f"
4821 "\x26\x2c\x39\x52\x89\x98\xe7\x2c"
4822 "\x99\xa4\x9e\xa3\x9b\x99\x46\x7a"
4823 "\x3a\xdc\xa8\x59\xa3\xdb\xc3\x3b"
4824 "\x95\x0d\x3b\x09\x6e\xee\x83\x5d"
4825 "\x32\x4d\xed\xab\xfa\x98\x14\x4e"
4826 "\xc3\x15\x45\x53\x61\xc4\x93\xbd"
4827 "\x90\xf4\x99\x95\x4c\xe6\x76\x92"
4828 "\x29\x90\x46\x30\x92\x69\x7d\x13"
4829 "\xf2\xa5\xcd\x69\x49\x44\xb2\x0f"
4830 "\x63\x40\x36\x5f\x09\xe2\x78\xf8"
4831 "\x91\xe3\xe2\xfa\x10\xf7\xc8\x24"
4832 "\xa8\x89\x32\x5c\x37\x25\x1d\xb2"
4833 "\xea\x17\x8a\x0a\xa9\x64\xc3\x7c"
4834 "\x3c\x7c\xbd\xc6\x79\x34\xe7\xe2"
4835 "\x85\x8e\xbf\xf8\xde\x92\xa0\xae"
4836 "\x20\xc4\xf6\xbb\x1f\x38\x19\x0e"
4837 "\xe8\x79\x9c\xa1\x23\xe9\x54\x7e"
4838 "\x37\x2f\xe2\x94\x32\xaf\xa0\x23"
4839 "\x49\xe4\xc0\xb3\xac\x00\x8f\x36"
4840 "\x05\xc4\xa6\x96\xec\x05\x98\x4f"
4841 "\x96\x67\x57\x1f\x20\x86\x1b\x2d"
4842 "\x69\xe4\x29\x93\x66\x5f\xaf\x6b"
4843 "\x88\x26\x2c\x67\x02\x4b\x52\xd0"
4844 "\x83\x7a\x43\x1f\xc0\x71\x15\x25"
4845 "\x77\x65\x08\x60\x11\x76\x4c\x8d"
4846 "\xed\xa9\x27\xc6\xb1\x2a\x2c\x6a"
4847 "\x4a\x97\xf5\xc6\xb7\x70\x42\xd3"
4848 "\x03\xd1\x24\x95\xec\x6d\xab\x38"
4849 "\x72\xce\xe2\x8b\x33\xd7\x51\x09"
4850 "\xdc\x45\xe0\x09\x96\x32\xf3\xc4"
4851 "\x84\xdc\x73\x73\x2d\x1b\x11\x98"
4852 "\xc5\x0e\x69\x28\x94\xc7\xb5\x4d"
4853 "\xc8\x8a\xd0\xaa\x13\x2e\x18\x74"
4854 "\xdd\xd1\x1e\xf3\x90\xe8\xfc\x9a"
4855 "\x72\x4a\x0e\xd1\xe4\xfb\x0d\x96"
4856 "\xd1\x0c\x79\x85\x1b\x1c\xfe\xe1"
4857 "\x62\x8f\x7a\x73\x32\xab\xc8\x18"
4858 "\x69\xe3\x34\x30\xdf\x13\xa6\xe5"
4859 "\xe8\x0e\x67\x7f\x81\x11\xb4\x60"
4860 "\xc7\xbd\x79\x65\x50\xdc\xc4\x5b"
4861 "\xde\x39\xa4\x01\x72\x63\xf3\xd1"
4862 "\x64\x4e\xdf\xfc\x27\x92\x37\x0d"
4863 "\x57\xcd\x11\x4f\x11\x04\x8e\x1d"
4864 "\x16\xf7\xcd\x92\x9a\x99\x30\x14"
4865 "\xf1\x7c\x67\x1b\x1f\x41\x0b\xe8"
4866 "\x32\xe8\xb8\xc1\x4f\x54\x86\x4f"
4867 "\xe5\x79\x81\x73\xcd\x43\x59\x68"
4868 "\x73\x02\x3b\x78\x21\x72\x43\x00"
4869 "\x49\x17\xf7\x00\xaf\x68\x24\x53"
4870 "\x05\x0a\xc3\x33\xe0\x33\x3f\x69"
4871 "\xd2\x84\x2f\x0b\xed\xde\x04\xf4"
4872 "\x11\x94\x13\x69\x51\x09\x28\xde"
4873 "\x57\x5c\xef\xdc\x9a\x49\x1c\x17"
4874 "\x97\xf3\x96\xc1\x7f\x5d\x2e\x7d"
4875 "\x55\xb8\xb3\x02\x09\xb3\x1f\xe7"
4876 "\xc9\x8d\xa3\x36\x34\x8a\x77\x13"
4877 "\x30\x63\x4c\xa5\xcd\xc3\xe0\x7e"
4878 "\x05\xa1\x7b\x0c\xcb\x74\x47\x31"
4879 "\x62\x03\x43\xf1\x87\xb4\xb0\x85"
4880 "\x87\x8e\x4b\x25\xc7\xcf\xae\x4b"
4881 "\x36\x46\x3e\x62\xbc\x6f\xeb\x5f"
4882 "\x73\xac\xe6\x07\xee\xc1\xa1\xd6"
4883 "\xc4\xab\xc9\xd6\x89\x45\xe1\xf1"
4884 "\x04\x4e\x1a\x6f\xbb\x4f\x3a\xa3"
4885 "\xa0\xcb\xa3\x0a\xd8\x71\x35\x55"
4886 "\xe4\xbc\x2e\x04\x06\xe6\xff\x5b"
4887 "\x1c\xc0\x11\x7c\xc5\x17\xf3\x38"
4888 "\xcf\xe9\xba\x0f\x0e\xef\x02\xc2"
4889 "\x8d\xc6\xbc\x4b\x67\x20\x95\xd7"
4890 "\x2c\x45\x5b\x86\x44\x8c\x6f\x2e"
4891 "\x7e\x9f\x1c\x77\xba\x6b\x0e\xa3"
4892 "\x69\xdc\xab\x24\x57\x60\x47\xc1"
4893 "\xd1\xa5\x9d\x23\xe6\xb1\x37\xfe"
4894 "\x93\xd2\x4c\x46\xf9\x0c\xc6\xfb"
4895 "\xd6\x9d\x99\x69\xab\x7a\x07\x0c"
4896 "\x65\xe7\xc4\x08\x96\xe2\xa5\x01"
4897 "\x3f\x46\x07\x05\x7e\xe8\x9a\x90"
4898 "\x50\xdc\xe9\x7a\xea\xa1\x39\x6e"
4899 "\x66\xe4\x6f\xa5\x5f\xb2\xd9\x5b"
4900 "\xf5\xdb\x2a\x32\xf0\x11\x6f\x7c"
4901 "\x26\x10\x8f\x3d\x80\xe9\x58\xf7"
4902 "\xe0\xa8\x57\xf8\xdb\x0e\xce\x99"
4903 "\x63\x19\x3d\xd5\xec\x1b\x77\x69"
4904 "\x98\xf6\xe4\x5f\x67\x17\x4b\x09"
4905 "\x85\x62\x82\x70\x18\xe2\x9a\x78"
4906 "\xe2\x62\xbd\xb4\xf1\x42\xc6\xfb"
4907 "\x08\xd0\xbd\xeb\x4e\x09\xf2\xc8"
4908 "\x1e\xdc\x3d\x32\x21\x56\x9c\x4f"
4909 "\x35\xf3\x61\x06\x72\x84\xc4\x32"
4910 "\xf2\xf1\xfa\x0b\x2f\xc3\xdb\x02"
4911 "\x04\xc2\xde\x57\x64\x60\x8d\xcf"
4912 "\xcb\x86\x5d\x97\x3e\xb1\x9c\x01"
4913 "\xd6\x28\x8f\x99\xbc\x46\xeb\x05"
4914 "\xaf\x7e\xb8\x21\x2a\x56\x85\x1c"
4915 "\xb3\x71\xa0\xde\xca\x96\xf1\x78"
4916 "\x49\xa2\x99\x81\x80\x5c\x01\xf5"
4917 "\xa0\xa2\x56\x63\xe2\x70\x07\xa5"
4918 "\x95\xd6\x85\xeb\x36\x9e\xa9\x51"
4919 "\x66\x56\x5f\x1d\x02\x19\xe2\xf6"
4920 "\x4f\x73\x38\x09\x75\x64\x48\xe0"
4921 "\xf1\x7e\x0e\xe8\x9d\xf9\xed\x94"
4922 "\xfe\x16\x26\x62\x49\x74\xf4\xb0"
4923 "\xd4\xa9\x6c\xb0\xfd\x53\xe9\x81"
4924 "\xe0\x7a\xbf\xcf\xb5\xc4\x01\x81"
4925 "\x79\x99\x77\x01\x3b\xe9\xa2\xb6"
4926 "\xe6\x6a\x8a\x9e\x56\x1c\x8d\x1e"
4927 "\x8f\x06\x55\x2c\x6c\xdc\x92\x87"
4928 "\x64\x3b\x4b\x19\xa1\x13\x64\x1d"
4929 "\x4a\xe9\xc0\x00\xb8\x95\xef\x6b"
4930 "\x1a\x86\x6d\x37\x52\x02\xc2\xe0"
4931 "\xc8\xbb\x42\x0c\x02\x21\x4a\xc9"
4932 "\xef\xa0\x54\xe4\x5e\x16\x53\x81"
4933 "\x70\x62\x10\xaf\xde\xb8\xb5\xd3"
4934 "\xe8\x5e\x6c\xc3\x8a\x3e\x18\x07"
4935 "\xf2\x2f\x7d\xa7\xe1\x3d\x4e\xb4"
4936 "\x26\xa7\xa3\x93\x86\xb2\x04\x1e"
4937 "\x53\x5d\x86\xd6\xde\x65\xca\xe3"
4938 "\x4e\xc1\xcf\xef\xc8\x70\x1b\x83"
4939 "\x13\xdd\x18\x8b\x0d\x76\xd2\xf6"
4940 "\x37\x7a\x93\x7a\x50\x11\x9f\x96"
4941 "\x86\x25\xfd\xac\xdc\xbe\x18\x93"
4942 "\x19\x6b\xec\x58\x4f\xb9\x75\xa7"
4943 "\xdd\x3f\x2f\xec\xc8\x5a\x84\xab"
4944 "\xd5\xe4\x8a\x07\xf6\x4d\x23\xd6"
4945 "\x03\xfb\x03\x6a\xea\x66\xbf\xd4"
4946 "\xb1\x34\xfb\x78\xe9\x55\xdc\x7c"
4947 "\x3d\x9c\xe5\x9a\xac\xc3\x7a\x80"
4948 "\x24\x6d\xa0\xef\x25\x7c\xb7\xea"
4949 "\xce\x4d\x5f\x18\x60\xce\x87\x22"
4950 "\x66\x2f\xd5\xdd\xdd\x02\x21\x75"
4951 "\x82\xa0\x1f\x58\xc6\xd3\x62\xf7"
4952 "\x32\xd8\xaf\x1e\x07\x77\x51\x96"
4953 "\xd5\x6b\x1e\x7e\x80\x02\xe8\x67"
4954 "\xea\x17\x0b\x10\xd2\x3f\x28\x25"
4955 "\x4f\x05\x77\x02\x14\x69\xf0\x2c"
4956 "\xbe\x0c\xf1\x74\x30\xd1\xb9\x9b"
4957 "\xfc\x8c\xbb\x04\x16\xd9\xba\xc3"
4958 "\xbc\x91\x8a\xc4\x30\xa4\xb0\x12"
4959 "\x4c\x21\x87\xcb\xc9\x1d\x16\x96"
4960 "\x07\x6f\x23\x54\xb9\x6f\x79\xe5"
4961 "\x64\xc0\x64\xda\xb1\xae\xdd\x60"
4962 "\x6c\x1a\x9d\xd3\x04\x8e\x45\xb0"
4963 "\x92\x61\xd0\x48\x81\xed\x5e\x1d"
4964 "\xa0\xc9\xa4\x33\xc7\x13\x51\x5d"
4965 "\x7f\x83\x73\xb6\x70\x18\x65\x3e"
4966 "\x2f\x0e\x7a\x12\x39\x98\xab\xd8"
4967 "\x7e\x6f\xa3\xd1\xba\x56\xad\xbd"
4968 "\xf0\x03\x01\x1c\x85\x35\x9f\xeb"
4969 "\x19\x63\xa1\xaf\xfe\x2d\x35\x50"
4970 "\x39\xa0\x65\x7c\x95\x7e\x6b\xfe"
4971 "\xc1\xac\x07\x7c\x98\x4f\xbe\x57"
4972 "\xa7\x22\xec\xe2\x7e\x29\x09\x53"
4973 "\xe8\xbf\xb4\x7e\x3f\x8f\xfc\x14"
4974 "\xce\x54\xf9\x18\x58\xb5\xff\x44"
4975 "\x05\x9d\xce\x1b\xb6\x82\x23\xc8"
4976 "\x2e\xbc\x69\xbb\x4a\x29\x0f\x65"
4977 "\x94\xf0\x63\x06\x0e\xef\x8c\xbd"
4978 "\xff\xfd\xb0\x21\x6e\x57\x05\x75"
4979 "\xda\xd5\xc4\xeb\x8d\x32\xf7\x50"
4980 "\xd3\x6f\x22\xed\x5f\x8e\xa2\x5b"
4981 "\x80\x8c\xc8\x78\x40\x24\x4b\x89"
4982 "\x30\xce\x7a\x97\x0e\xc4\xaf\xef"
4983 "\x9b\xb4\xcd\x66\x74\x14\x04\x2b"
4984 "\xf7\xce\x0b\x1c\x6e\xc2\x78\x8c"
4985 "\xca\xc5\xd0\x1c\x95\x4a\x91\x2d"
4986 "\xa7\x20\xeb\x86\x52\xb7\x67\xd8"
4987 "\x0c\xd6\x04\x14\xde\x51\x74\x75"
4988 "\xe7\x11\xb4\x87\xa3\x3d\x2d\xad"
4989 "\x4f\xef\xa0\x0f\x70\x00\x6d\x13"
4990 "\x19\x1d\x41\x50\xe9\xd8\xf0\x32"
4991 "\x71\xbc\xd3\x11\xf2\xac\xbe\xaf"
4992 "\x75\x46\x65\x4e\x07\x34\x37\xa3"
4993 "\x89\xfe\x75\xd4\x70\x4c\xc6\x3f"
4994 "\x69\x24\x0e\x38\x67\x43\x8c\xde"
4995 "\x06\xb5\xb8\xe7\xc4\xf0\x41\x8f"
4996 "\xf0\xbd\x2f\x0b\xb9\x18\xf8\xde"
4997 "\x64\xb1\xdb\xee\x00\x50\x77\xe1"
4998 "\xc7\xff\xa6\xfa\xdd\x70\xf4\xe3"
4999 "\x93\xe9\x77\x35\x3d\x4b\x2f\x2b"
5000 "\x6d\x55\xf0\xfc\x88\x54\x4e\x89"
5001 "\xc1\x8a\x23\x31\x2d\x14\x2a\xb8"
5002 "\x1b\x15\xdd\x9e\x6e\x7b\xda\x05"
5003 "\x91\x7d\x62\x64\x96\x72\xde\xfc"
5004 "\xc1\xec\xf0\x23\x51\x6f\xdb\x5b"
5005 "\x1d\x08\x57\xce\x09\xb8\xf6\xcd"
5006 "\x8d\x95\xf2\x20\xbf\x0f\x20\x57"
5007 "\x98\x81\x84\x4f\x15\x5c\x76\xe7"
5008 "\x3e\x0a\x3a\x6c\xc4\x8a\xbe\x78"
5009 "\x74\x77\xc3\x09\x4b\x5d\x48\xe4"
5010 "\xc8\xcb\x0b\xea\x17\x28\xcf\xcf"
5011 "\x31\x32\x44\xa4\xe5\x0e\x1a\x98"
5012 "\x94\xc4\xf0\xff\xae\x3e\x44\xe8"
5013 "\xa5\xb3\xb5\x37\x2f\xe8\xaf\x6f"
5014 "\x28\xc1\x37\x5f\x31\xd2\xb9\x33"
5015 "\xb1\xb2\x52\x94\x75\x2c\x29\x59"
5016 "\x06\xc2\x25\xe8\x71\x65\x4e\xed"
5017 "\xc0\x9c\xb1\xbb\x25\xdc\x6c\xe7"
5018 "\x4b\xa5\x7a\x54\x7a\x60\xff\x7a"
5019 "\xe0\x50\x40\x96\x35\x63\xe4\x0b"
5020 "\x76\xbd\xa4\x65\x00\x1b\x57\x88"
5021 "\xae\xed\x39\x88\x42\x11\x3c\xed"
5022 "\x85\x67\x7d\xb9\x68\x82\xe9\x43"
5023 "\x3c\x47\x53\xfa\xe8\xf8\x9f\x1f"
5024 "\x9f\xef\x0f\xf7\x30\xd9\x30\x0e"
5025 "\xb9\x9f\x69\x18\x2f\x7e\xf8\xf8"
5026 "\xf8\x8c\x0f\xd4\x02\x4d\xea\xcd"
5027 "\x0a\x9c\x6f\x71\x6d\x5a\x4c\x60"
5028 "\xce\x20\x56\x32\xc6\xc5\x99\x1f"
5029 "\x09\xe6\x4e\x18\x1a\x15\x13\xa8"
5030 "\x7d\xb1\x6b\xc0\xb2\x6d\xf8\x26"
5031 "\x66\xf8\x3d\x18\x74\x70\x66\x7a"
5032 "\x34\x17\xde\xba\x47\xf1\x06\x18"
5033 "\xcb\xaf\xeb\x4a\x1e\x8f\xa7\x77"
5034 "\xe0\x3b\x78\x62\x66\xc9\x10\xea"
5035 "\x1f\xb7\x29\x0a\x45\xa1\x1d\x1e"
5036 "\x1d\xe2\x65\x61\x50\x9c\xd7\x05"
5037 "\xf2\x0b\x5b\x12\x61\x02\xc8\xe5"
5038 "\x63\x4f\x20\x0c\x07\x17\x33\x5e"
5039 "\x03\x9a\x53\x0f\x2e\x55\xfe\x50"
5040 "\x43\x7d\xd0\xb6\x7e\x5a\xda\xae"
5041 "\x58\xef\x15\xa9\x83\xd9\x46\xb1"
5042 "\x42\xaa\xf5\x02\x6c\xce\x92\x06"
5043 "\x1b\xdb\x66\x45\x91\x79\xc2\x2d"
5044 "\xe6\x53\xd3\x14\xfd\xbb\x44\x63"
5045 "\xc6\xd7\x3d\x7a\x0c\x75\x78\x9d"
5046 "\x5c\xa6\x39\xb3\xe5\x63\xca\x8b"
5047 "\xfe\xd3\xef\x60\x83\xf6\x8e\x70"
5048 "\xb6\x67\xc7\x77\xed\x23\xef\x4c"
5049 "\xf0\xed\x2d\x07\x59\x6f\xc1\x01"
5050 "\x34\x37\x08\xab\xd9\x1f\x09\xb1"
5051 "\xce\x5b\x17\xff\x74\xf8\x9c\xd5"
5052 "\x2c\x56\x39\x79\x0f\x69\x44\x75"
5053 "\x58\x27\x01\xc4\xbf\xa7\xa1\x1d"
5054 "\x90\x17\x77\x86\x5a\x3f\xd9\xd1"
5055 "\x0e\xa0\x10\xf8\xec\x1e\xa5\x7f"
5056 "\x5e\x36\xd1\xe3\x04\x2c\x70\xf7"
5057 "\x8e\xc0\x98\x2f\x6c\x94\x2b\x41"
5058 "\xb7\x60\x00\xb7\x2e\xb8\x02\x8d"
5059 "\xb8\xb0\xd3\x86\xba\x1d\xd7\x90"
5060 "\xd6\xb6\xe1\xfc\xd7\xd8\x28\x06"
5061 "\x63\x9b\xce\x61\x24\x79\xc0\x70"
5062 "\x52\xd0\xb6\xd4\x28\x95\x24\x87"
5063 "\x03\x1f\xb7\x9a\xda\xa3\xfb\x52"
5064 "\x5b\x68\xe7\x4c\x8c\x24\xe1\x42"
5065 "\xf7\xd5\xfd\xad\x06\x32\x9f\xba"
5066 "\xc1\xfc\xdd\xc6\xfc\xfc\xb3\x38"
5067 "\x74\x56\x58\x40\x02\x37\x52\x2c"
5068 "\x55\xcc\xb3\x9e\x7a\xe9\xd4\x38"
5069 "\x41\x5e\x0c\x35\xe2\x11\xd1\x13"
5070 "\xf8\xb7\x8d\x72\x6b\x22\x2a\xb0"
5071 "\xdb\x08\xba\x35\xb9\x3f\xc8\xd3"
5072 "\x24\x90\xec\x58\xd2\x09\xc7\x2d"
5073 "\xed\x38\x80\x36\x72\x43\x27\x49"
5074 "\x4a\x80\x8a\xa2\xe8\xd3\xda\x30"
5075 "\x7d\xb6\x82\x37\x86\x92\x86\x3e"
5076 "\x08\xb2\x28\x5a\x55\x44\x24\x7d"
5077 "\x40\x48\x8a\xb6\x89\x58\x08\xa0"
5078 "\xd6\x6d\x3a\x17\xbf\xf6\x54\xa2"
5079 "\xf5\xd3\x8c\x0f\x78\x12\x57\x8b"
5080 "\xd5\xc2\xfd\x58\x5b\x7f\x38\xe3"
5081 "\xcc\xb7\x7c\x48\xb3\x20\xe8\x81"
5082 "\x14\x32\x45\x05\xe0\xdb\x9f\x75"
5083 "\x85\xb4\x6a\xfc\x95\xe3\x54\x22"
5084 "\x12\xee\x30\xfe\xd8\x30\xef\x34"
5085 "\x50\xab\x46\x30\x98\x2f\xb7\xc0"
5086 "\x15\xa2\x83\xb6\xf2\x06\x21\xa2"
5087 "\xc3\x26\x37\x14\xd1\x4d\xb5\x10"
5088 "\x52\x76\x4d\x6a\xee\xb5\x2b\x15"
5089 "\xb7\xf9\x51\xe8\x2a\xaf\xc7\xfa"
5090 "\x77\xaf\xb0\x05\x4d\xd1\x68\x8e"
5091 "\x74\x05\x9f\x9d\x93\xa5\x3e\x7f"
5092 "\x4e\x5f\x9d\xcb\x09\xc7\x83\xe3"
5093 "\x02\x9d\x27\x1f\xef\x85\x05\x8d"
5094 "\xec\x55\x88\x0f\x0d\x7c\x4c\xe8"
5095 "\xa1\x75\xa0\xd8\x06\x47\x14\xef"
5096 "\xaa\x61\xcf\x26\x15\xad\xd8\xa3"
5097 "\xaa\x75\xf2\x78\x4a\x5a\x61\xdf"
5098 "\x8b\xc7\x04\xbc\xb2\x32\xd2\x7e"
5099 "\x42\xee\xb4\x2f\x51\xff\x7b\x2e"
5100 "\xd3\x02\xe8\xdc\x5d\x0d\x50\xdc"
5101 "\xae\xb7\x46\xf9\xa8\xe6\xd0\x16"
5102 "\xcc\xe6\x2c\x81\xc7\xad\xe9\xf0"
5103 "\x05\x72\x6d\x3d\x0a\x7a\xa9\x02"
5104 "\xac\x82\x93\x6e\xb6\x1c\x28\xfc"
5105 "\x44\x12\xfb\x73\x77\xd4\x13\x39"
5106 "\x29\x88\x8a\xf3\x5c\xa6\x36\xa0"
5107 "\x2a\xed\x7e\xb1\x1d\xd6\x4c\x6b"
5108 "\x41\x01\x18\x5d\x5d\x07\x97\xa6"
5109 "\x4b\xef\x31\x18\xea\xac\xb1\x84"
5110 "\x21\xed\xda\x86",
5111 .rlen = 4100,
5112 .np = 2,
5113 .tap = { 4064, 36 },
5114 },
5115};
5116
5117static struct cipher_testvec aes_ctr_dec_tv_template[] = {
5118 { /* From RFC 3686 */
5119 .key = "\xae\x68\x52\xf8\x12\x10\x67\xcc"
5120 "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e"
5121 "\x00\x00\x00\x30",
5122 .klen = 20,
5123 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
5124 .input = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79"
5125 "\x2d\x61\x75\xa3\x26\x13\x11\xb8",
5126 .ilen = 16,
5127 .result = "Single block msg",
5128 .rlen = 16,
5129 }, {
5130 .key = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7"
5131 "\x43\xd6\xce\x1f\x32\x53\x91\x63"
5132 "\x00\x6c\xb6\xdb",
5133 .klen = 20,
5134 .iv = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b",
5135 .input = "\x51\x04\xa1\x06\x16\x8a\x72\xd9"
5136 "\x79\x0d\x41\xee\x8e\xda\xd3\x88"
5137 "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8"
5138 "\xfc\xe6\x30\xdf\x91\x41\xbe\x28",
5139 .ilen = 32,
5140 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5141 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5142 "\x10\x11\x12\x13\x14\x15\x16\x17"
5143 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5144 .rlen = 32,
5145 }, {
5146 .key = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79"
5147 "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed"
5148 "\x86\x3d\x06\xcc\xfd\xb7\x85\x15"
5149 "\x00\x00\x00\x48",
5150 .klen = 28,
5151 .iv = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb",
5152 .input = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8"
5153 "\x4e\x79\x35\xa0\x03\xcb\xe9\x28",
5154 .ilen = 16,
5155 .result = "Single block msg",
5156 .rlen = 16,
5157 }, {
5158 .key = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c"
5159 "\x19\xe7\x34\x08\x19\xe0\xf6\x9c"
5160 "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a"
5161 "\x00\x96\xb0\x3b",
5162 .klen = 28,
5163 .iv = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d",
5164 .input = "\x45\x32\x43\xfc\x60\x9b\x23\x32"
5165 "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f"
5166 "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c"
5167 "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00",
5168 .ilen = 32,
5169 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5170 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5171 "\x10\x11\x12\x13\x14\x15\x16\x17"
5172 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5173 .rlen = 32,
5174 }, {
5175 .key = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f"
5176 "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c"
5177 "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3"
5178 "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04"
5179 "\x00\x00\x00\x60",
5180 .klen = 36,
5181 .iv = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2",
5182 .input = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7"
5183 "\x56\x08\x63\xdc\x71\xe3\xe0\xc0",
5184 .ilen = 16,
5185 .result = "Single block msg",
5186 .rlen = 16,
5187 }, {
5188 .key = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb"
5189 "\x07\x96\x36\x58\x79\xef\xf8\x86"
5190 "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74"
5191 "\x4b\x50\x59\x0c\x87\xa2\x38\x84"
5192 "\x00\xfa\xac\x24",
5193 .klen = 36,
5194 .iv = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75",
5195 .input = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c"
5196 "\x49\xee\x00\x0b\x80\x4e\xb2\xa9"
5197 "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a"
5198 "\x55\x30\x83\x1d\x93\x44\xaf\x1c",
5199 .ilen = 32,
5200 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5201 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5202 "\x10\x11\x12\x13\x14\x15\x16\x17"
5203 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5204 .rlen = 32,
5205 },
5206};
5207
5208static struct aead_testvec aes_gcm_enc_tv_template[] = {
5209 { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */
5210 .key = zeroed_string,
5211 .klen = 16,
5212 .result = "\x58\xe2\xfc\xce\xfa\x7e\x30\x61"
5213 "\x36\x7f\x1d\x57\xa4\xe7\x45\x5a",
5214 .rlen = 16,
5215 }, {
5216 .key = zeroed_string,
5217 .klen = 16,
5218 .input = zeroed_string,
5219 .ilen = 16,
5220 .result = "\x03\x88\xda\xce\x60\xb6\xa3\x92"
5221 "\xf3\x28\xc2\xb9\x71\xb2\xfe\x78"
5222 "\xab\x6e\x47\xd4\x2c\xec\x13\xbd"
5223 "\xf5\x3a\x67\xb2\x12\x57\xbd\xdf",
5224 .rlen = 32,
5225 }, {
5226 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5227 "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5228 .klen = 16,
5229 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5230 "\xde\xca\xf8\x88",
5231 .input = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5232 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5233 "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5234 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5235 "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5236 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5237 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5238 "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5239 .ilen = 64,
5240 .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5241 "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5242 "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5243 "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5244 "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5245 "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5246 "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5247 "\x3d\x58\xe0\x91\x47\x3f\x59\x85"
5248 "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6"
5249 "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4",
5250 .rlen = 80,
5251 }, {
5252 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5253 "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5254 .klen = 16,
5255 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5256 "\xde\xca\xf8\x88",
5257 .input = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5258 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5259 "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5260 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5261 "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5262 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5263 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5264 "\xba\x63\x7b\x39",
5265 .ilen = 60,
5266 .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5267 "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5268 "\xab\xad\xda\xd2",
5269 .alen = 20,
5270 .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5271 "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5272 "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5273 "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5274 "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5275 "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5276 "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5277 "\x3d\x58\xe0\x91"
5278 "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb"
5279 "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47",
5280 .rlen = 76,
5281 }, {
5282 .key = zeroed_string,
5283 .klen = 24,
5284 .result = "\xcd\x33\xb2\x8a\xc7\x73\xf7\x4b"
5285 "\xa0\x0e\xd1\xf3\x12\x57\x24\x35",
5286 .rlen = 16,
5287 }, {
5288 .key = zeroed_string,
5289 .klen = 24,
5290 .input = zeroed_string,
5291 .ilen = 16,
5292 .result = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41"
5293 "\x1c\x26\x7e\x43\x84\xb0\xf6\x00"
5294 "\x2f\xf5\x8d\x80\x03\x39\x27\xab"
5295 "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb",
5296 .rlen = 32,
5297 }, {
5298 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5299 "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5300 "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5301 .klen = 24,
5302 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5303 "\xde\xca\xf8\x88",
5304 .input = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5305 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5306 "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5307 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5308 "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5309 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5310 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5311 "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5312 .ilen = 64,
5313 .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5314 "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5315 "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5316 "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5317 "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5318 "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5319 "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5320 "\xcc\xda\x27\x10\xac\xad\xe2\x56"
5321 "\x99\x24\xa7\xc8\x58\x73\x36\xbf"
5322 "\xb1\x18\x02\x4d\xb8\x67\x4a\x14",
5323 .rlen = 80,
5324 }, {
5325 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5326 "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5327 "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5328 .klen = 24,
5329 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5330 "\xde\xca\xf8\x88",
5331 .input = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5332 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5333 "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5334 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5335 "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5336 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5337 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5338 "\xba\x63\x7b\x39",
5339 .ilen = 60,
5340 .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5341 "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5342 "\xab\xad\xda\xd2",
5343 .alen = 20,
5344 .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5345 "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5346 "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5347 "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5348 "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5349 "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5350 "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5351 "\xcc\xda\x27\x10"
5352 "\x25\x19\x49\x8e\x80\xf1\x47\x8f"
5353 "\x37\xba\x55\xbd\x6d\x27\x61\x8c",
5354 .rlen = 76,
5355 .np = 2,
5356 .tap = { 32, 28 },
5357 .anp = 2,
5358 .atap = { 8, 12 }
5359 }, {
5360 .key = zeroed_string,
5361 .klen = 32,
5362 .result = "\x53\x0f\x8a\xfb\xc7\x45\x36\xb9"
5363 "\xa9\x63\xb4\xf1\xc4\xcb\x73\x8b",
5364 .rlen = 16,
5365 }
5366};
5367
5368static struct aead_testvec aes_gcm_dec_tv_template[] = {
5369 { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */
5370 .key = zeroed_string,
5371 .klen = 32,
5372 .input = "\xce\xa7\x40\x3d\x4d\x60\x6b\x6e"
5373 "\x07\x4e\xc5\xd3\xba\xf3\x9d\x18"
5374 "\xd0\xd1\xc8\xa7\x99\x99\x6b\xf0"
5375 "\x26\x5b\x98\xb5\xd4\x8a\xb9\x19",
5376 .ilen = 32,
5377 .result = zeroed_string,
5378 .rlen = 16,
5379 }, {
5380 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5381 "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5382 "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5383 "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5384 .klen = 32,
5385 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5386 "\xde\xca\xf8\x88",
5387 .input = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
5388 "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d"
5389 "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9"
5390 "\x75\x98\xa2\xbd\x25\x55\xd1\xaa"
5391 "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d"
5392 "\xa7\xb0\x8b\x10\x56\x82\x88\x38"
5393 "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a"
5394 "\xbc\xc9\xf6\x62\x89\x80\x15\xad"
5395 "\xb0\x94\xda\xc5\xd9\x34\x71\xbd"
5396 "\xec\x1a\x50\x22\x70\xe3\xcc\x6c",
5397 .ilen = 80,
5398 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5399 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5400 "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5401 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5402 "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5403 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5404 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5405 "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5406 .rlen = 64,
5407 }, {
5408 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5409 "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5410 "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5411 "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5412 .klen = 32,
5413 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5414 "\xde\xca\xf8\x88",
5415 .input = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
5416 "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d"
5417 "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9"
5418 "\x75\x98\xa2\xbd\x25\x55\xd1\xaa"
5419 "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d"
5420 "\xa7\xb0\x8b\x10\x56\x82\x88\x38"
5421 "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a"
5422 "\xbc\xc9\xf6\x62"
5423 "\x76\xfc\x6e\xce\x0f\x4e\x17\x68"
5424 "\xcd\xdf\x88\x53\xbb\x2d\x55\x1b",
5425 .ilen = 76,
5426 .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5427 "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5428 "\xab\xad\xda\xd2",
5429 .alen = 20,
5430 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5431 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5432 "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5433 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5434 "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5435 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5436 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5437 "\xba\x63\x7b\x39",
5438 .rlen = 60,
5439 .np = 2,
5440 .tap = { 48, 28 },
5441 .anp = 3,
5442 .atap = { 8, 8, 4 }
5443 }, {
5444 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5445 "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5446 .klen = 16,
5447 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5448 "\xde\xca\xf8\x88",
5449 .input = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5450 "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5451 "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5452 "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5453 "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5454 "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5455 "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5456 "\x3d\x58\xe0\x91\x47\x3f\x59\x85"
5457 "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6"
5458 "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4",
5459 .ilen = 80,
5460 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5461 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5462 "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5463 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5464 "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5465 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5466 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5467 "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5468 .rlen = 64,
5469 }, {
5470 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5471 "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5472 .klen = 16,
5473 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5474 "\xde\xca\xf8\x88",
5475 .input = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5476 "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5477 "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5478 "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5479 "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5480 "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5481 "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5482 "\x3d\x58\xe0\x91"
5483 "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb"
5484 "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47",
5485 .ilen = 76,
5486 .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5487 "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5488 "\xab\xad\xda\xd2",
5489 .alen = 20,
5490 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5491 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5492 "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5493 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5494 "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5495 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5496 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5497 "\xba\x63\x7b\x39",
5498 .rlen = 60,
5499 }, {
5500 .key = zeroed_string,
5501 .klen = 24,
5502 .input = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41"
5503 "\x1c\x26\x7e\x43\x84\xb0\xf6\x00"
5504 "\x2f\xf5\x8d\x80\x03\x39\x27\xab"
5505 "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb",
5506 .ilen = 32,
5507 .result = zeroed_string,
5508 .rlen = 16,
5509 }, {
5510 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5511 "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5512 "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5513 .klen = 24,
5514 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5515 "\xde\xca\xf8\x88",
5516 .input = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5517 "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5518 "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5519 "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5520 "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5521 "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5522 "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5523 "\xcc\xda\x27\x10\xac\xad\xe2\x56"
5524 "\x99\x24\xa7\xc8\x58\x73\x36\xbf"
5525 "\xb1\x18\x02\x4d\xb8\x67\x4a\x14",
5526 .ilen = 80,
5527 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5528 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5529 "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5530 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5531 "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5532 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5533 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5534 "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5535 .rlen = 64,
5536 }, {
5537 .key = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5538 "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5539 "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5540 .klen = 24,
5541 .iv = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5542 "\xde\xca\xf8\x88",
5543 .input = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5544 "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5545 "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5546 "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5547 "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5548 "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5549 "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5550 "\xcc\xda\x27\x10"
5551 "\x25\x19\x49\x8e\x80\xf1\x47\x8f"
5552 "\x37\xba\x55\xbd\x6d\x27\x61\x8c",
5553 .ilen = 76,
5554 .assoc = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5555 "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5556 "\xab\xad\xda\xd2",
5557 .alen = 20,
5558 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5559 "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5560 "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5561 "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5562 "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5563 "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5564 "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5565 "\xba\x63\x7b\x39",
5566 .rlen = 60,
5567 }
5568};
5569
5570static struct aead_testvec aes_ccm_enc_tv_template[] = {
5571 { /* From RFC 3610 */
5572 .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5573 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5574 .klen = 16,
5575 .iv = "\x01\x00\x00\x00\x03\x02\x01\x00"
5576 "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5577 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07",
5578 .alen = 8,
5579 .input = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5580 "\x10\x11\x12\x13\x14\x15\x16\x17"
5581 "\x18\x19\x1a\x1b\x1c\x1d\x1e",
5582 .ilen = 23,
5583 .result = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2"
5584 "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80"
5585 "\x6d\x5f\x6b\x61\xda\xc3\x84\x17"
5586 "\xe8\xd1\x2c\xfd\xf9\x26\xe0",
5587 .rlen = 31,
5588 }, {
5589 .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5590 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5591 .klen = 16,
5592 .iv = "\x01\x00\x00\x00\x07\x06\x05\x04"
5593 "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5594 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07"
5595 "\x08\x09\x0a\x0b",
5596 .alen = 12,
5597 .input = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5598 "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5599 "\x1c\x1d\x1e\x1f",
5600 .ilen = 20,
5601 .result = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb"
5602 "\x9d\x4e\x13\x12\x53\x65\x8a\xd8"
5603 "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07"
5604 "\x7d\x9c\x2d\x93",
5605 .rlen = 28,
5606 }, {
5607 .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5608 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5609 .klen = 16,
5610 .iv = "\x01\x00\x00\x00\x0b\x0a\x09\x08"
5611 "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5612 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07",
5613 .alen = 8,
5614 .input = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5615 "\x10\x11\x12\x13\x14\x15\x16\x17"
5616 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
5617 "\x20",
5618 .ilen = 25,
5619 .result = "\x82\x53\x1a\x60\xcc\x24\x94\x5a"
5620 "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d"
5621 "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1"
5622 "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1"
5623 "\x7e\x5f\x4e",
5624 .rlen = 35,
5625 }, {
5626 .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5627 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5628 .klen = 16,
5629 .iv = "\x01\x00\x00\x00\x0c\x0b\x0a\x09"
5630 "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5631 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07"
5632 "\x08\x09\x0a\x0b",
5633 .alen = 12,
5634 .input = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5635 "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5636 "\x1c\x1d\x1e",
5637 .ilen = 19,
5638 .result = "\x07\x34\x25\x94\x15\x77\x85\x15"
5639 "\x2b\x07\x40\x98\x33\x0a\xbb\x14"
5640 "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b"
5641 "\x4d\x99\x99\x88\xdd",
5642 .rlen = 29,
5643 }, {
5644 .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5645 "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5646 .klen = 16,
5647 .iv = "\x01\x00\x33\x56\x8e\xf7\xb2\x63"
5648 "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5649 .assoc = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb",
5650 .alen = 8,
5651 .input = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a"
5652 "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf"
5653 "\xb7\x9c\x70\x28\x94\x9c\xd0\xec",
5654 .ilen = 24,
5655 .result = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa"
5656 "\xa0\x72\x6c\x55\xd3\x78\x06\x12"
5657 "\x98\xc8\x5c\x92\x81\x4a\xbc\x33"
5658 "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a",
5659 .rlen = 32,
5660 }, {
5661 .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5662 "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5663 .klen = 16,
5664 .iv = "\x01\x00\xd5\x60\x91\x2d\x3f\x70"
5665 "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5666 .assoc = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81"
5667 "\x20\xea\x60\xc0",
5668 .alen = 12,
5669 .input = "\x64\x35\xac\xba\xfb\x11\xa8\x2e"
5670 "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9"
5671 "\x3a\x80\x3b\xa8\x7f",
5672 .ilen = 21,
5673 .result = "\x00\x97\x69\xec\xab\xdf\x48\x62"
5674 "\x55\x94\xc5\x92\x51\xe6\x03\x57"
5675 "\x22\x67\x5e\x04\xc8\x47\x09\x9e"
5676 "\x5a\xe0\x70\x45\x51",
5677 .rlen = 29,
5678 }, {
5679 .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5680 "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5681 .klen = 16,
5682 .iv = "\x01\x00\x42\xff\xf8\xf1\x95\x1c"
5683 "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5684 .assoc = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8",
5685 .alen = 8,
5686 .input = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01"
5687 "\x8e\x5e\x67\x01\xc9\x17\x87\x65"
5688 "\x98\x09\xd6\x7d\xbe\xdd\x18",
5689 .ilen = 23,
5690 .result = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6"
5691 "\xdb\x38\x6a\x99\xac\x1a\xef\x23"
5692 "\xad\xe0\xb5\x29\x39\xcb\x6a\x63"
5693 "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6"
5694 "\xba",
5695 .rlen = 33,
5696 },
5697};
5698
5699static struct aead_testvec aes_ccm_dec_tv_template[] = {
5700 { /* From RFC 3610 */
5701 .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5702 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5703 .klen = 16,
5704 .iv = "\x01\x00\x00\x00\x03\x02\x01\x00"
5705 "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5706 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07",
5707 .alen = 8,
5708 .input = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2"
5709 "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80"
5710 "\x6d\x5f\x6b\x61\xda\xc3\x84\x17"
5711 "\xe8\xd1\x2c\xfd\xf9\x26\xe0",
5712 .ilen = 31,
5713 .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5714 "\x10\x11\x12\x13\x14\x15\x16\x17"
5715 "\x18\x19\x1a\x1b\x1c\x1d\x1e",
5716 .rlen = 23,
5717 }, {
5718 .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5719 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5720 .klen = 16,
5721 .iv = "\x01\x00\x00\x00\x07\x06\x05\x04"
5722 "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5723 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07"
5724 "\x08\x09\x0a\x0b",
5725 .alen = 12,
5726 .input = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb"
5727 "\x9d\x4e\x13\x12\x53\x65\x8a\xd8"
5728 "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07"
5729 "\x7d\x9c\x2d\x93",
5730 .ilen = 28,
5731 .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5732 "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5733 "\x1c\x1d\x1e\x1f",
5734 .rlen = 20,
5735 }, {
5736 .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5737 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5738 .klen = 16,
5739 .iv = "\x01\x00\x00\x00\x0b\x0a\x09\x08"
5740 "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5741 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07",
5742 .alen = 8,
5743 .input = "\x82\x53\x1a\x60\xcc\x24\x94\x5a"
5744 "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d"
5745 "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1"
5746 "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1"
5747 "\x7e\x5f\x4e",
5748 .ilen = 35,
5749 .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5750 "\x10\x11\x12\x13\x14\x15\x16\x17"
5751 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
5752 "\x20",
5753 .rlen = 25,
5754 }, {
5755 .key = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5756 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5757 .klen = 16,
5758 .iv = "\x01\x00\x00\x00\x0c\x0b\x0a\x09"
5759 "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5760 .assoc = "\x00\x01\x02\x03\x04\x05\x06\x07"
5761 "\x08\x09\x0a\x0b",
5762 .alen = 12,
5763 .input = "\x07\x34\x25\x94\x15\x77\x85\x15"
5764 "\x2b\x07\x40\x98\x33\x0a\xbb\x14"
5765 "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b"
5766 "\x4d\x99\x99\x88\xdd",
5767 .ilen = 29,
5768 .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5769 "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5770 "\x1c\x1d\x1e",
5771 .rlen = 19,
5772 }, {
5773 .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5774 "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5775 .klen = 16,
5776 .iv = "\x01\x00\x33\x56\x8e\xf7\xb2\x63"
5777 "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5778 .assoc = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb",
5779 .alen = 8,
5780 .input = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa"
5781 "\xa0\x72\x6c\x55\xd3\x78\x06\x12"
5782 "\x98\xc8\x5c\x92\x81\x4a\xbc\x33"
5783 "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a",
5784 .ilen = 32,
5785 .result = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a"
5786 "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf"
5787 "\xb7\x9c\x70\x28\x94\x9c\xd0\xec",
5788 .rlen = 24,
5789 }, {
5790 .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5791 "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5792 .klen = 16,
5793 .iv = "\x01\x00\xd5\x60\x91\x2d\x3f\x70"
5794 "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5795 .assoc = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81"
5796 "\x20\xea\x60\xc0",
5797 .alen = 12,
5798 .input = "\x00\x97\x69\xec\xab\xdf\x48\x62"
5799 "\x55\x94\xc5\x92\x51\xe6\x03\x57"
5800 "\x22\x67\x5e\x04\xc8\x47\x09\x9e"
5801 "\x5a\xe0\x70\x45\x51",
5802 .ilen = 29,
5803 .result = "\x64\x35\xac\xba\xfb\x11\xa8\x2e"
5804 "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9"
5805 "\x3a\x80\x3b\xa8\x7f",
5806 .rlen = 21,
5807 }, {
5808 .key = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5809 "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5810 .klen = 16,
5811 .iv = "\x01\x00\x42\xff\xf8\xf1\x95\x1c"
5812 "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5813 .assoc = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8",
5814 .alen = 8,
5815 .input = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6"
5816 "\xdb\x38\x6a\x99\xac\x1a\xef\x23"
5817 "\xad\xe0\xb5\x29\x39\xcb\x6a\x63"
5818 "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6"
5819 "\xba",
5820 .ilen = 33,
5821 .result = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01"
5822 "\x8e\x5e\x67\x01\xc9\x17\x87\x65"
5823 "\x98\x09\xd6\x7d\xbe\xdd\x18",
5824 .rlen = 23,
5825 },
5826};
5827
5828/* Cast5 test vectors from RFC 2144 */
5829#define CAST5_ENC_TEST_VECTORS 3
5830#define CAST5_DEC_TEST_VECTORS 3
5831
5832static struct cipher_testvec cast5_enc_tv_template[] = {
5833 {
5834 .key = "\x01\x23\x45\x67\x12\x34\x56\x78"
5835 "\x23\x45\x67\x89\x34\x56\x78\x9a",
5836 .klen = 16,
5837 .input = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5838 .ilen = 8,
5839 .result = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2",
5840 .rlen = 8,
5841 }, {
5842 .key = "\x01\x23\x45\x67\x12\x34\x56\x78"
5843 "\x23\x45",
5844 .klen = 10,
5845 .input = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5846 .ilen = 8,
5847 .result = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b",
5848 .rlen = 8,
5849 }, {
5850 .key = "\x01\x23\x45\x67\x12",
5851 .klen = 5,
5852 .input = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5853 .ilen = 8,
5854 .result = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e",
5855 .rlen = 8,
5856 },
5857};
5858
5859static struct cipher_testvec cast5_dec_tv_template[] = {
5860 {
5861 .key = "\x01\x23\x45\x67\x12\x34\x56\x78"
5862 "\x23\x45\x67\x89\x34\x56\x78\x9a",
5863 .klen = 16,
5864 .input = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2",
5865 .ilen = 8,
5866 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5867 .rlen = 8,
5868 }, {
5869 .key = "\x01\x23\x45\x67\x12\x34\x56\x78"
5870 "\x23\x45",
5871 .klen = 10,
5872 .input = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b",
5873 .ilen = 8,
5874 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5875 .rlen = 8,
5876 }, {
5877 .key = "\x01\x23\x45\x67\x12",
5878 .klen = 5,
5879 .input = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e",
5880 .ilen = 8,
5881 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5882 .rlen = 8,
5883 },
5884};
5885
5886/*
5887 * ARC4 test vectors from OpenSSL
5888 */
5889#define ARC4_ENC_TEST_VECTORS 7
5890#define ARC4_DEC_TEST_VECTORS 7
5891
5892static struct cipher_testvec arc4_enc_tv_template[] = {
5893 {
5894 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5895 .klen = 8,
5896 .input = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5897 .ilen = 8,
5898 .result = "\x75\xb7\x87\x80\x99\xe0\xc5\x96",
5899 .rlen = 8,
5900 }, {
5901 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5902 .klen = 8,
5903 .input = "\x00\x00\x00\x00\x00\x00\x00\x00",
5904 .ilen = 8,
5905 .result = "\x74\x94\xc2\xe7\x10\x4b\x08\x79",
5906 .rlen = 8,
5907 }, {
5908 .key = "\x00\x00\x00\x00\x00\x00\x00\x00",
5909 .klen = 8,
5910 .input = "\x00\x00\x00\x00\x00\x00\x00\x00",
5911 .ilen = 8,
5912 .result = "\xde\x18\x89\x41\xa3\x37\x5d\x3a",
5913 .rlen = 8,
5914 }, {
5915 .key = "\xef\x01\x23\x45",
5916 .klen = 4,
5917 .input = "\x00\x00\x00\x00\x00\x00\x00\x00"
5918 "\x00\x00\x00\x00\x00\x00\x00\x00"
5919 "\x00\x00\x00\x00",
5920 .ilen = 20,
5921 .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
5922 "\xbd\x61\x5a\x11\x62\xe1\xc7\xba"
5923 "\x36\xb6\x78\x58",
5924 .rlen = 20,
5925 }, {
5926 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5927 .klen = 8,
5928 .input = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
5929 "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
5930 "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
5931 "\x12\x34\x56\x78",
5932 .ilen = 28,
5933 .result = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89"
5934 "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c"
5935 "\x89\x2e\xbe\x30\x14\x3c\xe2\x87"
5936 "\x40\x01\x1e\xcf",
5937 .rlen = 28,
5938 }, {
5939 .key = "\xef\x01\x23\x45",
5940 .klen = 4,
5941 .input = "\x00\x00\x00\x00\x00\x00\x00\x00"
5942 "\x00\x00",
5943 .ilen = 10,
5944 .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
5945 "\xbd\x61",
5946 .rlen = 10,
5947 }, {
5948 .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
5949 "\x00\x00\x00\x00\x00\x00\x00\x00",
5950 .klen = 16,
5951 .input = "\x01\x23\x45\x67\x89\xAB\xCD\xEF",
5952 .ilen = 8,
5953 .result = "\x69\x72\x36\x59\x1B\x52\x42\xB1",
5954 .rlen = 8,
5955 },
5956};
5957
5958static struct cipher_testvec arc4_dec_tv_template[] = {
5959 {
5960 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5961 .klen = 8,
5962 .input = "\x75\xb7\x87\x80\x99\xe0\xc5\x96",
5963 .ilen = 8,
5964 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5965 .rlen = 8,
5966 }, {
5967 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5968 .klen = 8,
5969 .input = "\x74\x94\xc2\xe7\x10\x4b\x08\x79",
5970 .ilen = 8,
5971 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
5972 .rlen = 8,
5973 }, {
5974 .key = "\x00\x00\x00\x00\x00\x00\x00\x00",
5975 .klen = 8,
5976 .input = "\xde\x18\x89\x41\xa3\x37\x5d\x3a",
5977 .ilen = 8,
5978 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
5979 .rlen = 8,
5980 }, {
5981 .key = "\xef\x01\x23\x45",
5982 .klen = 4,
5983 .input = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
5984 "\xbd\x61\x5a\x11\x62\xe1\xc7\xba"
5985 "\x36\xb6\x78\x58",
5986 .ilen = 20,
5987 .result = "\x00\x00\x00\x00\x00\x00\x00\x00"
5988 "\x00\x00\x00\x00\x00\x00\x00\x00"
5989 "\x00\x00\x00\x00",
5990 .rlen = 20,
5991 }, {
5992 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5993 .klen = 8,
5994 .input = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89"
5995 "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c"
5996 "\x89\x2e\xbe\x30\x14\x3c\xe2\x87"
5997 "\x40\x01\x1e\xcf",
5998 .ilen = 28,
5999 .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6000 "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6001 "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6002 "\x12\x34\x56\x78",
6003 .rlen = 28,
6004 }, {
6005 .key = "\xef\x01\x23\x45",
6006 .klen = 4,
6007 .input = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6008 "\xbd\x61",
6009 .ilen = 10,
6010 .result = "\x00\x00\x00\x00\x00\x00\x00\x00"
6011 "\x00\x00",
6012 .rlen = 10,
6013 }, {
6014 .key = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
6015 "\x00\x00\x00\x00\x00\x00\x00\x00",
6016 .klen = 16,
6017 .input = "\x69\x72\x36\x59\x1B\x52\x42\xB1",
6018 .ilen = 8,
6019 .result = "\x01\x23\x45\x67\x89\xAB\xCD\xEF",
6020 .rlen = 8,
6021 },
6022};
6023
6024/*
6025 * TEA test vectors
6026 */
6027#define TEA_ENC_TEST_VECTORS 4
6028#define TEA_DEC_TEST_VECTORS 4
6029
6030static struct cipher_testvec tea_enc_tv_template[] = {
6031 {
6032 .key = zeroed_string,
6033 .klen = 16,
6034 .input = zeroed_string,
6035 .ilen = 8,
6036 .result = "\x0a\x3a\xea\x41\x40\xa9\xba\x94",
6037 .rlen = 8,
6038 }, {
6039 .key = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6040 "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6041 .klen = 16,
6042 .input = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6043 .ilen = 8,
6044 .result = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09",
6045 .rlen = 8,
6046 }, {
6047 .key = "\x09\x65\x43\x11\x66\x44\x39\x25"
6048 "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6049 .klen = 16,
6050 .input = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6051 "\x65\x73\x74\x5f\x76\x65\x63\x74",
6052 .ilen = 16,
6053 .result = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e"
6054 "\xdd\x89\xa1\x25\x04\x21\xdf\x95",
6055 .rlen = 16,
6056 }, {
6057 .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6058 "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6059 .klen = 16,
6060 .input = "\x54\x65\x61\x20\x69\x73\x20\x67"
6061 "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6062 "\x79\x6f\x75\x21\x21\x21\x20\x72"
6063 "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6064 .ilen = 32,
6065 .result = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47"
6066 "\x94\x18\x95\x91\xa9\xfc\x49\xf8"
6067 "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a"
6068 "\x07\x89\x73\xc2\x45\x92\xc6\x90",
6069 .rlen = 32,
6070 }
6071};
6072
6073static struct cipher_testvec tea_dec_tv_template[] = {
6074 {
6075 .key = zeroed_string,
6076 .klen = 16,
6077 .input = "\x0a\x3a\xea\x41\x40\xa9\xba\x94",
6078 .ilen = 8,
6079 .result = zeroed_string,
6080 .rlen = 8,
6081 }, {
6082 .key = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6083 "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6084 .klen = 16,
6085 .input = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09",
6086 .ilen = 8,
6087 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6088 .rlen = 8,
6089 }, {
6090 .key = "\x09\x65\x43\x11\x66\x44\x39\x25"
6091 "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6092 .klen = 16,
6093 .input = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e"
6094 "\xdd\x89\xa1\x25\x04\x21\xdf\x95",
6095 .ilen = 16,
6096 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6097 "\x65\x73\x74\x5f\x76\x65\x63\x74",
6098 .rlen = 16,
6099 }, {
6100 .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6101 "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6102 .klen = 16,
6103 .input = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47"
6104 "\x94\x18\x95\x91\xa9\xfc\x49\xf8"
6105 "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a"
6106 "\x07\x89\x73\xc2\x45\x92\xc6\x90",
6107 .ilen = 32,
6108 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
6109 "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6110 "\x79\x6f\x75\x21\x21\x21\x20\x72"
6111 "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6112 .rlen = 32,
6113 }
6114};
6115
6116/*
6117 * XTEA test vectors
6118 */
6119#define XTEA_ENC_TEST_VECTORS 4
6120#define XTEA_DEC_TEST_VECTORS 4
6121
6122static struct cipher_testvec xtea_enc_tv_template[] = {
6123 {
6124 .key = zeroed_string,
6125 .klen = 16,
6126 .input = zeroed_string,
6127 .ilen = 8,
6128 .result = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7",
6129 .rlen = 8,
6130 }, {
6131 .key = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6132 "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6133 .klen = 16,
6134 .input = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6135 .ilen = 8,
6136 .result = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8",
6137 .rlen = 8,
6138 }, {
6139 .key = "\x09\x65\x43\x11\x66\x44\x39\x25"
6140 "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6141 .klen = 16,
6142 .input = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6143 "\x65\x73\x74\x5f\x76\x65\x63\x74",
6144 .ilen = 16,
6145 .result = "\x3e\xce\xae\x22\x60\x56\xa8\x9d"
6146 "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a",
6147 .rlen = 16,
6148 }, {
6149 .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6150 "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6151 .klen = 16,
6152 .input = "\x54\x65\x61\x20\x69\x73\x20\x67"
6153 "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6154 "\x79\x6f\x75\x21\x21\x21\x20\x72"
6155 "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6156 .ilen = 32,
6157 .result = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a"
6158 "\x86\xff\x6f\xd0\xe3\x87\x70\x07"
6159 "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4"
6160 "\x73\xa2\xfa\xc9\x16\x59\x5d\x81",
6161 .rlen = 32,
6162 }
6163};
6164
6165static struct cipher_testvec xtea_dec_tv_template[] = {
6166 {
6167 .key = zeroed_string,
6168 .klen = 16,
6169 .input = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7",
6170 .ilen = 8,
6171 .result = zeroed_string,
6172 .rlen = 8,
6173 }, {
6174 .key = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6175 "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6176 .klen = 16,
6177 .input = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8",
6178 .ilen = 8,
6179 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6180 .rlen = 8,
6181 }, {
6182 .key = "\x09\x65\x43\x11\x66\x44\x39\x25"
6183 "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6184 .klen = 16,
6185 .input = "\x3e\xce\xae\x22\x60\x56\xa8\x9d"
6186 "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a",
6187 .ilen = 16,
6188 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6189 "\x65\x73\x74\x5f\x76\x65\x63\x74",
6190 .rlen = 16,
6191 }, {
6192 .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6193 "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6194 .klen = 16,
6195 .input = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a"
6196 "\x86\xff\x6f\xd0\xe3\x87\x70\x07"
6197 "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4"
6198 "\x73\xa2\xfa\xc9\x16\x59\x5d\x81",
6199 .ilen = 32,
6200 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
6201 "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6202 "\x79\x6f\x75\x21\x21\x21\x20\x72"
6203 "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6204 .rlen = 32,
6205 }
6206};
6207
6208/*
6209 * KHAZAD test vectors.
6210 */
6211#define KHAZAD_ENC_TEST_VECTORS 5
6212#define KHAZAD_DEC_TEST_VECTORS 5
6213
6214static struct cipher_testvec khazad_enc_tv_template[] = {
6215 {
6216 .key = "\x80\x00\x00\x00\x00\x00\x00\x00"
6217 "\x00\x00\x00\x00\x00\x00\x00\x00",
6218 .klen = 16,
6219 .input = "\x00\x00\x00\x00\x00\x00\x00\x00",
6220 .ilen = 8,
6221 .result = "\x49\xa4\xce\x32\xac\x19\x0e\x3f",
6222 .rlen = 8,
6223 }, {
6224 .key = "\x38\x38\x38\x38\x38\x38\x38\x38"
6225 "\x38\x38\x38\x38\x38\x38\x38\x38",
6226 .klen = 16,
6227 .input = "\x38\x38\x38\x38\x38\x38\x38\x38",
6228 .ilen = 8,
6229 .result = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9",
6230 .rlen = 8,
6231 }, {
6232 .key = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2"
6233 "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6234 .klen = 16,
6235 .input = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6236 .ilen = 8,
6237 .result = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c",
6238 .rlen = 8,
6239 }, {
6240 .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6241 "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6242 .klen = 16,
6243 .input = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6244 .ilen = 8,
6245 .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6246 .rlen = 8,
6247 }, {
6248 .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6249 "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6250 .klen = 16,
6251 .input = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6252 "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6253 .ilen = 16,
6254 .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8"
6255 "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6256 .rlen = 16,
6257 },
6258};
6259
6260static struct cipher_testvec khazad_dec_tv_template[] = {
6261 {
6262 .key = "\x80\x00\x00\x00\x00\x00\x00\x00"
6263 "\x00\x00\x00\x00\x00\x00\x00\x00",
6264 .klen = 16,
6265 .input = "\x49\xa4\xce\x32\xac\x19\x0e\x3f",
6266 .ilen = 8,
6267 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
6268 .rlen = 8,
6269 }, {
6270 .key = "\x38\x38\x38\x38\x38\x38\x38\x38"
6271 "\x38\x38\x38\x38\x38\x38\x38\x38",
6272 .klen = 16,
6273 .input = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9",
6274 .ilen = 8,
6275 .result = "\x38\x38\x38\x38\x38\x38\x38\x38",
6276 .rlen = 8,
6277 }, {
6278 .key = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2"
6279 "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6280 .klen = 16,
6281 .input = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c",
6282 .ilen = 8,
6283 .result = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6284 .rlen = 8,
6285 }, {
6286 .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6287 "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6288 .klen = 16,
6289 .input = "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6290 .ilen = 8,
6291 .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6292 .rlen = 8,
6293 }, {
6294 .key = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6295 "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6296 .klen = 16,
6297 .input = "\x04\x74\xf5\x70\x50\x16\xd3\xb8"
6298 "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6299 .ilen = 16,
6300 .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6301 "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6302 .rlen = 16,
6303 },
6304};
6305
6306/*
6307 * Anubis test vectors.
6308 */
6309
6310#define ANUBIS_ENC_TEST_VECTORS 5
6311#define ANUBIS_DEC_TEST_VECTORS 5
6312#define ANUBIS_CBC_ENC_TEST_VECTORS 2
6313#define ANUBIS_CBC_DEC_TEST_VECTORS 2
6314
6315static struct cipher_testvec anubis_enc_tv_template[] = {
6316 {
6317 .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6318 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6319 .klen = 16,
6320 .input = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6321 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6322 .ilen = 16,
6323 .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6324 "\x08\xb7\x52\x8e\x6e\x6e\x86\x90",
6325 .rlen = 16,
6326 }, {
6327
6328 .key = "\x03\x03\x03\x03\x03\x03\x03\x03"
6329 "\x03\x03\x03\x03\x03\x03\x03\x03"
6330 "\x03\x03\x03\x03",
6331 .klen = 20,
6332 .input = "\x03\x03\x03\x03\x03\x03\x03\x03"
6333 "\x03\x03\x03\x03\x03\x03\x03\x03",
6334 .ilen = 16,
6335 .result = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49"
6336 "\x87\x41\x6f\x82\x0a\x98\x64\xae",
6337 .rlen = 16,
6338 }, {
6339 .key = "\x24\x24\x24\x24\x24\x24\x24\x24"
6340 "\x24\x24\x24\x24\x24\x24\x24\x24"
6341 "\x24\x24\x24\x24\x24\x24\x24\x24"
6342 "\x24\x24\x24\x24",
6343 .klen = 28,
6344 .input = "\x24\x24\x24\x24\x24\x24\x24\x24"
6345 "\x24\x24\x24\x24\x24\x24\x24\x24",
6346 .ilen = 16,
6347 .result = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d"
6348 "\x06\xd3\x61\x27\xfd\x13\x9e\xde",
6349 .rlen = 16,
6350 }, {
6351 .key = "\x25\x25\x25\x25\x25\x25\x25\x25"
6352 "\x25\x25\x25\x25\x25\x25\x25\x25"
6353 "\x25\x25\x25\x25\x25\x25\x25\x25"
6354 "\x25\x25\x25\x25\x25\x25\x25\x25",
6355 .klen = 32,
6356 .input = "\x25\x25\x25\x25\x25\x25\x25\x25"
6357 "\x25\x25\x25\x25\x25\x25\x25\x25",
6358 .ilen = 16,
6359 .result = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4"
6360 "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe",
6361 .rlen = 16,
6362 }, {
6363 .key = "\x35\x35\x35\x35\x35\x35\x35\x35"
6364 "\x35\x35\x35\x35\x35\x35\x35\x35"
6365 "\x35\x35\x35\x35\x35\x35\x35\x35"
6366 "\x35\x35\x35\x35\x35\x35\x35\x35"
6367 "\x35\x35\x35\x35\x35\x35\x35\x35",
6368 .klen = 40,
6369 .input = "\x35\x35\x35\x35\x35\x35\x35\x35"
6370 "\x35\x35\x35\x35\x35\x35\x35\x35",
6371 .ilen = 16,
6372 .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6373 "\x9e\xc6\x84\x0f\x17\x21\x07\xee",
6374 .rlen = 16,
6375 },
6376};
6377
6378static struct cipher_testvec anubis_dec_tv_template[] = {
6379 {
6380 .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6381 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6382 .klen = 16,
6383 .input = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6384 "\x08\xb7\x52\x8e\x6e\x6e\x86\x90",
6385 .ilen = 16,
6386 .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6387 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6388 .rlen = 16,
6389 }, {
6390
6391 .key = "\x03\x03\x03\x03\x03\x03\x03\x03"
6392 "\x03\x03\x03\x03\x03\x03\x03\x03"
6393 "\x03\x03\x03\x03",
6394 .klen = 20,
6395 .input = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49"
6396 "\x87\x41\x6f\x82\x0a\x98\x64\xae",
6397 .ilen = 16,
6398 .result = "\x03\x03\x03\x03\x03\x03\x03\x03"
6399 "\x03\x03\x03\x03\x03\x03\x03\x03",
6400 .rlen = 16,
6401 }, {
6402 .key = "\x24\x24\x24\x24\x24\x24\x24\x24"
6403 "\x24\x24\x24\x24\x24\x24\x24\x24"
6404 "\x24\x24\x24\x24\x24\x24\x24\x24"
6405 "\x24\x24\x24\x24",
6406 .klen = 28,
6407 .input = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d"
6408 "\x06\xd3\x61\x27\xfd\x13\x9e\xde",
6409 .ilen = 16,
6410 .result = "\x24\x24\x24\x24\x24\x24\x24\x24"
6411 "\x24\x24\x24\x24\x24\x24\x24\x24",
6412 .rlen = 16,
6413 }, {
6414 .key = "\x25\x25\x25\x25\x25\x25\x25\x25"
6415 "\x25\x25\x25\x25\x25\x25\x25\x25"
6416 "\x25\x25\x25\x25\x25\x25\x25\x25"
6417 "\x25\x25\x25\x25\x25\x25\x25\x25",
6418 .klen = 32,
6419 .input = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4"
6420 "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe",
6421 .ilen = 16,
6422 .result = "\x25\x25\x25\x25\x25\x25\x25\x25"
6423 "\x25\x25\x25\x25\x25\x25\x25\x25",
6424 .rlen = 16,
6425 }, {
6426 .key = "\x35\x35\x35\x35\x35\x35\x35\x35"
6427 "\x35\x35\x35\x35\x35\x35\x35\x35"
6428 "\x35\x35\x35\x35\x35\x35\x35\x35"
6429 "\x35\x35\x35\x35\x35\x35\x35\x35"
6430 "\x35\x35\x35\x35\x35\x35\x35\x35",
6431 .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6432 "\x9e\xc6\x84\x0f\x17\x21\x07\xee",
6433 .klen = 40,
6434 .ilen = 16,
6435 .result = "\x35\x35\x35\x35\x35\x35\x35\x35"
6436 "\x35\x35\x35\x35\x35\x35\x35\x35",
6437 .rlen = 16,
6438 },
6439};
6440
6441static struct cipher_testvec anubis_cbc_enc_tv_template[] = {
6442 {
6443 .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6444 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6445 .klen = 16,
6446 .input = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6447 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6448 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6449 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6450 .ilen = 32,
6451 .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6452 "\x08\xb7\x52\x8e\x6e\x6e\x86\x90"
6453 "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66"
6454 "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe",
6455 .rlen = 32,
6456 }, {
6457 .key = "\x35\x35\x35\x35\x35\x35\x35\x35"
6458 "\x35\x35\x35\x35\x35\x35\x35\x35"
6459 "\x35\x35\x35\x35\x35\x35\x35\x35"
6460 "\x35\x35\x35\x35\x35\x35\x35\x35"
6461 "\x35\x35\x35\x35\x35\x35\x35\x35",
6462 .klen = 40,
6463 .input = "\x35\x35\x35\x35\x35\x35\x35\x35"
6464 "\x35\x35\x35\x35\x35\x35\x35\x35"
6465 "\x35\x35\x35\x35\x35\x35\x35\x35"
6466 "\x35\x35\x35\x35\x35\x35\x35\x35",
6467 .ilen = 32,
6468 .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6469 "\x9e\xc6\x84\x0f\x17\x21\x07\xee"
6470 "\xa2\xbc\x06\x98\xc6\x4b\xda\x75"
6471 "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7",
6472 .rlen = 32,
6473 },
6474};
6475
6476static struct cipher_testvec anubis_cbc_dec_tv_template[] = {
6477 {
6478 .key = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6479 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6480 .klen = 16,
6481 .input = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6482 "\x08\xb7\x52\x8e\x6e\x6e\x86\x90"
6483 "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66"
6484 "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe",
6485 .ilen = 32,
6486 .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6487 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6488 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6489 "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6490 .rlen = 32,
6491 }, {
6492 .key = "\x35\x35\x35\x35\x35\x35\x35\x35"
6493 "\x35\x35\x35\x35\x35\x35\x35\x35"
6494 "\x35\x35\x35\x35\x35\x35\x35\x35"
6495 "\x35\x35\x35\x35\x35\x35\x35\x35"
6496 "\x35\x35\x35\x35\x35\x35\x35\x35",
6497 .klen = 40,
6498 .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6499 "\x9e\xc6\x84\x0f\x17\x21\x07\xee"
6500 "\xa2\xbc\x06\x98\xc6\x4b\xda\x75"
6501 "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7",
6502 .ilen = 32,
6503 .result = "\x35\x35\x35\x35\x35\x35\x35\x35"
6504 "\x35\x35\x35\x35\x35\x35\x35\x35"
6505 "\x35\x35\x35\x35\x35\x35\x35\x35"
6506 "\x35\x35\x35\x35\x35\x35\x35\x35",
6507 .rlen = 32,
6508 },
6509};
6510
6511/*
6512 * XETA test vectors
6513 */
6514#define XETA_ENC_TEST_VECTORS 4
6515#define XETA_DEC_TEST_VECTORS 4
6516
6517static struct cipher_testvec xeta_enc_tv_template[] = {
6518 {
6519 .key = zeroed_string,
6520 .klen = 16,
6521 .input = zeroed_string,
6522 .ilen = 8,
6523 .result = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45",
6524 .rlen = 8,
6525 }, {
6526 .key = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6527 "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6528 .klen = 16,
6529 .input = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6530 .ilen = 8,
6531 .result = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3",
6532 .rlen = 8,
6533 }, {
6534 .key = "\x09\x65\x43\x11\x66\x44\x39\x25"
6535 "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6536 .klen = 16,
6537 .input = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6538 "\x65\x73\x74\x5f\x76\x65\x63\x74",
6539 .ilen = 16,
6540 .result = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea"
6541 "\x61\x35\xaa\xed\xb5\xcb\x71\x2c",
6542 .rlen = 16,
6543 }, {
6544 .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6545 "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6546 .klen = 16,
6547 .input = "\x54\x65\x61\x20\x69\x73\x20\x67"
6548 "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6549 "\x79\x6f\x75\x21\x21\x21\x20\x72"
6550 "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6551 .ilen = 32,
6552 .result = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1"
6553 "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4"
6554 "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f"
6555 "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5",
6556 .rlen = 32,
6557 }
6558};
6559
6560static struct cipher_testvec xeta_dec_tv_template[] = {
6561 {
6562 .key = zeroed_string,
6563 .klen = 16,
6564 .input = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45",
6565 .ilen = 8,
6566 .result = zeroed_string,
6567 .rlen = 8,
6568 }, {
6569 .key = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6570 "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6571 .klen = 16,
6572 .input = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3",
6573 .ilen = 8,
6574 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6575 .rlen = 8,
6576 }, {
6577 .key = "\x09\x65\x43\x11\x66\x44\x39\x25"
6578 "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6579 .klen = 16,
6580 .input = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea"
6581 "\x61\x35\xaa\xed\xb5\xcb\x71\x2c",
6582 .ilen = 16,
6583 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6584 "\x65\x73\x74\x5f\x76\x65\x63\x74",
6585 .rlen = 16,
6586 }, {
6587 .key = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6588 "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6589 .klen = 16,
6590 .input = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1"
6591 "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4"
6592 "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f"
6593 "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5",
6594 .ilen = 32,
6595 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
6596 "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6597 "\x79\x6f\x75\x21\x21\x21\x20\x72"
6598 "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6599 .rlen = 32,
6600 }
6601};
6602
6603/*
6604 * FCrypt test vectors
6605 */
6606#define FCRYPT_ENC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_enc_tv_template)
6607#define FCRYPT_DEC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_dec_tv_template)
6608
6609static struct cipher_testvec fcrypt_pcbc_enc_tv_template[] = {
6610 { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */
6611 .key = "\x00\x00\x00\x00\x00\x00\x00\x00",
6612 .klen = 8,
6613 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
6614 .input = "\x00\x00\x00\x00\x00\x00\x00\x00",
6615 .ilen = 8,
6616 .result = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41",
6617 .rlen = 8,
6618 }, {
6619 .key = "\x11\x44\x77\xAA\xDD\x00\x33\x66",
6620 .klen = 8,
6621 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
6622 .input = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0",
6623 .ilen = 8,
6624 .result = "\xD8\xED\x78\x74\x77\xEC\x06\x80",
6625 .rlen = 8,
6626 }, { /* From Arla */
6627 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
6628 .klen = 8,
6629 .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6630 .input = "The quick brown fox jumps over the lazy dogs.\0\0",
6631 .ilen = 48,
6632 .result = "\x00\xf0\x0e\x11\x75\xe6\x23\x82"
6633 "\xee\xac\x98\x62\x44\x51\xe4\x84"
6634 "\xc3\x59\xd8\xaa\x64\x60\xae\xf7"
6635 "\xd2\xd9\x13\x79\x72\xa3\x45\x03"
6636 "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1"
6637 "\xf8\x91\x3c\xac\x44\x22\x92\xef",
6638 .rlen = 48,
6639 }, {
6640 .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6641 .klen = 8,
6642 .iv = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
6643 .input = "The quick brown fox jumps over the lazy dogs.\0\0",
6644 .ilen = 48,
6645 .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
6646 "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
6647 "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
6648 "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
6649 "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
6650 "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
6651 .rlen = 48,
6652 }, { /* split-page version */
6653 .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6654 .klen = 8,
6655 .iv = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
6656 .input = "The quick brown fox jumps over the lazy dogs.\0\0",
6657 .ilen = 48,
6658 .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
6659 "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
6660 "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
6661 "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
6662 "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
6663 "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
6664 .rlen = 48,
6665 .np = 2,
6666 .tap = { 20, 28 },
6667 }
6668};
6669
6670static struct cipher_testvec fcrypt_pcbc_dec_tv_template[] = {
6671 { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */
6672 .key = "\x00\x00\x00\x00\x00\x00\x00\x00",
6673 .klen = 8,
6674 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
6675 .input = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41",
6676 .ilen = 8,
6677 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
6678 .rlen = 8,
6679 }, {
6680 .key = "\x11\x44\x77\xAA\xDD\x00\x33\x66",
6681 .klen = 8,
6682 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
6683 .input = "\xD8\xED\x78\x74\x77\xEC\x06\x80",
6684 .ilen = 8,
6685 .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0",
6686 .rlen = 8,
6687 }, { /* From Arla */
6688 .key = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
6689 .klen = 8,
6690 .iv = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6691 .input = "\x00\xf0\x0e\x11\x75\xe6\x23\x82"
6692 "\xee\xac\x98\x62\x44\x51\xe4\x84"
6693 "\xc3\x59\xd8\xaa\x64\x60\xae\xf7"
6694 "\xd2\xd9\x13\x79\x72\xa3\x45\x03"
6695 "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1"
6696 "\xf8\x91\x3c\xac\x44\x22\x92\xef",
6697 .ilen = 48,
6698 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
6699 .rlen = 48,
6700 }, {
6701 .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6702 .klen = 8,
6703 .iv = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
6704 .input = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
6705 "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
6706 "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
6707 "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
6708 "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
6709 "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
6710 .ilen = 48,
6711 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
6712 .rlen = 48,
6713 }, { /* split-page version */
6714 .key = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6715 .klen = 8,
6716 .iv = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
6717 .input = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
6718 "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
6719 "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
6720 "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
6721 "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
6722 "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
6723 .ilen = 48,
6724 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
6725 .rlen = 48,
6726 .np = 2,
6727 .tap = { 20, 28 },
6728 }
6729};
6730
6731/*
6732 * CAMELLIA test vectors.
6733 */
6734#define CAMELLIA_ENC_TEST_VECTORS 3
6735#define CAMELLIA_DEC_TEST_VECTORS 3
6736#define CAMELLIA_CBC_ENC_TEST_VECTORS 2
6737#define CAMELLIA_CBC_DEC_TEST_VECTORS 2
6738
6739static struct cipher_testvec camellia_enc_tv_template[] = {
6740 {
6741 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6742 "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6743 .klen = 16,
6744 .input = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6745 "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6746 .ilen = 16,
6747 .result = "\x67\x67\x31\x38\x54\x96\x69\x73"
6748 "\x08\x57\x06\x56\x48\xea\xbe\x43",
6749 .rlen = 16,
6750 }, {
6751 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6752 "\xfe\xdc\xba\x98\x76\x54\x32\x10"
6753 "\x00\x11\x22\x33\x44\x55\x66\x77",
6754 .klen = 24,
6755 .input = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6756 "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6757 .ilen = 16,
6758 .result = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8"
6759 "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9",
6760 .rlen = 16,
6761 }, {
6762 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6763 "\xfe\xdc\xba\x98\x76\x54\x32\x10"
6764 "\x00\x11\x22\x33\x44\x55\x66\x77"
6765 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
6766 .klen = 32,
6767 .input = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6768 "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6769 .ilen = 16,
6770 .result = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c"
6771 "\x20\xef\x7c\x91\x9e\x3a\x75\x09",
6772 .rlen = 16,
6773 },
6774};
6775
6776static struct cipher_testvec camellia_dec_tv_template[] = {
6777 {
6778 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6779 "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6780 .klen = 16,
6781 .input = "\x67\x67\x31\x38\x54\x96\x69\x73"
6782 "\x08\x57\x06\x56\x48\xea\xbe\x43",
6783 .ilen = 16,
6784 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6785 "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6786 .rlen = 16,
6787 }, {
6788 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6789 "\xfe\xdc\xba\x98\x76\x54\x32\x10"
6790 "\x00\x11\x22\x33\x44\x55\x66\x77",
6791 .klen = 24,
6792 .input = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8"
6793 "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9",
6794 .ilen = 16,
6795 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6796 "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6797 .rlen = 16,
6798 }, {
6799 .key = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6800 "\xfe\xdc\xba\x98\x76\x54\x32\x10"
6801 "\x00\x11\x22\x33\x44\x55\x66\x77"
6802 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
6803 .klen = 32,
6804 .input = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c"
6805 "\x20\xef\x7c\x91\x9e\x3a\x75\x09",
6806 .ilen = 16,
6807 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6808 "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6809 .rlen = 16,
6810 },
6811};
6812
6813static struct cipher_testvec camellia_cbc_enc_tv_template[] = {
6814 {
6815 .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
6816 "\x51\x2e\x03\xd5\x34\x12\x00\x06",
6817 .klen = 16,
6818 .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
6819 "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
6820 .input = "Single block msg",
6821 .ilen = 16,
6822 .result = "\xea\x32\x12\x76\x3b\x50\x10\xe7"
6823 "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51",
6824 .rlen = 16,
6825 }, {
6826 .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
6827 "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
6828 .klen = 16,
6829 .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
6830 "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
6831 .input = "\x00\x01\x02\x03\x04\x05\x06\x07"
6832 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
6833 "\x10\x11\x12\x13\x14\x15\x16\x17"
6834 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
6835 .ilen = 32,
6836 .result = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01"
6837 "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd"
6838 "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0"
6839 "\x15\x78\xe0\x5e\xf2\xcb\x87\x16",
6840 .rlen = 32,
6841 },
6842};
6843
6844static struct cipher_testvec camellia_cbc_dec_tv_template[] = {
6845 {
6846 .key = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
6847 "\x51\x2e\x03\xd5\x34\x12\x00\x06",
6848 .klen = 16,
6849 .iv = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
6850 "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
6851 .input = "\xea\x32\x12\x76\x3b\x50\x10\xe7"
6852 "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51",
6853 .ilen = 16,
6854 .result = "Single block msg",
6855 .rlen = 16,
6856 }, {
6857 .key = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
6858 "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
6859 .klen = 16,
6860 .iv = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
6861 "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
6862 .input = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01"
6863 "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd"
6864 "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0"
6865 "\x15\x78\xe0\x5e\xf2\xcb\x87\x16",
6866 .ilen = 32,
6867 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
6868 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
6869 "\x10\x11\x12\x13\x14\x15\x16\x17"
6870 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
6871 .rlen = 32,
6872 },
6873};
6874
6875/*
6876 * SEED test vectors
6877 */
6878#define SEED_ENC_TEST_VECTORS 4
6879#define SEED_DEC_TEST_VECTORS 4
6880
6881static struct cipher_testvec seed_enc_tv_template[] = {
6882 {
6883 .key = zeroed_string,
6884 .klen = 16,
6885 .input = "\x00\x01\x02\x03\x04\x05\x06\x07"
6886 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
6887 .ilen = 16,
6888 .result = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68"
6889 "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb",
6890 .rlen = 16,
6891 }, {
6892 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
6893 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
6894 .klen = 16,
6895 .input = zeroed_string,
6896 .ilen = 16,
6897 .result = "\xc1\x1f\x22\xf2\x01\x40\x50\x50"
6898 "\x84\x48\x35\x97\xe4\x37\x0f\x43",
6899 .rlen = 16,
6900 }, {
6901 .key = "\x47\x06\x48\x08\x51\xe6\x1b\xe8"
6902 "\x5d\x74\xbf\xb3\xfd\x95\x61\x85",
6903 .klen = 16,
6904 .input = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9"
6905 "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d",
6906 .ilen = 16,
6907 .result = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d"
6908 "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a",
6909 .rlen = 16,
6910 }, {
6911 .key = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d"
6912 "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7",
6913 .klen = 16,
6914 .input = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14"
6915 "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7",
6916 .ilen = 16,
6917 .result = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9"
6918 "\x5d\x0b\x36\x18\xf4\x0f\x51\x22",
6919 .rlen = 16,
6920 }
6921};
6922
6923static struct cipher_testvec seed_dec_tv_template[] = {
6924 {
6925 .key = zeroed_string,
6926 .klen = 16,
6927 .input = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68"
6928 "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb",
6929 .ilen = 16,
6930 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
6931 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
6932 .rlen = 16,
6933 }, {
6934 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
6935 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
6936 .klen = 16,
6937 .input = "\xc1\x1f\x22\xf2\x01\x40\x50\x50"
6938 "\x84\x48\x35\x97\xe4\x37\x0f\x43",
6939 .ilen = 16,
6940 .result = zeroed_string,
6941 .rlen = 16,
6942 }, {
6943 .key = "\x47\x06\x48\x08\x51\xe6\x1b\xe8"
6944 "\x5d\x74\xbf\xb3\xfd\x95\x61\x85",
6945 .klen = 16,
6946 .input = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d"
6947 "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a",
6948 .ilen = 16,
6949 .result = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9"
6950 "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d",
6951 .rlen = 16,
6952 }, {
6953 .key = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d"
6954 "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7",
6955 .klen = 16,
6956 .input = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9"
6957 "\x5d\x0b\x36\x18\xf4\x0f\x51\x22",
6958 .ilen = 16,
6959 .result = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14"
6960 "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7",
6961 .rlen = 16,
6962 }
6963};
6964
6965#define SALSA20_STREAM_ENC_TEST_VECTORS 5
6966static struct cipher_testvec salsa20_stream_enc_tv_template[] = {
6967 /*
6968 * Testvectors from verified.test-vectors submitted to ECRYPT.
6969 * They are truncated to size 39, 64, 111, 129 to test a variety
6970 * of input length.
6971 */
6972 { /* Set 3, vector 0 */
6973 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
6974 "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F",
6975 .klen = 16,
6976 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
6977 .input = "\x00\x00\x00\x00\x00\x00\x00\x00"
6978 "\x00\x00\x00\x00\x00\x00\x00\x00"
6979 "\x00\x00\x00\x00\x00\x00\x00\x00"
6980 "\x00\x00\x00\x00\x00\x00\x00\x00"
6981 "\x00\x00\x00\x00\x00\x00\x00",
6982 .ilen = 39,
6983 .result = "\x2D\xD5\xC3\xF7\xBA\x2B\x20\xF7"
6984 "\x68\x02\x41\x0C\x68\x86\x88\x89"
6985 "\x5A\xD8\xC1\xBD\x4E\xA6\xC9\xB1"
6986 "\x40\xFB\x9B\x90\xE2\x10\x49\xBF"
6987 "\x58\x3F\x52\x79\x70\xEB\xC1",
6988 .rlen = 39,
6989 }, { /* Set 5, vector 0 */
6990 .key = "\x00\x00\x00\x00\x00\x00\x00\x00"
6991 "\x00\x00\x00\x00\x00\x00\x00\x00",
6992 .klen = 16,
6993 .iv = "\x80\x00\x00\x00\x00\x00\x00\x00",
6994 .input = "\x00\x00\x00\x00\x00\x00\x00\x00"
6995 "\x00\x00\x00\x00\x00\x00\x00\x00"
6996 "\x00\x00\x00\x00\x00\x00\x00\x00"
6997 "\x00\x00\x00\x00\x00\x00\x00\x00"
6998 "\x00\x00\x00\x00\x00\x00\x00\x00"
6999 "\x00\x00\x00\x00\x00\x00\x00\x00"
7000 "\x00\x00\x00\x00\x00\x00\x00\x00"
7001 "\x00\x00\x00\x00\x00\x00\x00\x00",
7002 .ilen = 64,
7003 .result = "\xB6\x6C\x1E\x44\x46\xDD\x95\x57"
7004 "\xE5\x78\xE2\x23\xB0\xB7\x68\x01"
7005 "\x7B\x23\xB2\x67\xBB\x02\x34\xAE"
7006 "\x46\x26\xBF\x44\x3F\x21\x97\x76"
7007 "\x43\x6F\xB1\x9F\xD0\xE8\x86\x6F"
7008 "\xCD\x0D\xE9\xA9\x53\x8F\x4A\x09"
7009 "\xCA\x9A\xC0\x73\x2E\x30\xBC\xF9"
7010 "\x8E\x4F\x13\xE4\xB9\xE2\x01\xD9",
7011 .rlen = 64,
7012 }, { /* Set 3, vector 27 */
7013 .key = "\x1B\x1C\x1D\x1E\x1F\x20\x21\x22"
7014 "\x23\x24\x25\x26\x27\x28\x29\x2A"
7015 "\x2B\x2C\x2D\x2E\x2F\x30\x31\x32"
7016 "\x33\x34\x35\x36\x37\x38\x39\x3A",
7017 .klen = 32,
7018 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
7019 .input = "\x00\x00\x00\x00\x00\x00\x00\x00"
7020 "\x00\x00\x00\x00\x00\x00\x00\x00"
7021 "\x00\x00\x00\x00\x00\x00\x00\x00"
7022 "\x00\x00\x00\x00\x00\x00\x00\x00"
7023 "\x00\x00\x00\x00\x00\x00\x00\x00"
7024 "\x00\x00\x00\x00\x00\x00\x00\x00"
7025 "\x00\x00\x00\x00\x00\x00\x00\x00"
7026 "\x00\x00\x00\x00\x00\x00\x00\x00"
7027 "\x00\x00\x00\x00\x00\x00\x00\x00"
7028 "\x00\x00\x00\x00\x00\x00\x00\x00"
7029 "\x00\x00\x00\x00\x00\x00\x00\x00"
7030 "\x00\x00\x00\x00\x00\x00\x00\x00"
7031 "\x00\x00\x00\x00\x00\x00\x00\x00"
7032 "\x00\x00\x00\x00\x00\x00\x00",
7033 .ilen = 111,
7034 .result = "\xAE\x39\x50\x8E\xAC\x9A\xEC\xE7"
7035 "\xBF\x97\xBB\x20\xB9\xDE\xE4\x1F"
7036 "\x87\xD9\x47\xF8\x28\x91\x35\x98"
7037 "\xDB\x72\xCC\x23\x29\x48\x56\x5E"
7038 "\x83\x7E\x0B\xF3\x7D\x5D\x38\x7B"
7039 "\x2D\x71\x02\xB4\x3B\xB5\xD8\x23"
7040 "\xB0\x4A\xDF\x3C\xEC\xB6\xD9\x3B"
7041 "\x9B\xA7\x52\xBE\xC5\xD4\x50\x59"
7042 "\x15\x14\xB4\x0E\x40\xE6\x53\xD1"
7043 "\x83\x9C\x5B\xA0\x92\x29\x6B\x5E"
7044 "\x96\x5B\x1E\x2F\xD3\xAC\xC1\x92"
7045 "\xB1\x41\x3F\x19\x2F\xC4\x3B\xC6"
7046 "\x95\x46\x45\x54\xE9\x75\x03\x08"
7047 "\x44\xAF\xE5\x8A\x81\x12\x09",
7048 .rlen = 111,
7049 }, { /* Set 5, vector 27 */
7050 .key = "\x00\x00\x00\x00\x00\x00\x00\x00"
7051 "\x00\x00\x00\x00\x00\x00\x00\x00"
7052 "\x00\x00\x00\x00\x00\x00\x00\x00"
7053 "\x00\x00\x00\x00\x00\x00\x00\x00",
7054 .klen = 32,
7055 .iv = "\x00\x00\x00\x10\x00\x00\x00\x00",
7056 .input = "\x00\x00\x00\x00\x00\x00\x00\x00"
7057 "\x00\x00\x00\x00\x00\x00\x00\x00"
7058 "\x00\x00\x00\x00\x00\x00\x00\x00"
7059 "\x00\x00\x00\x00\x00\x00\x00\x00"
7060 "\x00\x00\x00\x00\x00\x00\x00\x00"
7061 "\x00\x00\x00\x00\x00\x00\x00\x00"
7062 "\x00\x00\x00\x00\x00\x00\x00\x00"
7063 "\x00\x00\x00\x00\x00\x00\x00\x00"
7064 "\x00\x00\x00\x00\x00\x00\x00\x00"
7065 "\x00\x00\x00\x00\x00\x00\x00\x00"
7066 "\x00\x00\x00\x00\x00\x00\x00\x00"
7067 "\x00\x00\x00\x00\x00\x00\x00\x00"
7068 "\x00\x00\x00\x00\x00\x00\x00\x00"
7069 "\x00\x00\x00\x00\x00\x00\x00\x00"
7070 "\x00\x00\x00\x00\x00\x00\x00\x00"
7071 "\x00\x00\x00\x00\x00\x00\x00\x00"
7072 "\x00",
7073 .ilen = 129,
7074 .result = "\xD2\xDB\x1A\x5C\xF1\xC1\xAC\xDB"
7075 "\xE8\x1A\x7A\x43\x40\xEF\x53\x43"
7076 "\x5E\x7F\x4B\x1A\x50\x52\x3F\x8D"
7077 "\x28\x3D\xCF\x85\x1D\x69\x6E\x60"
7078 "\xF2\xDE\x74\x56\x18\x1B\x84\x10"
7079 "\xD4\x62\xBA\x60\x50\xF0\x61\xF2"
7080 "\x1C\x78\x7F\xC1\x24\x34\xAF\x58"
7081 "\xBF\x2C\x59\xCA\x90\x77\xF3\xB0"
7082 "\x5B\x4A\xDF\x89\xCE\x2C\x2F\xFC"
7083 "\x67\xF0\xE3\x45\xE8\xB3\xB3\x75"
7084 "\xA0\x95\x71\xA1\x29\x39\x94\xCA"
7085 "\x45\x2F\xBD\xCB\x10\xB6\xBE\x9F"
7086 "\x8E\xF9\xB2\x01\x0A\x5A\x0A\xB7"
7087 "\x6B\x9D\x70\x8E\x4B\xD6\x2F\xCD"
7088 "\x2E\x40\x48\x75\xE9\xE2\x21\x45"
7089 "\x0B\xC9\xB6\xB5\x66\xBC\x9A\x59"
7090 "\x5A",
7091 .rlen = 129,
7092 }, { /* large test vector generated using Crypto++ */
7093 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
7094 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7095 "\x10\x11\x12\x13\x14\x15\x16\x17"
7096 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
7097 .klen = 32,
7098 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00"
7099 "\x00\x00\x00\x00\x00\x00\x00\x00",
7100 .input =
7101 "\x00\x01\x02\x03\x04\x05\x06\x07"
7102 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7103 "\x10\x11\x12\x13\x14\x15\x16\x17"
7104 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
7105 "\x20\x21\x22\x23\x24\x25\x26\x27"
7106 "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
7107 "\x30\x31\x32\x33\x34\x35\x36\x37"
7108 "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
7109 "\x40\x41\x42\x43\x44\x45\x46\x47"
7110 "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
7111 "\x50\x51\x52\x53\x54\x55\x56\x57"
7112 "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
7113 "\x60\x61\x62\x63\x64\x65\x66\x67"
7114 "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
7115 "\x70\x71\x72\x73\x74\x75\x76\x77"
7116 "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
7117 "\x80\x81\x82\x83\x84\x85\x86\x87"
7118 "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
7119 "\x90\x91\x92\x93\x94\x95\x96\x97"
7120 "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
7121 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
7122 "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
7123 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
7124 "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
7125 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
7126 "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
7127 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
7128 "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
7129 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
7130 "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
7131 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
7132 "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
7133 "\x00\x03\x06\x09\x0c\x0f\x12\x15"
7134 "\x18\x1b\x1e\x21\x24\x27\x2a\x2d"
7135 "\x30\x33\x36\x39\x3c\x3f\x42\x45"
7136 "\x48\x4b\x4e\x51\x54\x57\x5a\x5d"
7137 "\x60\x63\x66\x69\x6c\x6f\x72\x75"
7138 "\x78\x7b\x7e\x81\x84\x87\x8a\x8d"
7139 "\x90\x93\x96\x99\x9c\x9f\xa2\xa5"
7140 "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd"
7141 "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5"
7142 "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed"
7143 "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05"
7144 "\x08\x0b\x0e\x11\x14\x17\x1a\x1d"
7145 "\x20\x23\x26\x29\x2c\x2f\x32\x35"
7146 "\x38\x3b\x3e\x41\x44\x47\x4a\x4d"
7147 "\x50\x53\x56\x59\x5c\x5f\x62\x65"
7148 "\x68\x6b\x6e\x71\x74\x77\x7a\x7d"
7149 "\x80\x83\x86\x89\x8c\x8f\x92\x95"
7150 "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad"
7151 "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5"
7152 "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd"
7153 "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5"
7154 "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d"
7155 "\x10\x13\x16\x19\x1c\x1f\x22\x25"
7156 "\x28\x2b\x2e\x31\x34\x37\x3a\x3d"
7157 "\x40\x43\x46\x49\x4c\x4f\x52\x55"
7158 "\x58\x5b\x5e\x61\x64\x67\x6a\x6d"
7159 "\x70\x73\x76\x79\x7c\x7f\x82\x85"
7160 "\x88\x8b\x8e\x91\x94\x97\x9a\x9d"
7161 "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5"
7162 "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd"
7163 "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5"
7164 "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd"
7165 "\x00\x05\x0a\x0f\x14\x19\x1e\x23"
7166 "\x28\x2d\x32\x37\x3c\x41\x46\x4b"
7167 "\x50\x55\x5a\x5f\x64\x69\x6e\x73"
7168 "\x78\x7d\x82\x87\x8c\x91\x96\x9b"
7169 "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3"
7170 "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb"
7171 "\xf0\xf5\xfa\xff\x04\x09\x0e\x13"
7172 "\x18\x1d\x22\x27\x2c\x31\x36\x3b"
7173 "\x40\x45\x4a\x4f\x54\x59\x5e\x63"
7174 "\x68\x6d\x72\x77\x7c\x81\x86\x8b"
7175 "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3"
7176 "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb"
7177 "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03"
7178 "\x08\x0d\x12\x17\x1c\x21\x26\x2b"
7179 "\x30\x35\x3a\x3f\x44\x49\x4e\x53"
7180 "\x58\x5d\x62\x67\x6c\x71\x76\x7b"
7181 "\x80\x85\x8a\x8f\x94\x99\x9e\xa3"
7182 "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb"
7183 "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3"
7184 "\xf8\xfd\x02\x07\x0c\x11\x16\x1b"
7185 "\x20\x25\x2a\x2f\x34\x39\x3e\x43"
7186 "\x48\x4d\x52\x57\x5c\x61\x66\x6b"
7187 "\x70\x75\x7a\x7f\x84\x89\x8e\x93"
7188 "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb"
7189 "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3"
7190 "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b"
7191 "\x10\x15\x1a\x1f\x24\x29\x2e\x33"
7192 "\x38\x3d\x42\x47\x4c\x51\x56\x5b"
7193 "\x60\x65\x6a\x6f\x74\x79\x7e\x83"
7194 "\x88\x8d\x92\x97\x9c\xa1\xa6\xab"
7195 "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3"
7196 "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb"
7197 "\x00\x07\x0e\x15\x1c\x23\x2a\x31"
7198 "\x38\x3f\x46\x4d\x54\x5b\x62\x69"
7199 "\x70\x77\x7e\x85\x8c\x93\x9a\xa1"
7200 "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9"
7201 "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11"
7202 "\x18\x1f\x26\x2d\x34\x3b\x42\x49"
7203 "\x50\x57\x5e\x65\x6c\x73\x7a\x81"
7204 "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9"
7205 "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1"
7206 "\xf8\xff\x06\x0d\x14\x1b\x22\x29"
7207 "\x30\x37\x3e\x45\x4c\x53\x5a\x61"
7208 "\x68\x6f\x76\x7d\x84\x8b\x92\x99"
7209 "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1"
7210 "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09"
7211 "\x10\x17\x1e\x25\x2c\x33\x3a\x41"
7212 "\x48\x4f\x56\x5d\x64\x6b\x72\x79"
7213 "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1"
7214 "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9"
7215 "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21"
7216 "\x28\x2f\x36\x3d\x44\x4b\x52\x59"
7217 "\x60\x67\x6e\x75\x7c\x83\x8a\x91"
7218 "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9"
7219 "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01"
7220 "\x08\x0f\x16\x1d\x24\x2b\x32\x39"
7221 "\x40\x47\x4e\x55\x5c\x63\x6a\x71"
7222 "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9"
7223 "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1"
7224 "\xe8\xef\xf6\xfd\x04\x0b\x12\x19"
7225 "\x20\x27\x2e\x35\x3c\x43\x4a\x51"
7226 "\x58\x5f\x66\x6d\x74\x7b\x82\x89"
7227 "\x90\x97\x9e\xa5\xac\xb3\xba\xc1"
7228 "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9"
7229 "\x00\x09\x12\x1b\x24\x2d\x36\x3f"
7230 "\x48\x51\x5a\x63\x6c\x75\x7e\x87"
7231 "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf"
7232 "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17"
7233 "\x20\x29\x32\x3b\x44\x4d\x56\x5f"
7234 "\x68\x71\x7a\x83\x8c\x95\x9e\xa7"
7235 "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef"
7236 "\xf8\x01\x0a\x13\x1c\x25\x2e\x37"
7237 "\x40\x49\x52\x5b\x64\x6d\x76\x7f"
7238 "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7"
7239 "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f"
7240 "\x18\x21\x2a\x33\x3c\x45\x4e\x57"
7241 "\x60\x69\x72\x7b\x84\x8d\x96\x9f"
7242 "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7"
7243 "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f"
7244 "\x38\x41\x4a\x53\x5c\x65\x6e\x77"
7245 "\x80\x89\x92\x9b\xa4\xad\xb6\xbf"
7246 "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07"
7247 "\x10\x19\x22\x2b\x34\x3d\x46\x4f"
7248 "\x58\x61\x6a\x73\x7c\x85\x8e\x97"
7249 "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf"
7250 "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27"
7251 "\x30\x39\x42\x4b\x54\x5d\x66\x6f"
7252 "\x78\x81\x8a\x93\x9c\xa5\xae\xb7"
7253 "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff"
7254 "\x08\x11\x1a\x23\x2c\x35\x3e\x47"
7255 "\x50\x59\x62\x6b\x74\x7d\x86\x8f"
7256 "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7"
7257 "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f"
7258 "\x28\x31\x3a\x43\x4c\x55\x5e\x67"
7259 "\x70\x79\x82\x8b\x94\x9d\xa6\xaf"
7260 "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7"
7261 "\x00\x0b\x16\x21\x2c\x37\x42\x4d"
7262 "\x58\x63\x6e\x79\x84\x8f\x9a\xa5"
7263 "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd"
7264 "\x08\x13\x1e\x29\x34\x3f\x4a\x55"
7265 "\x60\x6b\x76\x81\x8c\x97\xa2\xad"
7266 "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05"
7267 "\x10\x1b\x26\x31\x3c\x47\x52\x5d"
7268 "\x68\x73\x7e\x89\x94\x9f\xaa\xb5"
7269 "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d"
7270 "\x18\x23\x2e\x39\x44\x4f\x5a\x65"
7271 "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd"
7272 "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15"
7273 "\x20\x2b\x36\x41\x4c\x57\x62\x6d"
7274 "\x78\x83\x8e\x99\xa4\xaf\xba\xc5"
7275 "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d"
7276 "\x28\x33\x3e\x49\x54\x5f\x6a\x75"
7277 "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd"
7278 "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25"
7279 "\x30\x3b\x46\x51\x5c\x67\x72\x7d"
7280 "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5"
7281 "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d"
7282 "\x38\x43\x4e\x59\x64\x6f\x7a\x85"
7283 "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd"
7284 "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35"
7285 "\x40\x4b\x56\x61\x6c\x77\x82\x8d"
7286 "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5"
7287 "\xf0\xfb\x06\x11\x1c\x27\x32\x3d"
7288 "\x48\x53\x5e\x69\x74\x7f\x8a\x95"
7289 "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed"
7290 "\xf8\x03\x0e\x19\x24\x2f\x3a\x45"
7291 "\x50\x5b\x66\x71\x7c\x87\x92\x9d"
7292 "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5"
7293 "\x00\x0d\x1a\x27\x34\x41\x4e\x5b"
7294 "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3"
7295 "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b"
7296 "\x38\x45\x52\x5f\x6c\x79\x86\x93"
7297 "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb"
7298 "\x08\x15\x22\x2f\x3c\x49\x56\x63"
7299 "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb"
7300 "\xd8\xe5\xf2\xff\x0c\x19\x26\x33"
7301 "\x40\x4d\x5a\x67\x74\x81\x8e\x9b"
7302 "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03"
7303 "\x10\x1d\x2a\x37\x44\x51\x5e\x6b"
7304 "\x78\x85\x92\x9f\xac\xb9\xc6\xd3"
7305 "\xe0\xed\xfa\x07\x14\x21\x2e\x3b"
7306 "\x48\x55\x62\x6f\x7c\x89\x96\xa3"
7307 "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b"
7308 "\x18\x25\x32\x3f\x4c\x59\x66\x73"
7309 "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb"
7310 "\xe8\xf5\x02\x0f\x1c\x29\x36\x43"
7311 "\x50\x5d\x6a\x77\x84\x91\x9e\xab"
7312 "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13"
7313 "\x20\x2d\x3a\x47\x54\x61\x6e\x7b"
7314 "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3"
7315 "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b"
7316 "\x58\x65\x72\x7f\x8c\x99\xa6\xb3"
7317 "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b"
7318 "\x28\x35\x42\x4f\x5c\x69\x76\x83"
7319 "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb"
7320 "\xf8\x05\x12\x1f\x2c\x39\x46\x53"
7321 "\x60\x6d\x7a\x87\x94\xa1\xae\xbb"
7322 "\xc8\xd5\xe2\xef\xfc\x09\x16\x23"
7323 "\x30\x3d\x4a\x57\x64\x71\x7e\x8b"
7324 "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3"
7325 "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69"
7326 "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1"
7327 "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59"
7328 "\x68\x77\x86\x95\xa4\xb3\xc2\xd1"
7329 "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49"
7330 "\x58\x67\x76\x85\x94\xa3\xb2\xc1"
7331 "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39"
7332 "\x48\x57\x66\x75\x84\x93\xa2\xb1"
7333 "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29"
7334 "\x38\x47\x56\x65\x74\x83\x92\xa1"
7335 "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19"
7336 "\x28\x37\x46\x55\x64\x73\x82\x91"
7337 "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09"
7338 "\x18\x27\x36\x45\x54\x63\x72\x81"
7339 "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9"
7340 "\x08\x17\x26\x35\x44\x53\x62\x71"
7341 "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9"
7342 "\xf8\x07\x16\x25\x34\x43\x52\x61"
7343 "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9"
7344 "\xe8\xf7\x06\x15\x24\x33\x42\x51"
7345 "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9"
7346 "\xd8\xe7\xf6\x05\x14\x23\x32\x41"
7347 "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9"
7348 "\xc8\xd7\xe6\xf5\x04\x13\x22\x31"
7349 "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9"
7350 "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21"
7351 "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99"
7352 "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11"
7353 "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89"
7354 "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01"
7355 "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79"
7356 "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1"
7357 "\x00\x11\x22\x33\x44\x55\x66\x77"
7358 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff"
7359 "\x10\x21\x32\x43\x54\x65\x76\x87"
7360 "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f"
7361 "\x20\x31\x42\x53\x64\x75\x86\x97"
7362 "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f"
7363 "\x30\x41\x52\x63\x74\x85\x96\xa7"
7364 "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f"
7365 "\x40\x51\x62\x73\x84\x95\xa6\xb7"
7366 "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f"
7367 "\x50\x61\x72\x83\x94\xa5\xb6\xc7"
7368 "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f"
7369 "\x60\x71\x82\x93\xa4\xb5\xc6\xd7"
7370 "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f"
7371 "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7"
7372 "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f"
7373 "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7"
7374 "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f"
7375 "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07"
7376 "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f"
7377 "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17"
7378 "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f"
7379 "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27"
7380 "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf"
7381 "\xc0\xd1\xe2\xf3\x04\x15\x26\x37"
7382 "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf"
7383 "\xd0\xe1\xf2\x03\x14\x25\x36\x47"
7384 "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf"
7385 "\xe0\xf1\x02\x13\x24\x35\x46\x57"
7386 "\x68\x79\x8a\x9b\xac\xbd\xce\xdf"
7387 "\xf0\x01\x12\x23\x34\x45\x56\x67"
7388 "\x78\x89\x9a\xab\xbc\xcd\xde\xef"
7389 "\x00\x13\x26\x39\x4c\x5f\x72\x85"
7390 "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d"
7391 "\x30\x43\x56\x69\x7c\x8f\xa2\xb5"
7392 "\xc8\xdb\xee\x01\x14\x27\x3a\x4d"
7393 "\x60\x73\x86\x99\xac\xbf\xd2\xe5"
7394 "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d"
7395 "\x90\xa3\xb6\xc9\xdc\xef\x02\x15"
7396 "\x28\x3b\x4e\x61\x74\x87\x9a\xad"
7397 "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45"
7398 "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd"
7399 "\xf0\x03\x16\x29\x3c\x4f\x62\x75"
7400 "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d"
7401 "\x20\x33\x46\x59\x6c\x7f\x92\xa5"
7402 "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d"
7403 "\x50\x63\x76\x89\x9c\xaf\xc2\xd5"
7404 "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d"
7405 "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05"
7406 "\x18\x2b\x3e\x51\x64\x77\x8a\x9d"
7407 "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35"
7408 "\x48\x5b\x6e\x81\x94\xa7\xba\xcd"
7409 "\xe0\xf3\x06\x19\x2c\x3f\x52\x65"
7410 "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd"
7411 "\x10\x23\x36\x49\x5c\x6f\x82\x95"
7412 "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d"
7413 "\x40\x53\x66\x79\x8c\x9f\xb2\xc5"
7414 "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d"
7415 "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5"
7416 "\x08\x1b\x2e\x41\x54\x67\x7a\x8d"
7417 "\xa0\xb3\xc6\xd9\xec\xff\x12\x25"
7418 "\x38\x4b\x5e\x71\x84\x97\xaa\xbd"
7419 "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55"
7420 "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed"
7421 "\x00\x15\x2a\x3f\x54\x69\x7e\x93"
7422 "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b"
7423 "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3"
7424 "\xf8\x0d\x22\x37\x4c\x61\x76\x8b"
7425 "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33"
7426 "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb"
7427 "\xf0\x05\x1a\x2f\x44\x59\x6e\x83"
7428 "\x98\xad\xc2\xd7\xec\x01\x16\x2b"
7429 "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3"
7430 "\xe8\xfd\x12\x27\x3c\x51\x66\x7b"
7431 "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23"
7432 "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb"
7433 "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73"
7434 "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b"
7435 "\x30\x45\x5a\x6f\x84\x99\xae\xc3"
7436 "\xd8\xed\x02\x17\x2c\x41\x56\x6b"
7437 "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13"
7438 "\x28\x3d\x52\x67\x7c\x91\xa6\xbb"
7439 "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63"
7440 "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b"
7441 "\x20\x35\x4a\x5f\x74\x89\x9e\xb3"
7442 "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b"
7443 "\x70\x85\x9a\xaf\xc4\xd9\xee\x03"
7444 "\x18\x2d\x42\x57\x6c\x81\x96\xab"
7445 "\xc0\xd5\xea\xff\x14\x29\x3e\x53"
7446 "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb"
7447 "\x10\x25\x3a\x4f\x64\x79\x8e\xa3"
7448 "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b"
7449 "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3"
7450 "\x08\x1d\x32\x47\x5c\x71\x86\x9b"
7451 "\xb0\xc5\xda\xef\x04\x19\x2e\x43"
7452 "\x58\x6d\x82\x97\xac\xc1\xd6\xeb"
7453 "\x00\x17\x2e\x45\x5c\x73\x8a\xa1"
7454 "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59"
7455 "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11"
7456 "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9"
7457 "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81"
7458 "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39"
7459 "\x50\x67\x7e\x95\xac\xc3\xda\xf1"
7460 "\x08\x1f\x36\x4d\x64\x7b\x92\xa9"
7461 "\xc0\xd7\xee\x05\x1c\x33\x4a\x61"
7462 "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19"
7463 "\x30\x47\x5e\x75\x8c\xa3\xba\xd1"
7464 "\xe8\xff\x16\x2d\x44\x5b\x72\x89"
7465 "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41"
7466 "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9"
7467 "\x10\x27\x3e\x55\x6c\x83\x9a\xb1"
7468 "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69"
7469 "\x80\x97\xae\xc5\xdc\xf3\x0a\x21"
7470 "\x38\x4f\x66\x7d\x94\xab\xc2\xd9"
7471 "\xf0\x07\x1e\x35\x4c\x63\x7a\x91"
7472 "\xa8\xbf\xd6\xed\x04\x1b\x32\x49"
7473 "\x60\x77\x8e\xa5\xbc\xd3\xea\x01"
7474 "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9"
7475 "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71"
7476 "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29"
7477 "\x40\x57\x6e\x85\x9c\xb3\xca\xe1"
7478 "\xf8\x0f\x26\x3d\x54\x6b\x82\x99"
7479 "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51"
7480 "\x68\x7f\x96\xad\xc4\xdb\xf2\x09"
7481 "\x20\x37\x4e\x65\x7c\x93\xaa\xc1"
7482 "\xd8\xef\x06\x1d\x34\x4b\x62\x79"
7483 "\x90\xa7\xbe\xd5\xec\x03\x1a\x31"
7484 "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9"
7485 "\x00\x19\x32\x4b\x64\x7d\x96\xaf"
7486 "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77"
7487 "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f"
7488 "\x58\x71\x8a\xa3\xbc\xd5\xee\x07"
7489 "\x20\x39\x52\x6b\x84\x9d\xb6\xcf"
7490 "\xe8\x01\x1a\x33\x4c\x65\x7e\x97"
7491 "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f"
7492 "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27"
7493 "\x40\x59\x72\x8b\xa4\xbd\xd6\xef"
7494 "\x08\x21\x3a\x53\x6c\x85\x9e\xb7"
7495 "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f"
7496 "\x98\xb1\xca\xe3\xfc\x15\x2e\x47"
7497 "\x60\x79\x92\xab\xc4\xdd\xf6\x0f"
7498 "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7"
7499 "\xf0\x09\x22\x3b\x54\x6d\x86\x9f"
7500 "\xb8\xd1\xea\x03\x1c\x35\x4e\x67"
7501 "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f"
7502 "\x48\x61\x7a\x93\xac\xc5\xde\xf7"
7503 "\x10\x29\x42\x5b\x74\x8d\xa6\xbf"
7504 "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87"
7505 "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f"
7506 "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17"
7507 "\x30\x49\x62\x7b\x94\xad\xc6\xdf"
7508 "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7"
7509 "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f"
7510 "\x88\xa1\xba\xd3\xec\x05\x1e\x37"
7511 "\x50\x69\x82\x9b\xb4\xcd\xe6\xff"
7512 "\x18\x31\x4a\x63\x7c\x95\xae\xc7"
7513 "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f"
7514 "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57"
7515 "\x70\x89\xa2\xbb\xd4\xed\x06\x1f"
7516 "\x38\x51\x6a\x83\x9c\xb5\xce\xe7"
7517 "\x00\x1b\x36\x51\x6c\x87\xa2\xbd"
7518 "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95"
7519 "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d"
7520 "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45"
7521 "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d"
7522 "\x38\x53\x6e\x89\xa4\xbf\xda\xf5"
7523 "\x10\x2b\x46\x61\x7c\x97\xb2\xcd"
7524 "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5"
7525 "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d"
7526 "\x98\xb3\xce\xe9\x04\x1f\x3a\x55"
7527 "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d"
7528 "\x48\x63\x7e\x99\xb4\xcf\xea\x05"
7529 "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd"
7530 "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5"
7531 "\xd0\xeb\x06\x21\x3c\x57\x72\x8d"
7532 "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65"
7533 "\x80\x9b\xb6\xd1\xec\x07\x22\x3d"
7534 "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15"
7535 "\x30\x4b\x66\x81\x9c\xb7\xd2\xed"
7536 "\x08\x23\x3e\x59\x74\x8f\xaa\xc5"
7537 "\xe0\xfb\x16\x31\x4c\x67\x82\x9d"
7538 "\xb8\xd3\xee\x09\x24\x3f\x5a\x75"
7539 "\x90\xab\xc6\xe1\xfc\x17\x32\x4d"
7540 "\x68\x83\x9e\xb9\xd4\xef\x0a\x25"
7541 "\x40\x5b\x76\x91\xac\xc7\xe2\xfd"
7542 "\x18\x33\x4e\x69\x84\x9f\xba\xd5"
7543 "\xf0\x0b\x26\x41\x5c\x77\x92\xad"
7544 "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85"
7545 "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d"
7546 "\x78\x93\xae\xc9\xe4\xff\x1a\x35"
7547 "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d"
7548 "\x28\x43\x5e\x79\x94\xaf\xca\xe5"
7549 "\x00\x1d\x3a\x57\x74\x91\xae\xcb"
7550 "\xe8\x05\x22\x3f\x5c\x79\x96\xb3"
7551 "\xd0\xed\x0a\x27\x44\x61\x7e\x9b"
7552 "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83"
7553 "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b"
7554 "\x88\xa5\xc2\xdf\xfc\x19\x36\x53"
7555 "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b"
7556 "\x58\x75\x92\xaf\xcc\xe9\x06\x23"
7557 "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b"
7558 "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3"
7559 "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb"
7560 "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3"
7561 "\xe0\xfd\x1a\x37\x54\x71\x8e\xab"
7562 "\xc8\xe5\x02\x1f\x3c\x59\x76\x93"
7563 "\xb0\xcd\xea\x07\x24\x41\x5e\x7b"
7564 "\x98\xb5\xd2\xef\x0c\x29\x46\x63"
7565 "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b"
7566 "\x68\x85\xa2\xbf\xdc\xf9\x16\x33"
7567 "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b"
7568 "\x38\x55\x72\x8f\xac\xc9\xe6\x03"
7569 "\x20\x3d\x5a\x77\x94\xb1\xce\xeb"
7570 "\x08\x25\x42\x5f\x7c\x99\xb6\xd3"
7571 "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb"
7572 "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3"
7573 "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b"
7574 "\xa8\xc5\xe2\xff\x1c\x39\x56\x73"
7575 "\x90\xad\xca\xe7\x04\x21\x3e\x5b"
7576 "\x78\x95\xb2\xcf\xec\x09\x26\x43"
7577 "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b"
7578 "\x48\x65\x82\x9f\xbc\xd9\xf6\x13"
7579 "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb"
7580 "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3"
7581 "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9"
7582 "\xf8\x17\x36\x55\x74\x93\xb2\xd1"
7583 "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9"
7584 "\xe8\x07\x26\x45\x64\x83\xa2\xc1"
7585 "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9"
7586 "\xd8\xf7\x16\x35\x54\x73\x92\xb1"
7587 "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9"
7588 "\xc8\xe7\x06\x25\x44\x63\x82\xa1"
7589 "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99"
7590 "\xb8\xd7\xf6\x15\x34\x53\x72\x91"
7591 "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89"
7592 "\xa8\xc7\xe6\x05\x24\x43\x62\x81"
7593 "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79"
7594 "\x98\xb7\xd6\xf5\x14\x33\x52\x71"
7595 "\x90\xaf\xce\xed\x0c\x2b\x4a\x69"
7596 "\x88\xa7\xc6\xe5\x04\x23\x42\x61"
7597 "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59"
7598 "\x78\x97\xb6\xd5\xf4\x13\x32\x51"
7599 "\x70\x8f\xae\xcd\xec\x0b\x2a\x49"
7600 "\x68\x87\xa6\xc5\xe4\x03\x22\x41"
7601 "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39"
7602 "\x58\x77\x96\xb5\xd4\xf3\x12\x31"
7603 "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29"
7604 "\x48\x67\x86\xa5\xc4\xe3\x02\x21"
7605 "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19"
7606 "\x38\x57\x76\x95\xb4\xd3\xf2\x11"
7607 "\x30\x4f\x6e\x8d\xac\xcb\xea\x09"
7608 "\x28\x47\x66\x85\xa4\xc3\xe2\x01"
7609 "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9"
7610 "\x18\x37\x56\x75\x94\xb3\xd2\xf1"
7611 "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9"
7612 "\x08\x27\x46\x65\x84\xa3\xc2\xe1"
7613 "\x00\x21\x42\x63",
7614 .ilen = 4100,
7615 .result =
7616 "\xb5\x81\xf5\x64\x18\x73\xe3\xf0"
7617 "\x4c\x13\xf2\x77\x18\x60\x65\x5e"
7618 "\x29\x01\xce\x98\x55\x53\xf9\x0c"
7619 "\x2a\x08\xd5\x09\xb3\x57\x55\x56"
7620 "\xc5\xe9\x56\x90\xcb\x6a\xa3\xc0"
7621 "\xff\xc4\x79\xb4\xd2\x97\x5d\xc4"
7622 "\x43\xd1\xfe\x94\x7b\x88\x06\x5a"
7623 "\xb2\x9e\x2c\xfc\x44\x03\xb7\x90"
7624 "\xa0\xc1\xba\x6a\x33\xb8\xc7\xb2"
7625 "\x9d\xe1\x12\x4f\xc0\x64\xd4\x01"
7626 "\xfe\x8c\x7a\x66\xf7\xe6\x5a\x91"
7627 "\xbb\xde\x56\x86\xab\x65\x21\x30"
7628 "\x00\x84\x65\x24\xa5\x7d\x85\xb4"
7629 "\xe3\x17\xed\x3a\xb7\x6f\xb4\x0b"
7630 "\x0b\xaf\x15\xae\x5a\x8f\xf2\x0c"
7631 "\x2f\x27\xf4\x09\xd8\xd2\x96\xb7"
7632 "\x71\xf2\xc5\x99\x4d\x7e\x7f\x75"
7633 "\x77\x89\x30\x8b\x59\xdb\xa2\xb2"
7634 "\xa0\xf3\x19\x39\x2b\xc5\x7e\x3f"
7635 "\x4f\xd9\xd3\x56\x28\x97\x44\xdc"
7636 "\xc0\x8b\x77\x24\xd9\x52\xe7\xc5"
7637 "\xaf\xf6\x7d\x59\xb2\x44\x05\x1d"
7638 "\xb1\xb0\x11\xa5\x0f\xec\x33\xe1"
7639 "\x6d\x1b\x4e\x1f\xff\x57\x91\xb4"
7640 "\x5b\x9a\x96\xc5\x53\xbc\xae\x20"
7641 "\x3c\xbb\x14\xe2\xe8\x22\x33\xc1"
7642 "\x5e\x76\x9e\x46\x99\xf6\x2a\x15"
7643 "\xc6\x97\x02\xa0\x66\x43\xd1\xa6"
7644 "\x31\xa6\x9f\xfb\xf4\xd3\x69\xe5"
7645 "\xcd\x76\x95\xb8\x7a\x82\x7f\x21"
7646 "\x45\xff\x3f\xce\x55\xf6\x95\x10"
7647 "\x08\x77\x10\x43\xc6\xf3\x09\xe5"
7648 "\x68\xe7\x3c\xad\x00\x52\x45\x0d"
7649 "\xfe\x2d\xc6\xc2\x94\x8c\x12\x1d"
7650 "\xe6\x25\xae\x98\x12\x8e\x19\x9c"
7651 "\x81\x68\xb1\x11\xf6\x69\xda\xe3"
7652 "\x62\x08\x18\x7a\x25\x49\x28\xac"
7653 "\xba\x71\x12\x0b\xe4\xa2\xe5\xc7"
7654 "\x5d\x8e\xec\x49\x40\x21\xbf\x5a"
7655 "\x98\xf3\x02\x68\x55\x03\x7f\x8a"
7656 "\xe5\x94\x0c\x32\x5c\x07\x82\x63"
7657 "\xaf\x6f\x91\x40\x84\x8e\x52\x25"
7658 "\xd0\xb0\x29\x53\x05\xe2\x50\x7a"
7659 "\x34\xeb\xc9\x46\x20\xa8\x3d\xde"
7660 "\x7f\x16\x5f\x36\xc5\x2e\xdc\xd1"
7661 "\x15\x47\xc7\x50\x40\x6d\x91\xc5"
7662 "\xe7\x93\x95\x1a\xd3\x57\xbc\x52"
7663 "\x33\xee\x14\x19\x22\x52\x89\xa7"
7664 "\x4a\x25\x56\x77\x4b\xca\xcf\x0a"
7665 "\xe1\xf5\x35\x85\x30\x7e\x59\x4a"
7666 "\xbd\x14\x5b\xdf\xe3\x46\xcb\xac"
7667 "\x1f\x6c\x96\x0e\xf4\x81\xd1\x99"
7668 "\xca\x88\x63\x3d\x02\x58\x6b\xa9"
7669 "\xe5\x9f\xb3\x00\xb2\x54\xc6\x74"
7670 "\x1c\xbf\x46\xab\x97\xcc\xf8\x54"
7671 "\x04\x07\x08\x52\xe6\xc0\xda\x93"
7672 "\x74\x7d\x93\x99\x5d\x78\x68\xa6"
7673 "\x2e\x6b\xd3\x6a\x69\xcc\x12\x6b"
7674 "\xd4\xc7\xa5\xc6\xe7\xf6\x03\x04"
7675 "\x5d\xcd\x61\x5e\x17\x40\xdc\xd1"
7676 "\x5c\xf5\x08\xdf\x5c\x90\x85\xa4"
7677 "\xaf\xf6\x78\xbb\x0d\xf1\xf4\xa4"
7678 "\x54\x26\x72\x9e\x61\xfa\x86\xcf"
7679 "\xe8\x9e\xa1\xe0\xc7\x48\x23\xae"
7680 "\x5a\x90\xae\x75\x0a\x74\x18\x89"
7681 "\x05\xb1\x92\xb2\x7f\xd0\x1b\xa6"
7682 "\x62\x07\x25\x01\xc7\xc2\x4f\xf9"
7683 "\xe8\xfe\x63\x95\x80\x07\xb4\x26"
7684 "\xcc\xd1\x26\xb6\xc4\x3f\x9e\xcb"
7685 "\x8e\x3b\x2e\x44\x16\xd3\x10\x9a"
7686 "\x95\x08\xeb\xc8\xcb\xeb\xbf\x6f"
7687 "\x0b\xcd\x1f\xc8\xca\x86\xaa\xec"
7688 "\x33\xe6\x69\xf4\x45\x25\x86\x3a"
7689 "\x22\x94\x4f\x00\x23\x6a\x44\xc2"
7690 "\x49\x97\x33\xab\x36\x14\x0a\x70"
7691 "\x24\xc3\xbe\x04\x3b\x79\xa0\xf9"
7692 "\xb8\xe7\x76\x29\x22\x83\xd7\xf2"
7693 "\x94\xf4\x41\x49\xba\x5f\x7b\x07"
7694 "\xb5\xfb\xdb\x03\x1a\x9f\xb6\x4c"
7695 "\xc2\x2e\x37\x40\x49\xc3\x38\x16"
7696 "\xe2\x4f\x77\x82\xb0\x68\x4c\x71"
7697 "\x1d\x57\x61\x9c\xd9\x4e\x54\x99"
7698 "\x47\x13\x28\x73\x3c\xbb\x00\x90"
7699 "\xf3\x4d\xc9\x0e\xfd\xe7\xb1\x71"
7700 "\xd3\x15\x79\xbf\xcc\x26\x2f\xbd"
7701 "\xad\x6c\x50\x69\x6c\x3e\x6d\x80"
7702 "\x9a\xea\x78\xaf\x19\xb2\x0d\x4d"
7703 "\xad\x04\x07\xae\x22\x90\x4a\x93"
7704 "\x32\x0e\x36\x9b\x1b\x46\xba\x3b"
7705 "\xb4\xac\xc6\xd1\xa2\x31\x53\x3b"
7706 "\x2a\x3d\x45\xfe\x03\x61\x10\x85"
7707 "\x17\x69\xa6\x78\xcc\x6c\x87\x49"
7708 "\x53\xf9\x80\x10\xde\x80\xa2\x41"
7709 "\x6a\xc3\x32\x02\xad\x6d\x3c\x56"
7710 "\x00\x71\x51\x06\xa7\xbd\xfb\xef"
7711 "\x3c\xb5\x9f\xfc\x48\x7d\x53\x7c"
7712 "\x66\xb0\x49\x23\xc4\x47\x10\x0e"
7713 "\xe5\x6c\x74\x13\xe6\xc5\x3f\xaa"
7714 "\xde\xff\x07\x44\xdd\x56\x1b\xad"
7715 "\x09\x77\xfb\x5b\x12\xb8\x0d\x38"
7716 "\x17\x37\x35\x7b\x9b\xbc\xfe\xd4"
7717 "\x7e\x8b\xda\x7e\x5b\x04\xa7\x22"
7718 "\xa7\x31\xa1\x20\x86\xc7\x1b\x99"
7719 "\xdb\xd1\x89\xf4\x94\xa3\x53\x69"
7720 "\x8d\xe7\xe8\x74\x11\x8d\x74\xd6"
7721 "\x07\x37\x91\x9f\xfd\x67\x50\x3a"
7722 "\xc9\xe1\xf4\x36\xd5\xa0\x47\xd1"
7723 "\xf9\xe5\x39\xa3\x31\xac\x07\x36"
7724 "\x23\xf8\x66\x18\x14\x28\x34\x0f"
7725 "\xb8\xd0\xe7\x29\xb3\x04\x4b\x55"
7726 "\x01\x41\xb2\x75\x8d\xcb\x96\x85"
7727 "\x3a\xfb\xab\x2b\x9e\xfa\x58\x20"
7728 "\x44\x1f\xc0\x14\x22\x75\x61\xe8"
7729 "\xaa\x19\xcf\xf1\x82\x56\xf4\xd7"
7730 "\x78\x7b\x3d\x5f\xb3\x9e\x0b\x8a"
7731 "\x57\x50\xdb\x17\x41\x65\x4d\xa3"
7732 "\x02\xc9\x9c\x9c\x53\xfb\x39\x39"
7733 "\x9b\x1d\x72\x24\xda\xb7\x39\xbe"
7734 "\x13\x3b\xfa\x29\xda\x9e\x54\x64"
7735 "\x6e\xba\xd8\xa1\xcb\xb3\x36\xfa"
7736 "\xcb\x47\x85\xe9\x61\x38\xbc\xbe"
7737 "\xc5\x00\x38\x2a\x54\xf7\xc4\xb9"
7738 "\xb3\xd3\x7b\xa0\xa0\xf8\x72\x7f"
7739 "\x8c\x8e\x82\x0e\xc6\x1c\x75\x9d"
7740 "\xca\x8e\x61\x87\xde\xad\x80\xd2"
7741 "\xf5\xf9\x80\xef\x15\x75\xaf\xf5"
7742 "\x80\xfb\xff\x6d\x1e\x25\xb7\x40"
7743 "\x61\x6a\x39\x5a\x6a\xb5\x31\xab"
7744 "\x97\x8a\x19\x89\x44\x40\xc0\xa6"
7745 "\xb4\x4e\x30\x32\x7b\x13\xe7\x67"
7746 "\xa9\x8b\x57\x04\xc2\x01\xa6\xf4"
7747 "\x28\x99\xad\x2c\x76\xa3\x78\xc2"
7748 "\x4a\xe6\xca\x5c\x50\x6a\xc1\xb0"
7749 "\x62\x4b\x10\x8e\x7c\x17\x43\xb3"
7750 "\x17\x66\x1c\x3e\x8d\x69\xf0\x5a"
7751 "\x71\xf5\x97\xdc\xd1\x45\xdd\x28"
7752 "\xf3\x5d\xdf\x53\x7b\x11\xe5\xbc"
7753 "\x4c\xdb\x1b\x51\x6b\xe9\xfb\x3d"
7754 "\xc1\xc3\x2c\xb9\x71\xf5\xb6\xb2"
7755 "\x13\x36\x79\x80\x53\xe8\xd3\xa6"
7756 "\x0a\xaf\xfd\x56\x97\xf7\x40\x8e"
7757 "\x45\xce\xf8\xb0\x9e\x5c\x33\x82"
7758 "\xb0\x44\x56\xfc\x05\x09\xe9\x2a"
7759 "\xac\x26\x80\x14\x1d\xc8\x3a\x35"
7760 "\x4c\x82\x97\xfd\x76\xb7\xa9\x0a"
7761 "\x35\x58\x79\x8e\x0f\x66\xea\xaf"
7762 "\x51\x6c\x09\xa9\x6e\x9b\xcb\x9a"
7763 "\x31\x47\xa0\x2f\x7c\x71\xb4\x4a"
7764 "\x11\xaa\x8c\x66\xc5\x64\xe6\x3a"
7765 "\x54\xda\x24\x6a\xc4\x41\x65\x46"
7766 "\x82\xa0\x0a\x0f\x5f\xfb\x25\xd0"
7767 "\x2c\x91\xa7\xee\xc4\x81\x07\x86"
7768 "\x75\x5e\x33\x69\x97\xe4\x2c\xa8"
7769 "\x9d\x9f\x0b\x6a\xbe\xad\x98\xda"
7770 "\x6d\x94\x41\xda\x2c\x1e\x89\xc4"
7771 "\xc2\xaf\x1e\x00\x05\x0b\x83\x60"
7772 "\xbd\x43\xea\x15\x23\x7f\xb9\xac"
7773 "\xee\x4f\x2c\xaf\x2a\xf3\xdf\xd0"
7774 "\xf3\x19\x31\xbb\x4a\x74\x84\x17"
7775 "\x52\x32\x2c\x7d\x61\xe4\xcb\xeb"
7776 "\x80\x38\x15\x52\xcb\x6f\xea\xe5"
7777 "\x73\x9c\xd9\x24\x69\xc6\x95\x32"
7778 "\x21\xc8\x11\xe4\xdc\x36\xd7\x93"
7779 "\x38\x66\xfb\xb2\x7f\x3a\xb9\xaf"
7780 "\x31\xdd\x93\x75\x78\x8a\x2c\x94"
7781 "\x87\x1a\x58\xec\x9e\x7d\x4d\xba"
7782 "\xe1\xe5\x4d\xfc\xbc\xa4\x2a\x14"
7783 "\xef\xcc\xa7\xec\xab\x43\x09\x18"
7784 "\xd3\xab\x68\xd1\x07\x99\x44\x47"
7785 "\xd6\x83\x85\x3b\x30\xea\xa9\x6b"
7786 "\x63\xea\xc4\x07\xfb\x43\x2f\xa4"
7787 "\xaa\xb0\xab\x03\x89\xce\x3f\x8c"
7788 "\x02\x7c\x86\x54\xbc\x88\xaf\x75"
7789 "\xd2\xdc\x63\x17\xd3\x26\xf6\x96"
7790 "\xa9\x3c\xf1\x61\x8c\x11\x18\xcc"
7791 "\xd6\xea\x5b\xe2\xcd\xf0\xf1\xb2"
7792 "\xe5\x35\x90\x1f\x85\x4c\x76\x5b"
7793 "\x66\xce\x44\xa4\x32\x9f\xe6\x7b"
7794 "\x71\x6e\x9f\x58\x15\x67\x72\x87"
7795 "\x64\x8e\x3a\x44\x45\xd4\x76\xfa"
7796 "\xc2\xf6\xef\x85\x05\x18\x7a\x9b"
7797 "\xba\x41\x54\xac\xf0\xfc\x59\x12"
7798 "\x3f\xdf\xa0\xe5\x8a\x65\xfd\x3a"
7799 "\x62\x8d\x83\x2c\x03\xbe\x05\x76"
7800 "\x2e\x53\x49\x97\x94\x33\xae\x40"
7801 "\x81\x15\xdb\x6e\xad\xaa\xf5\x4b"
7802 "\xe3\x98\x70\xdf\xe0\x7c\xcd\xdb"
7803 "\x02\xd4\x7d\x2f\xc1\xe6\xb4\xf3"
7804 "\xd7\x0d\x7a\xd9\x23\x9e\x87\x2d"
7805 "\xce\x87\xad\xcc\x72\x05\x00\x29"
7806 "\xdc\x73\x7f\x64\xc1\x15\x0e\xc2"
7807 "\xdf\xa7\x5f\xeb\x41\xa1\xcd\xef"
7808 "\x5c\x50\x79\x2a\x56\x56\x71\x8c"
7809 "\xac\xc0\x79\x50\x69\xca\x59\x32"
7810 "\x65\xf2\x54\xe4\x52\x38\x76\xd1"
7811 "\x5e\xde\x26\x9e\xfb\x75\x2e\x11"
7812 "\xb5\x10\xf4\x17\x73\xf5\x89\xc7"
7813 "\x4f\x43\x5c\x8e\x7c\xb9\x05\x52"
7814 "\x24\x40\x99\xfe\x9b\x85\x0b\x6c"
7815 "\x22\x3e\x8b\xae\x86\xa1\xd2\x79"
7816 "\x05\x68\x6b\xab\xe3\x41\x49\xed"
7817 "\x15\xa1\x8d\x40\x2d\x61\xdf\x1a"
7818 "\x59\xc9\x26\x8b\xef\x30\x4c\x88"
7819 "\x4b\x10\xf8\x8d\xa6\x92\x9f\x4b"
7820 "\xf3\xc4\x53\x0b\x89\x5d\x28\x92"
7821 "\xcf\x78\xb2\xc0\x5d\xed\x7e\xfc"
7822 "\xc0\x12\x23\x5f\x5a\x78\x86\x43"
7823 "\x6e\x27\xf7\x5a\xa7\x6a\xed\x19"
7824 "\x04\xf0\xb3\x12\xd1\xbd\x0e\x89"
7825 "\x6e\xbc\x96\xa8\xd8\x49\x39\x9f"
7826 "\x7e\x67\xf0\x2e\x3e\x01\xa9\xba"
7827 "\xec\x8b\x62\x8e\xcb\x4a\x70\x43"
7828 "\xc7\xc2\xc4\xca\x82\x03\x73\xe9"
7829 "\x11\xdf\xcf\x54\xea\xc9\xb0\x95"
7830 "\x51\xc0\x13\x3d\x92\x05\xfa\xf4"
7831 "\xa9\x34\xc8\xce\x6c\x3d\x54\xcc"
7832 "\xc4\xaf\xf1\xdc\x11\x44\x26\xa2"
7833 "\xaf\xf1\x85\x75\x7d\x03\x61\x68"
7834 "\x4e\x78\xc6\x92\x7d\x86\x7d\x77"
7835 "\xdc\x71\x72\xdb\xc6\xae\xa1\xcb"
7836 "\x70\x9a\x0b\x19\xbe\x4a\x6c\x2a"
7837 "\xe2\xba\x6c\x64\x9a\x13\x28\xdf"
7838 "\x85\x75\xe6\x43\xf6\x87\x08\x68"
7839 "\x6e\xba\x6e\x79\x9f\x04\xbc\x23"
7840 "\x50\xf6\x33\x5c\x1f\x24\x25\xbe"
7841 "\x33\x47\x80\x45\x56\xa3\xa7\xd7"
7842 "\x7a\xb1\x34\x0b\x90\x3c\x9c\xad"
7843 "\x44\x5f\x9e\x0e\x9d\xd4\xbd\x93"
7844 "\x5e\xfa\x3c\xe0\xb0\xd9\xed\xf3"
7845 "\xd6\x2e\xff\x24\xd8\x71\x6c\xed"
7846 "\xaf\x55\xeb\x22\xac\x93\x68\x32"
7847 "\x05\x5b\x47\xdd\xc6\x4a\xcb\xc7"
7848 "\x10\xe1\x3c\x92\x1a\xf3\x23\x78"
7849 "\x2b\xa1\xd2\x80\xf4\x12\xb1\x20"
7850 "\x8f\xff\x26\x35\xdd\xfb\xc7\x4e"
7851 "\x78\xf1\x2d\x50\x12\x77\xa8\x60"
7852 "\x7c\x0f\xf5\x16\x2f\x63\x70\x2a"
7853 "\xc0\x96\x80\x4e\x0a\xb4\x93\x35"
7854 "\x5d\x1d\x3f\x56\xf7\x2f\xbb\x90"
7855 "\x11\x16\x8f\xa2\xec\x47\xbe\xac"
7856 "\x56\x01\x26\x56\xb1\x8c\xb2\x10"
7857 "\xf9\x1a\xca\xf5\xd1\xb7\x39\x20"
7858 "\x63\xf1\x69\x20\x4f\x13\x12\x1f"
7859 "\x5b\x65\xfc\x98\xf7\xc4\x7a\xbe"
7860 "\xf7\x26\x4d\x2b\x84\x7b\x42\xad"
7861 "\xd8\x7a\x0a\xb4\xd8\x74\xbf\xc1"
7862 "\xf0\x6e\xb4\x29\xa3\xbb\xca\x46"
7863 "\x67\x70\x6a\x2d\xce\x0e\xa2\x8a"
7864 "\xa9\x87\xbf\x05\xc4\xc1\x04\xa3"
7865 "\xab\xd4\x45\x43\x8c\xb6\x02\xb0"
7866 "\x41\xc8\xfc\x44\x3d\x59\xaa\x2e"
7867 "\x44\x21\x2a\x8d\x88\x9d\x57\xf4"
7868 "\xa0\x02\x77\xb8\xa6\xa0\xe6\x75"
7869 "\x5c\x82\x65\x3e\x03\x5c\x29\x8f"
7870 "\x38\x55\xab\x33\x26\xef\x9f\x43"
7871 "\x52\xfd\x68\xaf\x36\xb4\xbb\x9a"
7872 "\x58\x09\x09\x1b\xc3\x65\x46\x46"
7873 "\x1d\xa7\x94\x18\x23\x50\x2c\xca"
7874 "\x2c\x55\x19\x97\x01\x9d\x93\x3b"
7875 "\x63\x86\xf2\x03\x67\x45\xd2\x72"
7876 "\x28\x52\x6c\xf4\xe3\x1c\xb5\x11"
7877 "\x13\xf1\xeb\x21\xc7\xd9\x56\x82"
7878 "\x2b\x82\x39\xbd\x69\x54\xed\x62"
7879 "\xc3\xe2\xde\x73\xd4\x6a\x12\xae"
7880 "\x13\x21\x7f\x4b\x5b\xfc\xbf\xe8"
7881 "\x2b\xbe\x56\xba\x68\x8b\x9a\xb1"
7882 "\x6e\xfa\xbf\x7e\x5a\x4b\xf1\xac"
7883 "\x98\x65\x85\xd1\x93\x53\xd3\x7b"
7884 "\x09\xdd\x4b\x10\x6d\x84\xb0\x13"
7885 "\x65\xbd\xcf\x52\x09\xc4\x85\xe2"
7886 "\x84\x74\x15\x65\xb7\xf7\x51\xaf"
7887 "\x55\xad\xa4\xd1\x22\x54\x70\x94"
7888 "\xa0\x1c\x90\x41\xfd\x99\xd7\x5a"
7889 "\x31\xef\xaa\x25\xd0\x7f\x4f\xea"
7890 "\x1d\x55\x42\xe5\x49\xb0\xd0\x46"
7891 "\x62\x36\x43\xb2\x82\x15\x75\x50"
7892 "\xa4\x72\xeb\x54\x27\x1f\x8a\xe4"
7893 "\x7d\xe9\x66\xc5\xf1\x53\xa4\xd1"
7894 "\x0c\xeb\xb8\xf8\xbc\xd4\xe2\xe7"
7895 "\xe1\xf8\x4b\xcb\xa9\xa1\xaf\x15"
7896 "\x83\xcb\x72\xd0\x33\x79\x00\x2d"
7897 "\x9f\xd7\xf1\x2e\x1e\x10\xe4\x45"
7898 "\xc0\x75\x3a\x39\xea\x68\xf7\x5d"
7899 "\x1b\x73\x8f\xe9\x8e\x0f\x72\x47"
7900 "\xae\x35\x0a\x31\x7a\x14\x4d\x4a"
7901 "\x6f\x47\xf7\x7e\x91\x6e\x74\x8b"
7902 "\x26\x47\xf9\xc3\xf9\xde\x70\xf5"
7903 "\x61\xab\xa9\x27\x9f\x82\xe4\x9c"
7904 "\x89\x91\x3f\x2e\x6a\xfd\xb5\x49"
7905 "\xe9\xfd\x59\x14\x36\x49\x40\x6d"
7906 "\x32\xd8\x85\x42\xf3\xa5\xdf\x0c"
7907 "\xa8\x27\xd7\x54\xe2\x63\x2f\xf2"
7908 "\x7e\x8b\x8b\xe7\xf1\x9a\x95\x35"
7909 "\x43\xdc\x3a\xe4\xb6\xf4\xd0\xdf"
7910 "\x9c\xcb\x94\xf3\x21\xa0\x77\x50"
7911 "\xe2\xc6\xc4\xc6\x5f\x09\x64\x5b"
7912 "\x92\x90\xd8\xe1\xd1\xed\x4b\x42"
7913 "\xd7\x37\xaf\x65\x3d\x11\x39\xb6"
7914 "\x24\x8a\x60\xae\xd6\x1e\xbf\x0e"
7915 "\x0d\xd7\xdc\x96\x0e\x65\x75\x4e"
7916 "\x29\x06\x9d\xa4\x51\x3a\x10\x63"
7917 "\x8f\x17\x07\xd5\x8e\x3c\xf4\x28"
7918 "\x00\x5a\x5b\x05\x19\xd8\xc0\x6c"
7919 "\xe5\x15\xe4\x9c\x9d\x71\x9d\x5e"
7920 "\x94\x29\x1a\xa7\x80\xfa\x0e\x33"
7921 "\x03\xdd\xb7\x3e\x9a\xa9\x26\x18"
7922 "\x37\xa9\x64\x08\x4d\x94\x5a\x88"
7923 "\xca\x35\xce\x81\x02\xe3\x1f\x1b"
7924 "\x89\x1a\x77\x85\xe3\x41\x6d\x32"
7925 "\x42\x19\x23\x7d\xc8\x73\xee\x25"
7926 "\x85\x0d\xf8\x31\x25\x79\x1b\x6f"
7927 "\x79\x25\xd2\xd8\xd4\x23\xfd\xf7"
7928 "\x82\x36\x6a\x0c\x46\x22\x15\xe9"
7929 "\xff\x72\x41\x91\x91\x7d\x3a\xb7"
7930 "\xdd\x65\x99\x70\xf6\x8d\x84\xf8"
7931 "\x67\x15\x20\x11\xd6\xb2\x55\x7b"
7932 "\xdb\x87\xee\xef\x55\x89\x2a\x59"
7933 "\x2b\x07\x8f\x43\x8a\x59\x3c\x01"
7934 "\x8b\x65\x54\xa1\x66\xd5\x38\xbd"
7935 "\xc6\x30\xa9\xcc\x49\xb6\xa8\x1b"
7936 "\xb8\xc0\x0e\xe3\x45\x28\xe2\xff"
7937 "\x41\x9f\x7e\x7c\xd1\xae\x9e\x25"
7938 "\x3f\x4c\x7c\x7c\xf4\xa8\x26\x4d"
7939 "\x5c\xfd\x4b\x27\x18\xf9\x61\x76"
7940 "\x48\xba\x0c\x6b\xa9\x4d\xfc\xf5"
7941 "\x3b\x35\x7e\x2f\x4a\xa9\xc2\x9a"
7942 "\xae\xab\x86\x09\x89\xc9\xc2\x40"
7943 "\x39\x2c\x81\xb3\xb8\x17\x67\xc2"
7944 "\x0d\x32\x4a\x3a\x67\x81\xd7\x1a"
7945 "\x34\x52\xc5\xdb\x0a\xf5\x63\x39"
7946 "\xea\x1f\xe1\x7c\xa1\x9e\xc1\x35"
7947 "\xe3\xb1\x18\x45\x67\xf9\x22\x38"
7948 "\x95\xd9\x34\x34\x86\xc6\x41\x94"
7949 "\x15\xf9\x5b\x41\xa6\x87\x8b\xf8"
7950 "\xd5\xe1\x1b\xe2\x5b\xf3\x86\x10"
7951 "\xff\xe6\xae\x69\x76\xbc\x0d\xb4"
7952 "\x09\x90\x0c\xa2\x65\x0c\xad\x74"
7953 "\xf5\xd7\xff\xda\xc1\xce\x85\xbe"
7954 "\x00\xa7\xff\x4d\x2f\x65\xd3\x8c"
7955 "\x86\x2d\x05\xe8\xed\x3e\x6b\x8b"
7956 "\x0f\x3d\x83\x8c\xf1\x1d\x5b\x96"
7957 "\x2e\xb1\x9c\xc2\x98\xe1\x70\xb9"
7958 "\xba\x5c\x8a\x43\xd6\x34\xa7\x2d"
7959 "\xc9\x92\xae\xf2\xa5\x7b\x05\x49"
7960 "\xa7\x33\x34\x86\xca\xe4\x96\x23"
7961 "\x76\x5b\xf2\xc6\xf1\x51\x28\x42"
7962 "\x7b\xcc\x76\x8f\xfa\xa2\xad\x31"
7963 "\xd4\xd6\x7a\x6d\x25\x25\x54\xe4"
7964 "\x3f\x50\x59\xe1\x5c\x05\xb7\x27"
7965 "\x48\xbf\x07\xec\x1b\x13\xbe\x2b"
7966 "\xa1\x57\x2b\xd5\xab\xd7\xd0\x4c"
7967 "\x1e\xcb\x71\x9b\xc5\x90\x85\xd3"
7968 "\xde\x59\xec\x71\xeb\x89\xbb\xd0"
7969 "\x09\x50\xe1\x16\x3f\xfd\x1c\x34"
7970 "\xc3\x1c\xa1\x10\x77\x53\x98\xef"
7971 "\xf2\xfd\xa5\x01\x59\xc2\x9b\x26"
7972 "\xc7\x42\xd9\x49\xda\x58\x2b\x6e"
7973 "\x9f\x53\x19\x76\x7e\xd9\xc9\x0e"
7974 "\x68\xc8\x7f\x51\x22\x42\xef\x49"
7975 "\xa4\x55\xb6\x36\xac\x09\xc7\x31"
7976 "\x88\x15\x4b\x2e\x8f\x3a\x08\xf7"
7977 "\xd8\xf7\xa8\xc5\xa9\x33\xa6\x45"
7978 "\xe4\xc4\x94\x76\xf3\x0d\x8f\x7e"
7979 "\xc8\xf6\xbc\x23\x0a\xb6\x4c\xd3"
7980 "\x6a\xcd\x36\xc2\x90\x5c\x5c\x3c"
7981 "\x65\x7b\xc2\xd6\xcc\xe6\x0d\x87"
7982 "\x73\x2e\x71\x79\x16\x06\x63\x28"
7983 "\x09\x15\xd8\x89\x38\x38\x3d\xb5"
7984 "\x42\x1c\x08\x24\xf7\x2a\xd2\x9d"
7985 "\xc8\xca\xef\xf9\x27\xd8\x07\x86"
7986 "\xf7\x43\x0b\x55\x15\x3f\x9f\x83"
7987 "\xef\xdc\x49\x9d\x2a\xc1\x54\x62"
7988 "\xbd\x9b\x66\x55\x9f\xb7\x12\xf3"
7989 "\x1b\x4d\x9d\x2a\x5c\xed\x87\x75"
7990 "\x87\x26\xec\x61\x2c\xb4\x0f\x89"
7991 "\xb0\xfb\x2e\x68\x5d\x15\xc7\x8d"
7992 "\x2e\xc0\xd9\xec\xaf\x4f\xd2\x25"
7993 "\x29\xe8\xd2\x26\x2b\x67\xe9\xfc"
7994 "\x2b\xa8\x67\x96\x12\x1f\x5b\x96"
7995 "\xc6\x14\x53\xaf\x44\xea\xd6\xe2"
7996 "\x94\x98\xe4\x12\x93\x4c\x92\xe0"
7997 "\x18\xa5\x8d\x2d\xe4\x71\x3c\x47"
7998 "\x4c\xf7\xe6\x47\x9e\xc0\x68\xdf"
7999 "\xd4\xf5\x5a\x74\xb1\x2b\x29\x03"
8000 "\x19\x07\xaf\x90\x62\x5c\x68\x98"
8001 "\x48\x16\x11\x02\x9d\xee\xb4\x9b"
8002 "\xe5\x42\x7f\x08\xfd\x16\x32\x0b"
8003 "\xd0\xb3\xfa\x2b\xb7\x99\xf9\x29"
8004 "\xcd\x20\x45\x9f\xb3\x1a\x5d\xa2"
8005 "\xaf\x4d\xe0\xbd\x42\x0d\xbc\x74"
8006 "\x99\x9c\x8e\x53\x1a\xb4\x3e\xbd"
8007 "\xa2\x9a\x2d\xf7\xf8\x39\x0f\x67"
8008 "\x63\xfc\x6b\xc0\xaf\xb3\x4b\x4f"
8009 "\x55\xc4\xcf\xa7\xc8\x04\x11\x3e"
8010 "\x14\x32\xbb\x1b\x38\x77\xd6\x7f"
8011 "\x54\x4c\xdf\x75\xf3\x07\x2d\x33"
8012 "\x9b\xa8\x20\xe1\x7b\x12\xb5\xf3"
8013 "\xef\x2f\xce\x72\xe5\x24\x60\xc1"
8014 "\x30\xe2\xab\xa1\x8e\x11\x09\xa8"
8015 "\x21\x33\x44\xfe\x7f\x35\x32\x93"
8016 "\x39\xa7\xad\x8b\x79\x06\xb2\xcb"
8017 "\x4e\xa9\x5f\xc7\xba\x74\x29\xec"
8018 "\x93\xa0\x4e\x54\x93\xc0\xbc\x55"
8019 "\x64\xf0\x48\xe5\x57\x99\xee\x75"
8020 "\xd6\x79\x0f\x66\xb7\xc6\x57\x76"
8021 "\xf7\xb7\xf3\x9c\xc5\x60\xe8\x7f"
8022 "\x83\x76\xd6\x0e\xaa\xe6\x90\x39"
8023 "\x1d\xa6\x32\x6a\x34\xe3\x55\xf8"
8024 "\x58\xa0\x58\x7d\x33\xe0\x22\x39"
8025 "\x44\x64\x87\x86\x5a\x2f\xa7\x7e"
8026 "\x0f\x38\xea\xb0\x30\xcc\x61\xa5"
8027 "\x6a\x32\xae\x1e\xf7\xe9\xd0\xa9"
8028 "\x0c\x32\x4b\xb5\x49\x28\xab\x85"
8029 "\x2f\x8e\x01\x36\x38\x52\xd0\xba"
8030 "\xd6\x02\x78\xf8\x0e\x3e\x9c\x8b"
8031 "\x6b\x45\x99\x3f\x5c\xfe\x58\xf1"
8032 "\x5c\x94\x04\xe1\xf5\x18\x6d\x51"
8033 "\xb2\x5d\x18\x20\xb6\xc2\x9a\x42"
8034 "\x1d\xb3\xab\x3c\xb6\x3a\x13\x03"
8035 "\xb2\x46\x82\x4f\xfc\x64\xbc\x4f"
8036 "\xca\xfa\x9c\xc0\xd5\xa7\xbd\x11"
8037 "\xb7\xe4\x5a\xf6\x6f\x4d\x4d\x54"
8038 "\xea\xa4\x98\x66\xd4\x22\x3b\xd3"
8039 "\x8f\x34\x47\xd9\x7c\xf4\x72\x3b"
8040 "\x4d\x02\x77\xf6\xd6\xdd\x08\x0a"
8041 "\x81\xe1\x86\x89\x3e\x56\x10\x3c"
8042 "\xba\xd7\x81\x8c\x08\xbc\x8b\xe2"
8043 "\x53\xec\xa7\x89\xee\xc8\x56\xb5"
8044 "\x36\x2c\xb2\x03\xba\x99\xdd\x7c"
8045 "\x48\xa0\xb0\xbc\x91\x33\xe9\xa8"
8046 "\xcb\xcd\xcf\x59\x5f\x1f\x15\xe2"
8047 "\x56\xf5\x4e\x01\x35\x27\x45\x77"
8048 "\x47\xc8\xbc\xcb\x7e\x39\xc1\x97"
8049 "\x28\xd3\x84\xfc\x2c\x3e\xc8\xad"
8050 "\x9c\xf8\x8a\x61\x9c\x28\xaa\xc5"
8051 "\x99\x20\x43\x85\x9d\xa5\xe2\x8b"
8052 "\xb8\xae\xeb\xd0\x32\x0d\x52\x78"
8053 "\x09\x56\x3f\xc7\xd8\x7e\x26\xfc"
8054 "\x37\xfb\x6f\x04\xfc\xfa\x92\x10"
8055 "\xac\xf8\x3e\x21\xdc\x8c\x21\x16"
8056 "\x7d\x67\x6e\xf6\xcd\xda\xb6\x98"
8057 "\x23\xab\x23\x3c\xb2\x10\xa0\x53"
8058 "\x5a\x56\x9f\xc5\xd0\xff\xbb\xe4"
8059 "\x98\x3c\x69\x1e\xdb\x38\x8f\x7e"
8060 "\x0f\xd2\x98\x88\x81\x8b\x45\x67"
8061 "\xea\x33\xf1\xeb\xe9\x97\x55\x2e"
8062 "\xd9\xaa\xeb\x5a\xec\xda\xe1\x68"
8063 "\xa8\x9d\x3c\x84\x7c\x05\x3d\x62"
8064 "\x87\x8f\x03\x21\x28\x95\x0c\x89"
8065 "\x25\x22\x4a\xb0\x93\xa9\x50\xa2"
8066 "\x2f\x57\x6e\x18\x42\x19\x54\x0c"
8067 "\x55\x67\xc6\x11\x49\xf4\x5c\xd2"
8068 "\xe9\x3d\xdd\x8b\x48\x71\x21\x00"
8069 "\xc3\x9a\x6c\x85\x74\x28\x83\x4a"
8070 "\x1b\x31\x05\xe1\x06\x92\xe7\xda"
8071 "\x85\x73\x78\x45\x20\x7f\xae\x13"
8072 "\x7c\x33\x06\x22\xf4\x83\xf9\x35"
8073 "\x3f\x6c\x71\xa8\x4e\x48\xbe\x9b"
8074 "\xce\x8a\xba\xda\xbe\x28\x08\xf7"
8075 "\xe2\x14\x8c\x71\xea\x72\xf9\x33"
8076 "\xf2\x88\x3f\xd7\xbb\x69\x6c\x29"
8077 "\x19\xdc\x84\xce\x1f\x12\x4f\xc8"
8078 "\xaf\xa5\x04\xba\x5a\xab\xb0\xd9"
8079 "\x14\x1f\x6c\x68\x98\x39\x89\x7a"
8080 "\xd9\xd8\x2f\xdf\xa8\x47\x4a\x25"
8081 "\xe2\xfb\x33\xf4\x59\x78\xe1\x68"
8082 "\x85\xcf\xfe\x59\x20\xd4\x05\x1d"
8083 "\x80\x99\xae\xbc\xca\xae\x0f\x2f"
8084 "\x65\x43\x34\x8e\x7e\xac\xd3\x93"
8085 "\x2f\xac\x6d\x14\x3d\x02\x07\x70"
8086 "\x9d\xa4\xf3\x1b\x5c\x36\xfc\x01"
8087 "\x73\x34\x85\x0c\x6c\xd6\xf1\xbd"
8088 "\x3f\xdf\xee\xf5\xd9\xba\x56\xef"
8089 "\xf4\x9b\x6b\xee\x9f\x5a\x78\x6d"
8090 "\x32\x19\xf4\xf7\xf8\x4c\x69\x0b"
8091 "\x4b\xbc\xbb\xb7\xf2\x85\xaf\x70"
8092 "\x75\x24\x6c\x54\xa7\x0e\x4d\x1d"
8093 "\x01\xbf\x08\xac\xcf\x7f\x2c\xe3"
8094 "\x14\x89\x5e\x70\x5a\x99\x92\xcd"
8095 "\x01\x84\xc8\xd2\xab\xe5\x4f\x58"
8096 "\xe7\x0f\x2f\x0e\xff\x68\xea\xfd"
8097 "\x15\xb3\x17\xe6\xb0\xe7\x85\xd8"
8098 "\x23\x2e\x05\xc7\xc9\xc4\x46\x1f"
8099 "\xe1\x9e\x49\x20\x23\x24\x4d\x7e"
8100 "\x29\x65\xff\xf4\xb6\xfd\x1a\x85"
8101 "\xc4\x16\xec\xfc\xea\x7b\xd6\x2c"
8102 "\x43\xf8\xb7\xbf\x79\xc0\x85\xcd"
8103 "\xef\xe1\x98\xd3\xa5\xf7\x90\x8c"
8104 "\xe9\x7f\x80\x6b\xd2\xac\x4c\x30"
8105 "\xa7\xc6\x61\x6c\xd2\xf9\x2c\xff"
8106 "\x30\xbc\x22\x81\x7d\x93\x12\xe4"
8107 "\x0a\xcd\xaf\xdd\xe8\xab\x0a\x1e"
8108 "\x13\xa4\x27\xc3\x5f\xf7\x4b\xbb"
8109 "\x37\x09\x4b\x91\x6f\x92\x4f\xaf"
8110 "\x52\xee\xdf\xef\x09\x6f\xf7\x5c"
8111 "\x6e\x12\x17\x72\x63\x57\xc7\xba"
8112 "\x3b\x6b\x38\x32\x73\x1b\x9c\x80"
8113 "\xc1\x7a\xc6\xcf\xcd\x35\xc0\x6b"
8114 "\x31\x1a\x6b\xe9\xd8\x2c\x29\x3f"
8115 "\x96\xfb\xb6\xcd\x13\x91\x3b\xc2"
8116 "\xd2\xa3\x31\x8d\xa4\xcd\x57\xcd"
8117 "\x13\x3d\x64\xfd\x06\xce\xe6\xdc"
8118 "\x0c\x24\x43\x31\x40\x57\xf1\x72"
8119 "\x17\xe3\x3a\x63\x6d\x35\xcf\x5d"
8120 "\x97\x40\x59\xdd\xf7\x3c\x02\xf7"
8121 "\x1c\x7e\x05\xbb\xa9\x0d\x01\xb1"
8122 "\x8e\xc0\x30\xa9\x53\x24\xc9\x89"
8123 "\x84\x6d\xaa\xd0\xcd\x91\xc2\x4d"
8124 "\x91\xb0\x89\xe2\xbf\x83\x44\xaa"
8125 "\x28\x72\x23\xa0\xc2\xad\xad\x1c"
8126 "\xfc\x3f\x09\x7a\x0b\xdc\xc5\x1b"
8127 "\x87\x13\xc6\x5b\x59\x8d\xf2\xc8"
8128 "\xaf\xdf\x11\x95",
8129 .rlen = 4100,
8130 .np = 2,
8131 .tap = { 4064, 36 },
8132 },
8133};
8134
8135/*
8136 * CTS (Cipher Text Stealing) mode tests
8137 */
8138#define CTS_MODE_ENC_TEST_VECTORS 6
8139#define CTS_MODE_DEC_TEST_VECTORS 6
8140static struct cipher_testvec cts_mode_enc_tv_template[] = {
8141 { /* from rfc3962 */
8142 .klen = 16,
8143 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8144 "\x74\x65\x72\x69\x79\x61\x6b\x69",
8145 .ilen = 17,
8146 .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8147 "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8148 "\x20",
8149 .rlen = 17,
8150 .result = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4"
8151 "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f"
8152 "\x97",
8153 }, {
8154 .klen = 16,
8155 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8156 "\x74\x65\x72\x69\x79\x61\x6b\x69",
8157 .ilen = 31,
8158 .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8159 "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8160 "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8161 "\x20\x47\x61\x75\x27\x73\x20",
8162 .rlen = 31,
8163 .result = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1"
8164 "\xd4\x45\xd4\xc8\xef\xf7\xed\x22"
8165 "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8166 "\xc0\x7b\x25\xe2\x5e\xcf\xe5",
8167 }, {
8168 .klen = 16,
8169 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8170 "\x74\x65\x72\x69\x79\x61\x6b\x69",
8171 .ilen = 32,
8172 .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8173 "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8174 "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8175 "\x20\x47\x61\x75\x27\x73\x20\x43",
8176 .rlen = 32,
8177 .result = "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8178 "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8179 "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8180 "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84",
8181 }, {
8182 .klen = 16,
8183 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8184 "\x74\x65\x72\x69\x79\x61\x6b\x69",
8185 .ilen = 47,
8186 .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8187 "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8188 "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8189 "\x20\x47\x61\x75\x27\x73\x20\x43"
8190 "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8191 "\x70\x6c\x65\x61\x73\x65\x2c",
8192 .rlen = 47,
8193 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8194 "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8195 "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c"
8196 "\x1b\x55\x49\xd2\xf8\x38\x02\x9e"
8197 "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8198 "\xbe\x7f\xcb\xcc\x98\xeb\xf5",
8199 }, {
8200 .klen = 16,
8201 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8202 "\x74\x65\x72\x69\x79\x61\x6b\x69",
8203 .ilen = 48,
8204 .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8205 "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8206 "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8207 "\x20\x47\x61\x75\x27\x73\x20\x43"
8208 "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8209 "\x70\x6c\x65\x61\x73\x65\x2c\x20",
8210 .rlen = 48,
8211 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8212 "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8213 "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8214 "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8"
8215 "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8216 "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8",
8217 }, {
8218 .klen = 16,
8219 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8220 "\x74\x65\x72\x69\x79\x61\x6b\x69",
8221 .ilen = 64,
8222 .input = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8223 "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8224 "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8225 "\x20\x47\x61\x75\x27\x73\x20\x43"
8226 "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8227 "\x70\x6c\x65\x61\x73\x65\x2c\x20"
8228 "\x61\x6e\x64\x20\x77\x6f\x6e\x74"
8229 "\x6f\x6e\x20\x73\x6f\x75\x70\x2e",
8230 .rlen = 64,
8231 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8232 "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8233 "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8234 "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8235 "\x48\x07\xef\xe8\x36\xee\x89\xa5"
8236 "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40"
8237 "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8238 "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8",
8239 }
8240};
8241
8242static struct cipher_testvec cts_mode_dec_tv_template[] = {
8243 { /* from rfc3962 */
8244 .klen = 16,
8245 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8246 "\x74\x65\x72\x69\x79\x61\x6b\x69",
8247 .rlen = 17,
8248 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8249 "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8250 "\x20",
8251 .ilen = 17,
8252 .input = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4"
8253 "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f"
8254 "\x97",
8255 }, {
8256 .klen = 16,
8257 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8258 "\x74\x65\x72\x69\x79\x61\x6b\x69",
8259 .rlen = 31,
8260 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8261 "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8262 "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8263 "\x20\x47\x61\x75\x27\x73\x20",
8264 .ilen = 31,
8265 .input = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1"
8266 "\xd4\x45\xd4\xc8\xef\xf7\xed\x22"
8267 "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8268 "\xc0\x7b\x25\xe2\x5e\xcf\xe5",
8269 }, {
8270 .klen = 16,
8271 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8272 "\x74\x65\x72\x69\x79\x61\x6b\x69",
8273 .rlen = 32,
8274 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8275 "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8276 "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8277 "\x20\x47\x61\x75\x27\x73\x20\x43",
8278 .ilen = 32,
8279 .input = "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8280 "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8281 "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8282 "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84",
8283 }, {
8284 .klen = 16,
8285 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8286 "\x74\x65\x72\x69\x79\x61\x6b\x69",
8287 .rlen = 47,
8288 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8289 "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8290 "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8291 "\x20\x47\x61\x75\x27\x73\x20\x43"
8292 "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8293 "\x70\x6c\x65\x61\x73\x65\x2c",
8294 .ilen = 47,
8295 .input = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8296 "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8297 "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c"
8298 "\x1b\x55\x49\xd2\xf8\x38\x02\x9e"
8299 "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8300 "\xbe\x7f\xcb\xcc\x98\xeb\xf5",
8301 }, {
8302 .klen = 16,
8303 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8304 "\x74\x65\x72\x69\x79\x61\x6b\x69",
8305 .rlen = 48,
8306 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8307 "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8308 "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8309 "\x20\x47\x61\x75\x27\x73\x20\x43"
8310 "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8311 "\x70\x6c\x65\x61\x73\x65\x2c\x20",
8312 .ilen = 48,
8313 .input = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8314 "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8315 "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8316 "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8"
8317 "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8318 "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8",
8319 }, {
8320 .klen = 16,
8321 .key = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8322 "\x74\x65\x72\x69\x79\x61\x6b\x69",
8323 .rlen = 64,
8324 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8325 "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8326 "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8327 "\x20\x47\x61\x75\x27\x73\x20\x43"
8328 "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8329 "\x70\x6c\x65\x61\x73\x65\x2c\x20"
8330 "\x61\x6e\x64\x20\x77\x6f\x6e\x74"
8331 "\x6f\x6e\x20\x73\x6f\x75\x70\x2e",
8332 .ilen = 64,
8333 .input = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8334 "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8335 "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8336 "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8337 "\x48\x07\xef\xe8\x36\xee\x89\xa5"
8338 "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40"
8339 "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8340 "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8",
8341 }
8342};
8343
8344/*
8345 * Compression stuff.
8346 */
8347#define COMP_BUF_SIZE 512
8348
8349struct comp_testvec {
8350 int inlen, outlen;
8351 char input[COMP_BUF_SIZE];
8352 char output[COMP_BUF_SIZE];
8353};
8354
Geert Uytterhoeven8064efb2009-03-04 15:08:03 +08008355struct pcomp_testvec {
8356 void *params;
8357 unsigned int paramsize;
8358 int inlen, outlen;
8359 char input[COMP_BUF_SIZE];
8360 char output[COMP_BUF_SIZE];
8361};
8362
Herbert Xuda7f0332008-07-31 17:08:25 +08008363/*
8364 * Deflate test vectors (null-terminated strings).
Geert Uytterhoevenbcf84a32008-12-18 17:17:46 +11008365 * Params: winbits=-11, Z_DEFAULT_COMPRESSION, MAX_MEM_LEVEL.
Herbert Xuda7f0332008-07-31 17:08:25 +08008366 */
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08008367
Herbert Xuda7f0332008-07-31 17:08:25 +08008368#define DEFLATE_COMP_TEST_VECTORS 2
8369#define DEFLATE_DECOMP_TEST_VECTORS 2
8370
8371static struct comp_testvec deflate_comp_tv_template[] = {
8372 {
8373 .inlen = 70,
8374 .outlen = 38,
8375 .input = "Join us now and share the software "
8376 "Join us now and share the software ",
8377 .output = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8378 "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8379 "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8380 "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8381 "\x71\xbc\x08\x2b\x01\x00",
8382 }, {
8383 .inlen = 191,
8384 .outlen = 122,
8385 .input = "This document describes a compression method based on the DEFLATE"
8386 "compression algorithm. This document defines the application of "
8387 "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8388 .output = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8389 "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8390 "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8391 "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8392 "\x68\x12\x51\xae\x76\x67\xd6\x27"
8393 "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8394 "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8395 "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8396 "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8397 "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8398 "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8399 "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8400 "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8401 "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8402 "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8403 "\xfa\x02",
8404 },
8405};
8406
8407static struct comp_testvec deflate_decomp_tv_template[] = {
8408 {
8409 .inlen = 122,
8410 .outlen = 191,
8411 .input = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8412 "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8413 "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8414 "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8415 "\x68\x12\x51\xae\x76\x67\xd6\x27"
8416 "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8417 "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8418 "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8419 "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8420 "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8421 "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8422 "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8423 "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8424 "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8425 "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8426 "\xfa\x02",
8427 .output = "This document describes a compression method based on the DEFLATE"
8428 "compression algorithm. This document defines the application of "
8429 "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8430 }, {
8431 .inlen = 38,
8432 .outlen = 70,
8433 .input = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8434 "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8435 "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8436 "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8437 "\x71\xbc\x08\x2b\x01\x00",
8438 .output = "Join us now and share the software "
8439 "Join us now and share the software ",
8440 },
8441};
8442
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08008443#define ZLIB_COMP_TEST_VECTORS 2
8444#define ZLIB_DECOMP_TEST_VECTORS 2
8445
8446static const struct {
8447 struct nlattr nla;
8448 int val;
8449} deflate_comp_params[] = {
8450 {
8451 .nla = {
8452 .nla_len = NLA_HDRLEN + sizeof(int),
8453 .nla_type = ZLIB_COMP_LEVEL,
8454 },
8455 .val = Z_DEFAULT_COMPRESSION,
8456 }, {
8457 .nla = {
8458 .nla_len = NLA_HDRLEN + sizeof(int),
8459 .nla_type = ZLIB_COMP_METHOD,
8460 },
8461 .val = Z_DEFLATED,
8462 }, {
8463 .nla = {
8464 .nla_len = NLA_HDRLEN + sizeof(int),
8465 .nla_type = ZLIB_COMP_WINDOWBITS,
8466 },
8467 .val = -11,
8468 }, {
8469 .nla = {
8470 .nla_len = NLA_HDRLEN + sizeof(int),
8471 .nla_type = ZLIB_COMP_MEMLEVEL,
8472 },
8473 .val = MAX_MEM_LEVEL,
8474 }, {
8475 .nla = {
8476 .nla_len = NLA_HDRLEN + sizeof(int),
8477 .nla_type = ZLIB_COMP_STRATEGY,
8478 },
8479 .val = Z_DEFAULT_STRATEGY,
8480 }
8481};
8482
8483static const struct {
8484 struct nlattr nla;
8485 int val;
8486} deflate_decomp_params[] = {
8487 {
8488 .nla = {
8489 .nla_len = NLA_HDRLEN + sizeof(int),
8490 .nla_type = ZLIB_DECOMP_WINDOWBITS,
8491 },
8492 .val = -11,
8493 }
8494};
8495
8496static struct pcomp_testvec zlib_comp_tv_template[] = {
8497 {
8498 .params = &deflate_comp_params,
8499 .paramsize = sizeof(deflate_comp_params),
8500 .inlen = 70,
8501 .outlen = 38,
8502 .input = "Join us now and share the software "
8503 "Join us now and share the software ",
8504 .output = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8505 "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8506 "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8507 "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8508 "\x71\xbc\x08\x2b\x01\x00",
8509 }, {
8510 .params = &deflate_comp_params,
8511 .paramsize = sizeof(deflate_comp_params),
8512 .inlen = 191,
8513 .outlen = 122,
8514 .input = "This document describes a compression method based on the DEFLATE"
8515 "compression algorithm. This document defines the application of "
8516 "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8517 .output = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8518 "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8519 "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8520 "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8521 "\x68\x12\x51\xae\x76\x67\xd6\x27"
8522 "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8523 "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8524 "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8525 "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8526 "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8527 "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8528 "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8529 "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8530 "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8531 "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8532 "\xfa\x02",
8533 },
8534};
8535
8536static struct pcomp_testvec zlib_decomp_tv_template[] = {
8537 {
8538 .params = &deflate_decomp_params,
8539 .paramsize = sizeof(deflate_decomp_params),
8540 .inlen = 122,
8541 .outlen = 191,
8542 .input = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8543 "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8544 "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8545 "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8546 "\x68\x12\x51\xae\x76\x67\xd6\x27"
8547 "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8548 "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8549 "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8550 "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8551 "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8552 "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8553 "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8554 "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8555 "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8556 "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8557 "\xfa\x02",
8558 .output = "This document describes a compression method based on the DEFLATE"
8559 "compression algorithm. This document defines the application of "
8560 "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8561 }, {
8562 .params = &deflate_decomp_params,
8563 .paramsize = sizeof(deflate_decomp_params),
8564 .inlen = 38,
8565 .outlen = 70,
8566 .input = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8567 "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8568 "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8569 "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8570 "\x71\xbc\x08\x2b\x01\x00",
8571 .output = "Join us now and share the software "
8572 "Join us now and share the software ",
8573 },
8574};
8575
Herbert Xuda7f0332008-07-31 17:08:25 +08008576/*
8577 * LZO test vectors (null-terminated strings).
8578 */
8579#define LZO_COMP_TEST_VECTORS 2
8580#define LZO_DECOMP_TEST_VECTORS 2
8581
8582static struct comp_testvec lzo_comp_tv_template[] = {
8583 {
8584 .inlen = 70,
8585 .outlen = 46,
8586 .input = "Join us now and share the software "
8587 "Join us now and share the software ",
8588 .output = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75"
8589 "\x73\x20\x6e\x6f\x77\x20\x61\x6e"
8590 "\x64\x20\x73\x68\x61\x72\x65\x20"
8591 "\x74\x68\x65\x20\x73\x6f\x66\x74"
8592 "\x77\x70\x01\x01\x4a\x6f\x69\x6e"
8593 "\x3d\x88\x00\x11\x00\x00",
8594 }, {
8595 .inlen = 159,
8596 .outlen = 133,
8597 .input = "This document describes a compression method based on the LZO "
8598 "compression algorithm. This document defines the application of "
8599 "the LZO algorithm used in UBIFS.",
8600 .output = "\x00\x2b\x54\x68\x69\x73\x20\x64"
8601 "\x6f\x63\x75\x6d\x65\x6e\x74\x20"
8602 "\x64\x65\x73\x63\x72\x69\x62\x65"
8603 "\x73\x20\x61\x20\x63\x6f\x6d\x70"
8604 "\x72\x65\x73\x73\x69\x6f\x6e\x20"
8605 "\x6d\x65\x74\x68\x6f\x64\x20\x62"
8606 "\x61\x73\x65\x64\x20\x6f\x6e\x20"
8607 "\x74\x68\x65\x20\x4c\x5a\x4f\x2b"
8608 "\x8c\x00\x0d\x61\x6c\x67\x6f\x72"
8609 "\x69\x74\x68\x6d\x2e\x20\x20\x54"
8610 "\x68\x69\x73\x2a\x54\x01\x02\x66"
8611 "\x69\x6e\x65\x73\x94\x06\x05\x61"
8612 "\x70\x70\x6c\x69\x63\x61\x74\x76"
8613 "\x0a\x6f\x66\x88\x02\x60\x09\x27"
8614 "\xf0\x00\x0c\x20\x75\x73\x65\x64"
8615 "\x20\x69\x6e\x20\x55\x42\x49\x46"
8616 "\x53\x2e\x11\x00\x00",
8617 },
8618};
8619
8620static struct comp_testvec lzo_decomp_tv_template[] = {
8621 {
8622 .inlen = 133,
8623 .outlen = 159,
8624 .input = "\x00\x2b\x54\x68\x69\x73\x20\x64"
8625 "\x6f\x63\x75\x6d\x65\x6e\x74\x20"
8626 "\x64\x65\x73\x63\x72\x69\x62\x65"
8627 "\x73\x20\x61\x20\x63\x6f\x6d\x70"
8628 "\x72\x65\x73\x73\x69\x6f\x6e\x20"
8629 "\x6d\x65\x74\x68\x6f\x64\x20\x62"
8630 "\x61\x73\x65\x64\x20\x6f\x6e\x20"
8631 "\x74\x68\x65\x20\x4c\x5a\x4f\x2b"
8632 "\x8c\x00\x0d\x61\x6c\x67\x6f\x72"
8633 "\x69\x74\x68\x6d\x2e\x20\x20\x54"
8634 "\x68\x69\x73\x2a\x54\x01\x02\x66"
8635 "\x69\x6e\x65\x73\x94\x06\x05\x61"
8636 "\x70\x70\x6c\x69\x63\x61\x74\x76"
8637 "\x0a\x6f\x66\x88\x02\x60\x09\x27"
8638 "\xf0\x00\x0c\x20\x75\x73\x65\x64"
8639 "\x20\x69\x6e\x20\x55\x42\x49\x46"
8640 "\x53\x2e\x11\x00\x00",
8641 .output = "This document describes a compression method based on the LZO "
8642 "compression algorithm. This document defines the application of "
8643 "the LZO algorithm used in UBIFS.",
8644 }, {
8645 .inlen = 46,
8646 .outlen = 70,
8647 .input = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75"
8648 "\x73\x20\x6e\x6f\x77\x20\x61\x6e"
8649 "\x64\x20\x73\x68\x61\x72\x65\x20"
8650 "\x74\x68\x65\x20\x73\x6f\x66\x74"
8651 "\x77\x70\x01\x01\x4a\x6f\x69\x6e"
8652 "\x3d\x88\x00\x11\x00\x00",
8653 .output = "Join us now and share the software "
8654 "Join us now and share the software ",
8655 },
8656};
8657
8658/*
8659 * Michael MIC test vectors from IEEE 802.11i
8660 */
8661#define MICHAEL_MIC_TEST_VECTORS 6
8662
8663static struct hash_testvec michael_mic_tv_template[] = {
8664 {
8665 .key = "\x00\x00\x00\x00\x00\x00\x00\x00",
8666 .ksize = 8,
8667 .plaintext = zeroed_string,
8668 .psize = 0,
8669 .digest = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8",
8670 },
8671 {
8672 .key = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8",
8673 .ksize = 8,
8674 .plaintext = "M",
8675 .psize = 1,
8676 .digest = "\x43\x47\x21\xca\x40\x63\x9b\x3f",
8677 },
8678 {
8679 .key = "\x43\x47\x21\xca\x40\x63\x9b\x3f",
8680 .ksize = 8,
8681 .plaintext = "Mi",
8682 .psize = 2,
8683 .digest = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29",
8684 },
8685 {
8686 .key = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29",
8687 .ksize = 8,
8688 .plaintext = "Mic",
8689 .psize = 3,
8690 .digest = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb",
8691 },
8692 {
8693 .key = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb",
8694 .ksize = 8,
8695 .plaintext = "Mich",
8696 .psize = 4,
8697 .digest = "\xd5\x5e\x10\x05\x10\x12\x89\x86",
8698 },
8699 {
8700 .key = "\xd5\x5e\x10\x05\x10\x12\x89\x86",
8701 .ksize = 8,
8702 .plaintext = "Michael",
8703 .psize = 7,
8704 .digest = "\x0a\x94\x2b\x12\x4e\xca\xa5\x46",
8705 }
8706};
8707
8708/*
8709 * CRC32C test vectors
8710 */
8711#define CRC32C_TEST_VECTORS 14
8712
8713static struct hash_testvec crc32c_tv_template[] = {
8714 {
8715 .psize = 0,
8716 .digest = "\x00\x00\x00\x00",
8717 },
8718 {
8719 .key = "\x87\xa9\xcb\xed",
8720 .ksize = 4,
8721 .psize = 0,
8722 .digest = "\x78\x56\x34\x12",
8723 },
8724 {
8725 .key = "\xff\xff\xff\xff",
8726 .ksize = 4,
8727 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08"
8728 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
8729 "\x11\x12\x13\x14\x15\x16\x17\x18"
8730 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
8731 "\x21\x22\x23\x24\x25\x26\x27\x28",
8732 .psize = 40,
8733 .digest = "\x7f\x15\x2c\x0e",
8734 },
8735 {
8736 .key = "\xff\xff\xff\xff",
8737 .ksize = 4,
8738 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
8739 "\x31\x32\x33\x34\x35\x36\x37\x38"
8740 "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
8741 "\x41\x42\x43\x44\x45\x46\x47\x48"
8742 "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50",
8743 .psize = 40,
8744 .digest = "\xf6\xeb\x80\xe9",
8745 },
8746 {
8747 .key = "\xff\xff\xff\xff",
8748 .ksize = 4,
8749 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58"
8750 "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
8751 "\x61\x62\x63\x64\x65\x66\x67\x68"
8752 "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
8753 "\x71\x72\x73\x74\x75\x76\x77\x78",
8754 .psize = 40,
8755 .digest = "\xed\xbd\x74\xde",
8756 },
8757 {
8758 .key = "\xff\xff\xff\xff",
8759 .ksize = 4,
8760 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
8761 "\x81\x82\x83\x84\x85\x86\x87\x88"
8762 "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
8763 "\x91\x92\x93\x94\x95\x96\x97\x98"
8764 "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0",
8765 .psize = 40,
8766 .digest = "\x62\xc8\x79\xd5",
8767 },
8768 {
8769 .key = "\xff\xff\xff\xff",
8770 .ksize = 4,
8771 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
8772 "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
8773 "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
8774 "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
8775 "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8",
8776 .psize = 40,
8777 .digest = "\xd0\x9a\x97\xba",
8778 },
8779 {
8780 .key = "\xff\xff\xff\xff",
8781 .ksize = 4,
8782 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
8783 "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
8784 "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
8785 "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
8786 "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
8787 .psize = 40,
8788 .digest = "\x13\xd9\x29\x2b",
8789 },
8790 {
8791 .key = "\x80\xea\xd3\xf1",
8792 .ksize = 4,
8793 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
8794 "\x31\x32\x33\x34\x35\x36\x37\x38"
8795 "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
8796 "\x41\x42\x43\x44\x45\x46\x47\x48"
8797 "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50",
8798 .psize = 40,
8799 .digest = "\x0c\xb5\xe2\xa2",
8800 },
8801 {
8802 .key = "\xf3\x4a\x1d\x5d",
8803 .ksize = 4,
8804 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58"
8805 "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
8806 "\x61\x62\x63\x64\x65\x66\x67\x68"
8807 "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
8808 "\x71\x72\x73\x74\x75\x76\x77\x78",
8809 .psize = 40,
8810 .digest = "\xd1\x7f\xfb\xa6",
8811 },
8812 {
8813 .key = "\x2e\x80\x04\x59",
8814 .ksize = 4,
8815 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
8816 "\x81\x82\x83\x84\x85\x86\x87\x88"
8817 "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
8818 "\x91\x92\x93\x94\x95\x96\x97\x98"
8819 "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0",
8820 .psize = 40,
8821 .digest = "\x59\x33\xe6\x7a",
8822 },
8823 {
8824 .key = "\xa6\xcc\x19\x85",
8825 .ksize = 4,
8826 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
8827 "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
8828 "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
8829 "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
8830 "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8",
8831 .psize = 40,
8832 .digest = "\xbe\x03\x01\xd2",
8833 },
8834 {
8835 .key = "\x41\xfc\xfe\x2d",
8836 .ksize = 4,
8837 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
8838 "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
8839 "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
8840 "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
8841 "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
8842 .psize = 40,
8843 .digest = "\x75\xd3\xc5\x24",
8844 },
8845 {
8846 .key = "\xff\xff\xff\xff",
8847 .ksize = 4,
8848 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08"
8849 "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
8850 "\x11\x12\x13\x14\x15\x16\x17\x18"
8851 "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
8852 "\x21\x22\x23\x24\x25\x26\x27\x28"
8853 "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
8854 "\x31\x32\x33\x34\x35\x36\x37\x38"
8855 "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
8856 "\x41\x42\x43\x44\x45\x46\x47\x48"
8857 "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50"
8858 "\x51\x52\x53\x54\x55\x56\x57\x58"
8859 "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
8860 "\x61\x62\x63\x64\x65\x66\x67\x68"
8861 "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
8862 "\x71\x72\x73\x74\x75\x76\x77\x78"
8863 "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
8864 "\x81\x82\x83\x84\x85\x86\x87\x88"
8865 "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
8866 "\x91\x92\x93\x94\x95\x96\x97\x98"
8867 "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0"
8868 "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
8869 "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
8870 "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
8871 "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
8872 "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8"
8873 "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
8874 "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
8875 "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
8876 "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
8877 "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
8878 .psize = 240,
8879 .digest = "\x75\xd3\xc5\x24",
8880 .np = 2,
8881 .tap = { 31, 209 }
8882 },
8883};
8884
8885#endif /* _CRYPTO_TESTMGR_H */