1/*
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
18#include <linux/netlink.h>
19#include <linux/zlib.h>
20
21#include <crypto/compress.h>
22
23#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 novrfy;	/* ccm dec verification failure expected */
66	unsigned char wk; /* weak key flag */
67	unsigned char klen;
68	unsigned short ilen;
69	unsigned short alen;
70	unsigned short rlen;
71};
72
73struct cprng_testvec {
74	char *key;
75	char *dt;
76	char *v;
77	char *result;
78	unsigned char klen;
79	unsigned short dtlen;
80	unsigned short vlen;
81	unsigned short rlen;
82	unsigned short loops;
83};
84
85static char zeroed_string[48];
86
87/*
88 * MD4 test vectors from RFC1320
89 */
90#define MD4_TEST_VECTORS	7
91
92static struct hash_testvec md4_tv_template [] = {
93	{
94		.plaintext = "",
95		.digest	= "\x31\xd6\xcf\xe0\xd1\x6a\xe9\x31"
96			  "\xb7\x3c\x59\xd7\xe0\xc0\x89\xc0",
97	}, {
98		.plaintext = "a",
99		.psize	= 1,
100		.digest	= "\xbd\xe5\x2c\xb3\x1d\xe3\x3e\x46"
101			  "\x24\x5e\x05\xfb\xdb\xd6\xfb\x24",
102	}, {
103		.plaintext = "abc",
104		.psize	= 3,
105		.digest	= "\xa4\x48\x01\x7a\xaf\x21\xd8\x52"
106			  "\x5f\xc1\x0a\xe8\x7a\xa6\x72\x9d",
107	}, {
108		.plaintext = "message digest",
109		.psize	= 14,
110		.digest	= "\xd9\x13\x0a\x81\x64\x54\x9f\xe8"
111			"\x18\x87\x48\x06\xe1\xc7\x01\x4b",
112	}, {
113		.plaintext = "abcdefghijklmnopqrstuvwxyz",
114		.psize	= 26,
115		.digest	= "\xd7\x9e\x1c\x30\x8a\xa5\xbb\xcd"
116			  "\xee\xa8\xed\x63\xdf\x41\x2d\xa9",
117		.np	= 2,
118		.tap	= { 13, 13 },
119	}, {
120		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
121		.psize	= 62,
122		.digest	= "\x04\x3f\x85\x82\xf2\x41\xdb\x35"
123			  "\x1c\xe6\x27\xe1\x53\xe7\xf0\xe4",
124	}, {
125		.plaintext = "123456789012345678901234567890123456789012345678901234567890123"
126			   "45678901234567890",
127		.psize	= 80,
128		.digest	= "\xe3\x3b\x4d\xdc\x9c\x38\xf2\x19"
129			  "\x9c\x3e\x7b\x16\x4f\xcc\x05\x36",
130	},
131};
132
133/*
134 * MD5 test vectors from RFC1321
135 */
136#define MD5_TEST_VECTORS	7
137
138static struct hash_testvec md5_tv_template[] = {
139	{
140		.digest	= "\xd4\x1d\x8c\xd9\x8f\x00\xb2\x04"
141			  "\xe9\x80\x09\x98\xec\xf8\x42\x7e",
142	}, {
143		.plaintext = "a",
144		.psize	= 1,
145		.digest	= "\x0c\xc1\x75\xb9\xc0\xf1\xb6\xa8"
146			  "\x31\xc3\x99\xe2\x69\x77\x26\x61",
147	}, {
148		.plaintext = "abc",
149		.psize	= 3,
150		.digest	= "\x90\x01\x50\x98\x3c\xd2\x4f\xb0"
151			  "\xd6\x96\x3f\x7d\x28\xe1\x7f\x72",
152	}, {
153		.plaintext = "message digest",
154		.psize	= 14,
155		.digest	= "\xf9\x6b\x69\x7d\x7c\xb7\x93\x8d"
156			  "\x52\x5a\x2f\x31\xaa\xf1\x61\xd0",
157	}, {
158		.plaintext = "abcdefghijklmnopqrstuvwxyz",
159		.psize	= 26,
160		.digest	= "\xc3\xfc\xd3\xd7\x61\x92\xe4\x00"
161			  "\x7d\xfb\x49\x6c\xca\x67\xe1\x3b",
162		.np	= 2,
163		.tap	= {13, 13}
164	}, {
165		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
166		.psize	= 62,
167		.digest	= "\xd1\x74\xab\x98\xd2\x77\xd9\xf5"
168			  "\xa5\x61\x1c\x2c\x9f\x41\x9d\x9f",
169	}, {
170		.plaintext = "12345678901234567890123456789012345678901234567890123456789012"
171			   "345678901234567890",
172		.psize	= 80,
173		.digest	= "\x57\xed\xf4\xa2\x2b\xe3\xc9\x55"
174			  "\xac\x49\xda\x2e\x21\x07\xb6\x7a",
175	}
176
177};
178
179/*
180 * RIPEMD-128 test vectors from ISO/IEC 10118-3:2004(E)
181 */
182#define RMD128_TEST_VECTORS     10
183
184static struct hash_testvec rmd128_tv_template[] = {
185	{
186		.digest	= "\xcd\xf2\x62\x13\xa1\x50\xdc\x3e"
187			  "\xcb\x61\x0f\x18\xf6\xb3\x8b\x46",
188	}, {
189		.plaintext = "a",
190		.psize	= 1,
191		.digest	= "\x86\xbe\x7a\xfa\x33\x9d\x0f\xc7"
192			  "\xcf\xc7\x85\xe7\x2f\x57\x8d\x33",
193	}, {
194		.plaintext = "abc",
195		.psize	= 3,
196		.digest	= "\xc1\x4a\x12\x19\x9c\x66\xe4\xba"
197			  "\x84\x63\x6b\x0f\x69\x14\x4c\x77",
198	}, {
199		.plaintext = "message digest",
200		.psize	= 14,
201		.digest	= "\x9e\x32\x7b\x3d\x6e\x52\x30\x62"
202			  "\xaf\xc1\x13\x2d\x7d\xf9\xd1\xb8",
203	}, {
204		.plaintext = "abcdefghijklmnopqrstuvwxyz",
205		.psize	= 26,
206		.digest	= "\xfd\x2a\xa6\x07\xf7\x1d\xc8\xf5"
207			  "\x10\x71\x49\x22\xb3\x71\x83\x4e",
208	}, {
209		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
210			     "fghijklmnopqrstuvwxyz0123456789",
211		.psize	= 62,
212		.digest	= "\xd1\xe9\x59\xeb\x17\x9c\x91\x1f"
213			  "\xae\xa4\x62\x4c\x60\xc5\xc7\x02",
214	}, {
215		.plaintext = "1234567890123456789012345678901234567890"
216			     "1234567890123456789012345678901234567890",
217		.psize	= 80,
218		.digest	= "\x3f\x45\xef\x19\x47\x32\xc2\xdb"
219			  "\xb2\xc4\xa2\xc7\x69\x79\x5f\xa3",
220	}, {
221		.plaintext = "abcdbcdecdefdefgefghfghighij"
222			     "hijkijkljklmklmnlmnomnopnopq",
223		.psize	= 56,
224		.digest	= "\xa1\xaa\x06\x89\xd0\xfa\xfa\x2d"
225			  "\xdc\x22\xe8\x8b\x49\x13\x3a\x06",
226		.np	= 2,
227		.tap	= { 28, 28 },
228	}, {
229		.plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi"
230			     "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr"
231			     "lmnopqrsmnopqrstnopqrstu",
232		.psize	= 112,
233		.digest	= "\xd4\xec\xc9\x13\xe1\xdf\x77\x6b"
234			  "\xf4\x8d\xe9\xd5\x5b\x1f\x25\x46",
235	}, {
236		.plaintext = "abcdbcdecdefdefgefghfghighijhijk",
237		.psize	= 32,
238		.digest	= "\x13\xfc\x13\xe8\xef\xff\x34\x7d"
239			  "\xe1\x93\xff\x46\xdb\xac\xcf\xd4",
240	}
241};
242
243/*
244 * RIPEMD-160 test vectors from ISO/IEC 10118-3:2004(E)
245 */
246#define RMD160_TEST_VECTORS     10
247
248static struct hash_testvec rmd160_tv_template[] = {
249	{
250		.digest	= "\x9c\x11\x85\xa5\xc5\xe9\xfc\x54\x61\x28"
251			  "\x08\x97\x7e\xe8\xf5\x48\xb2\x25\x8d\x31",
252	}, {
253		.plaintext = "a",
254		.psize	= 1,
255		.digest	= "\x0b\xdc\x9d\x2d\x25\x6b\x3e\xe9\xda\xae"
256			  "\x34\x7b\xe6\xf4\xdc\x83\x5a\x46\x7f\xfe",
257	}, {
258		.plaintext = "abc",
259		.psize	= 3,
260		.digest	= "\x8e\xb2\x08\xf7\xe0\x5d\x98\x7a\x9b\x04"
261			  "\x4a\x8e\x98\xc6\xb0\x87\xf1\x5a\x0b\xfc",
262	}, {
263		.plaintext = "message digest",
264		.psize	= 14,
265		.digest	= "\x5d\x06\x89\xef\x49\xd2\xfa\xe5\x72\xb8"
266			  "\x81\xb1\x23\xa8\x5f\xfa\x21\x59\x5f\x36",
267	}, {
268		.plaintext = "abcdefghijklmnopqrstuvwxyz",
269		.psize	= 26,
270		.digest	= "\xf7\x1c\x27\x10\x9c\x69\x2c\x1b\x56\xbb"
271			  "\xdc\xeb\x5b\x9d\x28\x65\xb3\x70\x8d\xbc",
272	}, {
273		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
274			     "fghijklmnopqrstuvwxyz0123456789",
275		.psize	= 62,
276		.digest	= "\xb0\xe2\x0b\x6e\x31\x16\x64\x02\x86\xed"
277			  "\x3a\x87\xa5\x71\x30\x79\xb2\x1f\x51\x89",
278	}, {
279		.plaintext = "1234567890123456789012345678901234567890"
280			     "1234567890123456789012345678901234567890",
281		.psize	= 80,
282		.digest	= "\x9b\x75\x2e\x45\x57\x3d\x4b\x39\xf4\xdb"
283			  "\xd3\x32\x3c\xab\x82\xbf\x63\x32\x6b\xfb",
284	}, {
285		.plaintext = "abcdbcdecdefdefgefghfghighij"
286			     "hijkijkljklmklmnlmnomnopnopq",
287		.psize	= 56,
288		.digest	= "\x12\xa0\x53\x38\x4a\x9c\x0c\x88\xe4\x05"
289			  "\xa0\x6c\x27\xdc\xf4\x9a\xda\x62\xeb\x2b",
290		.np	= 2,
291		.tap	= { 28, 28 },
292	}, {
293		.plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi"
294			     "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr"
295			     "lmnopqrsmnopqrstnopqrstu",
296		.psize	= 112,
297		.digest	= "\x6f\x3f\xa3\x9b\x6b\x50\x3c\x38\x4f\x91"
298			  "\x9a\x49\xa7\xaa\x5c\x2c\x08\xbd\xfb\x45",
299	}, {
300		.plaintext = "abcdbcdecdefdefgefghfghighijhijk",
301		.psize	= 32,
302		.digest	= "\x94\xc2\x64\x11\x54\x04\xe6\x33\x79\x0d"
303			  "\xfc\xc8\x7b\x58\x7d\x36\x77\x06\x7d\x9f",
304	}
305};
306
307/*
308 * RIPEMD-256 test vectors
309 */
310#define RMD256_TEST_VECTORS     8
311
312static struct hash_testvec rmd256_tv_template[] = {
313	{
314		.digest	= "\x02\xba\x4c\x4e\x5f\x8e\xcd\x18"
315			  "\x77\xfc\x52\xd6\x4d\x30\xe3\x7a"
316			  "\x2d\x97\x74\xfb\x1e\x5d\x02\x63"
317			  "\x80\xae\x01\x68\xe3\xc5\x52\x2d",
318	}, {
319		.plaintext = "a",
320		.psize	= 1,
321		.digest	= "\xf9\x33\x3e\x45\xd8\x57\xf5\xd9"
322			  "\x0a\x91\xba\xb7\x0a\x1e\xba\x0c"
323			  "\xfb\x1b\xe4\xb0\x78\x3c\x9a\xcf"
324			  "\xcd\x88\x3a\x91\x34\x69\x29\x25",
325	}, {
326		.plaintext = "abc",
327		.psize	= 3,
328		.digest	= "\xaf\xbd\x6e\x22\x8b\x9d\x8c\xbb"
329			  "\xce\xf5\xca\x2d\x03\xe6\xdb\xa1"
330			  "\x0a\xc0\xbc\x7d\xcb\xe4\x68\x0e"
331			  "\x1e\x42\xd2\xe9\x75\x45\x9b\x65",
332	}, {
333		.plaintext = "message digest",
334		.psize	= 14,
335		.digest	= "\x87\xe9\x71\x75\x9a\x1c\xe4\x7a"
336			  "\x51\x4d\x5c\x91\x4c\x39\x2c\x90"
337			  "\x18\xc7\xc4\x6b\xc1\x44\x65\x55"
338			  "\x4a\xfc\xdf\x54\xa5\x07\x0c\x0e",
339	}, {
340		.plaintext = "abcdefghijklmnopqrstuvwxyz",
341		.psize	= 26,
342		.digest	= "\x64\x9d\x30\x34\x75\x1e\xa2\x16"
343			  "\x77\x6b\xf9\xa1\x8a\xcc\x81\xbc"
344			  "\x78\x96\x11\x8a\x51\x97\x96\x87"
345			  "\x82\xdd\x1f\xd9\x7d\x8d\x51\x33",
346	}, {
347		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
348			     "fghijklmnopqrstuvwxyz0123456789",
349		.psize	= 62,
350		.digest	= "\x57\x40\xa4\x08\xac\x16\xb7\x20"
351			  "\xb8\x44\x24\xae\x93\x1c\xbb\x1f"
352			  "\xe3\x63\xd1\xd0\xbf\x40\x17\xf1"
353			  "\xa8\x9f\x7e\xa6\xde\x77\xa0\xb8",
354	}, {
355		.plaintext = "1234567890123456789012345678901234567890"
356			     "1234567890123456789012345678901234567890",
357		.psize	= 80,
358		.digest	= "\x06\xfd\xcc\x7a\x40\x95\x48\xaa"
359			  "\xf9\x13\x68\xc0\x6a\x62\x75\xb5"
360			  "\x53\xe3\xf0\x99\xbf\x0e\xa4\xed"
361			  "\xfd\x67\x78\xdf\x89\xa8\x90\xdd",
362	}, {
363		.plaintext = "abcdbcdecdefdefgefghfghighij"
364			     "hijkijkljklmklmnlmnomnopnopq",
365		.psize	= 56,
366		.digest	= "\x38\x43\x04\x55\x83\xaa\xc6\xc8"
367			  "\xc8\xd9\x12\x85\x73\xe7\xa9\x80"
368			  "\x9a\xfb\x2a\x0f\x34\xcc\xc3\x6e"
369			  "\xa9\xe7\x2f\x16\xf6\x36\x8e\x3f",
370		.np	= 2,
371		.tap	= { 28, 28 },
372	}
373};
374
375/*
376 * RIPEMD-320 test vectors
377 */
378#define RMD320_TEST_VECTORS     8
379
380static struct hash_testvec rmd320_tv_template[] = {
381	{
382		.digest	= "\x22\xd6\x5d\x56\x61\x53\x6c\xdc\x75\xc1"
383			  "\xfd\xf5\xc6\xde\x7b\x41\xb9\xf2\x73\x25"
384			  "\xeb\xc6\x1e\x85\x57\x17\x7d\x70\x5a\x0e"
385			  "\xc8\x80\x15\x1c\x3a\x32\xa0\x08\x99\xb8",
386	}, {
387		.plaintext = "a",
388		.psize	= 1,
389		.digest	= "\xce\x78\x85\x06\x38\xf9\x26\x58\xa5\xa5"
390			  "\x85\x09\x75\x79\x92\x6d\xda\x66\x7a\x57"
391			  "\x16\x56\x2c\xfc\xf6\xfb\xe7\x7f\x63\x54"
392			  "\x2f\x99\xb0\x47\x05\xd6\x97\x0d\xff\x5d",
393	}, {
394		.plaintext = "abc",
395		.psize	= 3,
396		.digest	= "\xde\x4c\x01\xb3\x05\x4f\x89\x30\xa7\x9d"
397			  "\x09\xae\x73\x8e\x92\x30\x1e\x5a\x17\x08"
398			  "\x5b\xef\xfd\xc1\xb8\xd1\x16\x71\x3e\x74"
399			  "\xf8\x2f\xa9\x42\xd6\x4c\xdb\xc4\x68\x2d",
400	}, {
401		.plaintext = "message digest",
402		.psize	= 14,
403		.digest	= "\x3a\x8e\x28\x50\x2e\xd4\x5d\x42\x2f\x68"
404			  "\x84\x4f\x9d\xd3\x16\xe7\xb9\x85\x33\xfa"
405			  "\x3f\x2a\x91\xd2\x9f\x84\xd4\x25\xc8\x8d"
406			  "\x6b\x4e\xff\x72\x7d\xf6\x6a\x7c\x01\x97",
407	}, {
408		.plaintext = "abcdefghijklmnopqrstuvwxyz",
409		.psize	= 26,
410		.digest	= "\xca\xbd\xb1\x81\x0b\x92\x47\x0a\x20\x93"
411			  "\xaa\x6b\xce\x05\x95\x2c\x28\x34\x8c\xf4"
412			  "\x3f\xf6\x08\x41\x97\x51\x66\xbb\x40\xed"
413			  "\x23\x40\x04\xb8\x82\x44\x63\xe6\xb0\x09",
414	}, {
415		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
416			     "fghijklmnopqrstuvwxyz0123456789",
417		.psize	= 62,
418		.digest	= "\xed\x54\x49\x40\xc8\x6d\x67\xf2\x50\xd2"
419			  "\x32\xc3\x0b\x7b\x3e\x57\x70\xe0\xc6\x0c"
420			  "\x8c\xb9\xa4\xca\xfe\x3b\x11\x38\x8a\xf9"
421			  "\x92\x0e\x1b\x99\x23\x0b\x84\x3c\x86\xa4",
422	}, {
423		.plaintext = "1234567890123456789012345678901234567890"
424			     "1234567890123456789012345678901234567890",
425		.psize	= 80,
426		.digest	= "\x55\x78\x88\xaf\x5f\x6d\x8e\xd6\x2a\xb6"
427			  "\x69\x45\xc6\xd2\xa0\xa4\x7e\xcd\x53\x41"
428			  "\xe9\x15\xeb\x8f\xea\x1d\x05\x24\x95\x5f"
429			  "\x82\x5d\xc7\x17\xe4\xa0\x08\xab\x2d\x42",
430	}, {
431		.plaintext = "abcdbcdecdefdefgefghfghighij"
432			     "hijkijkljklmklmnlmnomnopnopq",
433		.psize	= 56,
434		.digest	= "\xd0\x34\xa7\x95\x0c\xf7\x22\x02\x1b\xa4"
435			  "\xb8\x4d\xf7\x69\xa5\xde\x20\x60\xe2\x59"
436			  "\xdf\x4c\x9b\xb4\xa4\x26\x8c\x0e\x93\x5b"
437			  "\xbc\x74\x70\xa9\x69\xc9\xd0\x72\xa1\xac",
438		.np	= 2,
439		.tap	= { 28, 28 },
440	}
441};
442
443/*
444 * SHA1 test vectors  from from FIPS PUB 180-1
445 */
446#define SHA1_TEST_VECTORS	2
447
448static struct hash_testvec sha1_tv_template[] = {
449	{
450		.plaintext = "abc",
451		.psize	= 3,
452		.digest	= "\xa9\x99\x3e\x36\x47\x06\x81\x6a\xba\x3e"
453			  "\x25\x71\x78\x50\xc2\x6c\x9c\xd0\xd8\x9d",
454	}, {
455		.plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
456		.psize	= 56,
457		.digest	= "\x84\x98\x3e\x44\x1c\x3b\xd2\x6e\xba\xae"
458			  "\x4a\xa1\xf9\x51\x29\xe5\xe5\x46\x70\xf1",
459		.np	= 2,
460		.tap	= { 28, 28 }
461	}
462};
463
464
465/*
466 * SHA224 test vectors from from FIPS PUB 180-2
467 */
468#define SHA224_TEST_VECTORS     2
469
470static struct hash_testvec sha224_tv_template[] = {
471	{
472		.plaintext = "abc",
473		.psize  = 3,
474		.digest = "\x23\x09\x7D\x22\x34\x05\xD8\x22"
475			  "\x86\x42\xA4\x77\xBD\xA2\x55\xB3"
476			  "\x2A\xAD\xBC\xE4\xBD\xA0\xB3\xF7"
477			  "\xE3\x6C\x9D\xA7",
478	}, {
479		.plaintext =
480		"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
481		.psize  = 56,
482		.digest = "\x75\x38\x8B\x16\x51\x27\x76\xCC"
483			  "\x5D\xBA\x5D\xA1\xFD\x89\x01\x50"
484			  "\xB0\xC6\x45\x5C\xB4\xF5\x8B\x19"
485			  "\x52\x52\x25\x25",
486		.np     = 2,
487		.tap    = { 28, 28 }
488	}
489};
490
491/*
492 * SHA256 test vectors from from NIST
493 */
494#define SHA256_TEST_VECTORS	2
495
496static struct hash_testvec sha256_tv_template[] = {
497	{
498		.plaintext = "abc",
499		.psize	= 3,
500		.digest	= "\xba\x78\x16\xbf\x8f\x01\xcf\xea"
501			  "\x41\x41\x40\xde\x5d\xae\x22\x23"
502			  "\xb0\x03\x61\xa3\x96\x17\x7a\x9c"
503			  "\xb4\x10\xff\x61\xf2\x00\x15\xad",
504	}, {
505		.plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
506		.psize	= 56,
507		.digest	= "\x24\x8d\x6a\x61\xd2\x06\x38\xb8"
508			  "\xe5\xc0\x26\x93\x0c\x3e\x60\x39"
509			  "\xa3\x3c\xe4\x59\x64\xff\x21\x67"
510			  "\xf6\xec\xed\xd4\x19\xdb\x06\xc1",
511		.np	= 2,
512		.tap	= { 28, 28 }
513	},
514};
515
516/*
517 * SHA384 test vectors from from NIST and kerneli
518 */
519#define SHA384_TEST_VECTORS	4
520
521static struct hash_testvec sha384_tv_template[] = {
522	{
523		.plaintext= "abc",
524		.psize	= 3,
525		.digest	= "\xcb\x00\x75\x3f\x45\xa3\x5e\x8b"
526			  "\xb5\xa0\x3d\x69\x9a\xc6\x50\x07"
527			  "\x27\x2c\x32\xab\x0e\xde\xd1\x63"
528			  "\x1a\x8b\x60\x5a\x43\xff\x5b\xed"
529			  "\x80\x86\x07\x2b\xa1\xe7\xcc\x23"
530			  "\x58\xba\xec\xa1\x34\xc8\x25\xa7",
531	}, {
532		.plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
533		.psize	= 56,
534		.digest	= "\x33\x91\xfd\xdd\xfc\x8d\xc7\x39"
535			  "\x37\x07\xa6\x5b\x1b\x47\x09\x39"
536			  "\x7c\xf8\xb1\xd1\x62\xaf\x05\xab"
537			  "\xfe\x8f\x45\x0d\xe5\xf3\x6b\xc6"
538			  "\xb0\x45\x5a\x85\x20\xbc\x4e\x6f"
539			  "\x5f\xe9\x5b\x1f\xe3\xc8\x45\x2b",
540	}, {
541		.plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"
542			   "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
543		.psize	= 112,
544		.digest	= "\x09\x33\x0c\x33\xf7\x11\x47\xe8"
545			  "\x3d\x19\x2f\xc7\x82\xcd\x1b\x47"
546			  "\x53\x11\x1b\x17\x3b\x3b\x05\xd2"
547			  "\x2f\xa0\x80\x86\xe3\xb0\xf7\x12"
548			  "\xfc\xc7\xc7\x1a\x55\x7e\x2d\xb9"
549			  "\x66\xc3\xe9\xfa\x91\x74\x60\x39",
550	}, {
551		.plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd"
552			   "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz",
553		.psize	= 104,
554		.digest	= "\x3d\x20\x89\x73\xab\x35\x08\xdb"
555			  "\xbd\x7e\x2c\x28\x62\xba\x29\x0a"
556			  "\xd3\x01\x0e\x49\x78\xc1\x98\xdc"
557			  "\x4d\x8f\xd0\x14\xe5\x82\x82\x3a"
558			  "\x89\xe1\x6f\x9b\x2a\x7b\xbc\x1a"
559			  "\xc9\x38\xe2\xd1\x99\xe8\xbe\xa4",
560		.np	= 4,
561		.tap	= { 26, 26, 26, 26 }
562	},
563};
564
565/*
566 * SHA512 test vectors from from NIST and kerneli
567 */
568#define SHA512_TEST_VECTORS	4
569
570static struct hash_testvec sha512_tv_template[] = {
571	{
572		.plaintext = "abc",
573		.psize	= 3,
574		.digest	= "\xdd\xaf\x35\xa1\x93\x61\x7a\xba"
575			  "\xcc\x41\x73\x49\xae\x20\x41\x31"
576			  "\x12\xe6\xfa\x4e\x89\xa9\x7e\xa2"
577			  "\x0a\x9e\xee\xe6\x4b\x55\xd3\x9a"
578			  "\x21\x92\x99\x2a\x27\x4f\xc1\xa8"
579			  "\x36\xba\x3c\x23\xa3\xfe\xeb\xbd"
580			  "\x45\x4d\x44\x23\x64\x3c\xe8\x0e"
581			  "\x2a\x9a\xc9\x4f\xa5\x4c\xa4\x9f",
582	}, {
583		.plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
584		.psize	= 56,
585		.digest	= "\x20\x4a\x8f\xc6\xdd\xa8\x2f\x0a"
586			  "\x0c\xed\x7b\xeb\x8e\x08\xa4\x16"
587			  "\x57\xc1\x6e\xf4\x68\xb2\x28\xa8"
588			  "\x27\x9b\xe3\x31\xa7\x03\xc3\x35"
589			  "\x96\xfd\x15\xc1\x3b\x1b\x07\xf9"
590			  "\xaa\x1d\x3b\xea\x57\x78\x9c\xa0"
591			  "\x31\xad\x85\xc7\xa7\x1d\xd7\x03"
592			  "\x54\xec\x63\x12\x38\xca\x34\x45",
593	}, {
594		.plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"
595			   "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
596		.psize	= 112,
597		.digest	= "\x8e\x95\x9b\x75\xda\xe3\x13\xda"
598			  "\x8c\xf4\xf7\x28\x14\xfc\x14\x3f"
599			  "\x8f\x77\x79\xc6\xeb\x9f\x7f\xa1"
600			  "\x72\x99\xae\xad\xb6\x88\x90\x18"
601			  "\x50\x1d\x28\x9e\x49\x00\xf7\xe4"
602			  "\x33\x1b\x99\xde\xc4\xb5\x43\x3a"
603			  "\xc7\xd3\x29\xee\xb6\xdd\x26\x54"
604			  "\x5e\x96\xe5\x5b\x87\x4b\xe9\x09",
605	}, {
606		.plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd"
607			   "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz",
608		.psize	= 104,
609		.digest	= "\x93\x0d\x0c\xef\xcb\x30\xff\x11"
610			  "\x33\xb6\x89\x81\x21\xf1\xcf\x3d"
611			  "\x27\x57\x8a\xfc\xaf\xe8\x67\x7c"
612			  "\x52\x57\xcf\x06\x99\x11\xf7\x5d"
613			  "\x8f\x58\x31\xb5\x6e\xbf\xda\x67"
614			  "\xb2\x78\xe6\x6d\xff\x8b\x84\xfe"
615			  "\x2b\x28\x70\xf7\x42\xa5\x80\xd8"
616			  "\xed\xb4\x19\x87\x23\x28\x50\xc9",
617		.np	= 4,
618		.tap	= { 26, 26, 26, 26 }
619	},
620};
621
622
623/*
624 * WHIRLPOOL test vectors from Whirlpool package
625 * by Vincent Rijmen and Paulo S. L. M. Barreto as part of the NESSIE
626 * submission
627 */
628#define WP512_TEST_VECTORS	8
629
630static struct hash_testvec wp512_tv_template[] = {
631	{
632		.plaintext = "",
633		.psize	= 0,
634		.digest	= "\x19\xFA\x61\xD7\x55\x22\xA4\x66"
635			  "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26"
636			  "\xC5\x30\x23\x21\x30\xD4\x07\xF8"
637			  "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7"
638			  "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB"
639			  "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57"
640			  "\xEA\x89\x64\xE5\x9B\x63\xD9\x37"
641			  "\x08\xB1\x38\xCC\x42\xA6\x6E\xB3",
642
643
644	}, {
645		.plaintext = "a",
646		.psize	= 1,
647		.digest	= "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F"
648			  "\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
649			  "\xF0\xDF\xF5\x94\x13\x14\x5E\x69"
650			  "\x73\xC4\x50\x01\xD0\x08\x7B\x42"
651			  "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6"
652			  "\x3A\x42\x39\x1A\x39\x14\x5A\x59"
653			  "\x1A\x92\x20\x0D\x56\x01\x95\xE5"
654			  "\x3B\x47\x85\x84\xFD\xAE\x23\x1A",
655	}, {
656		.plaintext = "abc",
657		.psize	= 3,
658		.digest	= "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB"
659			  "\x16\xB6\x56\x2C\x73\xB4\x02\x0B"
660			  "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72"
661			  "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C"
662			  "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27"
663			  "\x7D\x0E\x34\x95\x71\x14\xCB\xD6"
664			  "\xC7\x97\xFC\x9D\x95\xD8\xB5\x82"
665			  "\xD2\x25\x29\x20\x76\xD4\xEE\xF5",
666	}, {
667		.plaintext = "message digest",
668		.psize	= 14,
669		.digest	= "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6"
670			  "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC"
671			  "\x83\x8D\x00\x03\x22\x30\xF5\x3C"
672			  "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B"
673			  "\x84\x21\x55\x76\x59\xEF\x55\xC1"
674			  "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6"
675			  "\x92\xED\x92\x00\x52\x83\x8F\x33"
676			  "\x62\xE8\x6D\xBD\x37\xA8\x90\x3E",
677	}, {
678		.plaintext = "abcdefghijklmnopqrstuvwxyz",
679		.psize	= 26,
680		.digest	= "\xF1\xD7\x54\x66\x26\x36\xFF\xE9"
681			  "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A"
682			  "\x8D\x38\x63\x1E\xAD\x42\x38\xF5"
683			  "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B"
684			  "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A"
685			  "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6"
686			  "\xF6\x8F\x67\x3E\x72\x07\x86\x5D"
687			  "\x5D\x98\x19\xA3\xDB\xA4\xEB\x3B",
688	}, {
689		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
690			   "abcdefghijklmnopqrstuvwxyz0123456789",
691		.psize	= 62,
692		.digest	= "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B"
693			  "\xF1\x1F\x00\xED\x9A\xBA\x26\x90"
694			  "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC"
695			  "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E"
696			  "\x08\xEB\xA2\x66\x29\x12\x9D\x8F"
697			  "\xB7\xCB\x57\x21\x1B\x92\x81\xA6"
698			  "\x55\x17\xCC\x87\x9D\x7B\x96\x21"
699			  "\x42\xC6\x5F\x5A\x7A\xF0\x14\x67",
700	}, {
701		.plaintext = "1234567890123456789012345678901234567890"
702			   "1234567890123456789012345678901234567890",
703		.psize	= 80,
704		.digest	= "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D"
705			  "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0"
706			  "\x87\x84\x37\x2B\xCC\xB2\x04\xD6"
707			  "\x54\x9C\x4A\xFA\xDB\x60\x14\x29"
708			  "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5"
709			  "\x38\xCD\x04\x7B\x26\x81\xA5\x1A"
710			  "\x2C\x60\x48\x1E\x88\xC5\xA2\x0B"
711			  "\x2C\x2A\x80\xCF\x3A\x9A\x08\x3B",
712	}, {
713		.plaintext = "abcdbcdecdefdefgefghfghighijhijk",
714		.psize	= 32,
715		.digest	= "\x2A\x98\x7E\xA4\x0F\x91\x70\x61"
716			  "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48"
717			  "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62"
718			  "\x07\xC5\x62\xF9\x88\xE9\x5C\x69"
719			  "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B"
720			  "\x7B\x94\x76\x39\xFE\x05\x0B\x56"
721			  "\x93\x9B\xAA\xA0\xAD\xFF\x9A\xE6"
722			  "\x74\x5B\x7B\x18\x1C\x3B\xE3\xFD",
723	},
724};
725
726#define WP384_TEST_VECTORS	8
727
728static struct hash_testvec wp384_tv_template[] = {
729	{
730		.plaintext = "",
731		.psize	= 0,
732		.digest	= "\x19\xFA\x61\xD7\x55\x22\xA4\x66"
733			  "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26"
734			  "\xC5\x30\x23\x21\x30\xD4\x07\xF8"
735			  "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7"
736			  "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB"
737			  "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57",
738
739
740	}, {
741		.plaintext = "a",
742		.psize	= 1,
743		.digest	= "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F"
744			  "\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
745			  "\xF0\xDF\xF5\x94\x13\x14\x5E\x69"
746			  "\x73\xC4\x50\x01\xD0\x08\x7B\x42"
747			  "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6"
748			  "\x3A\x42\x39\x1A\x39\x14\x5A\x59",
749	}, {
750		.plaintext = "abc",
751		.psize	= 3,
752		.digest	= "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB"
753			  "\x16\xB6\x56\x2C\x73\xB4\x02\x0B"
754			  "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72"
755			  "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C"
756			  "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27"
757			  "\x7D\x0E\x34\x95\x71\x14\xCB\xD6",
758	}, {
759		.plaintext = "message digest",
760		.psize	= 14,
761		.digest	= "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6"
762			  "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC"
763			  "\x83\x8D\x00\x03\x22\x30\xF5\x3C"
764			  "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B"
765			  "\x84\x21\x55\x76\x59\xEF\x55\xC1"
766			  "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6",
767	}, {
768		.plaintext = "abcdefghijklmnopqrstuvwxyz",
769		.psize	= 26,
770		.digest	= "\xF1\xD7\x54\x66\x26\x36\xFF\xE9"
771			  "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A"
772			  "\x8D\x38\x63\x1E\xAD\x42\x38\xF5"
773			  "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B"
774			  "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A"
775			  "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6",
776	}, {
777		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
778			   "abcdefghijklmnopqrstuvwxyz0123456789",
779		.psize	= 62,
780		.digest	= "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B"
781			  "\xF1\x1F\x00\xED\x9A\xBA\x26\x90"
782			  "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC"
783			  "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E"
784			  "\x08\xEB\xA2\x66\x29\x12\x9D\x8F"
785			  "\xB7\xCB\x57\x21\x1B\x92\x81\xA6",
786	}, {
787		.plaintext = "1234567890123456789012345678901234567890"
788			   "1234567890123456789012345678901234567890",
789		.psize	= 80,
790		.digest	= "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D"
791			  "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0"
792			  "\x87\x84\x37\x2B\xCC\xB2\x04\xD6"
793			  "\x54\x9C\x4A\xFA\xDB\x60\x14\x29"
794			  "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5"
795			  "\x38\xCD\x04\x7B\x26\x81\xA5\x1A",
796	}, {
797		.plaintext = "abcdbcdecdefdefgefghfghighijhijk",
798		.psize	= 32,
799		.digest	= "\x2A\x98\x7E\xA4\x0F\x91\x70\x61"
800			  "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48"
801			  "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62"
802			  "\x07\xC5\x62\xF9\x88\xE9\x5C\x69"
803			  "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B"
804			  "\x7B\x94\x76\x39\xFE\x05\x0B\x56",
805	},
806};
807
808#define WP256_TEST_VECTORS	8
809
810static struct hash_testvec wp256_tv_template[] = {
811	{
812		.plaintext = "",
813		.psize	= 0,
814		.digest	= "\x19\xFA\x61\xD7\x55\x22\xA4\x66"
815			  "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26"
816			  "\xC5\x30\x23\x21\x30\xD4\x07\xF8"
817			  "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7",
818
819
820	}, {
821		.plaintext = "a",
822		.psize	= 1,
823		.digest	= "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F"
824			  "\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
825			  "\xF0\xDF\xF5\x94\x13\x14\x5E\x69"
826			  "\x73\xC4\x50\x01\xD0\x08\x7B\x42",
827	}, {
828		.plaintext = "abc",
829		.psize	= 3,
830		.digest	= "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB"
831			  "\x16\xB6\x56\x2C\x73\xB4\x02\x0B"
832			  "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72"
833			  "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C",
834	}, {
835		.plaintext = "message digest",
836		.psize	= 14,
837		.digest	= "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6"
838			  "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC"
839			  "\x83\x8D\x00\x03\x22\x30\xF5\x3C"
840			  "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B",
841	}, {
842		.plaintext = "abcdefghijklmnopqrstuvwxyz",
843		.psize	= 26,
844		.digest	= "\xF1\xD7\x54\x66\x26\x36\xFF\xE9"
845			  "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A"
846			  "\x8D\x38\x63\x1E\xAD\x42\x38\xF5"
847			  "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B",
848	}, {
849		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
850			   "abcdefghijklmnopqrstuvwxyz0123456789",
851		.psize	= 62,
852		.digest	= "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B"
853			  "\xF1\x1F\x00\xED\x9A\xBA\x26\x90"
854			  "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC"
855			  "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E",
856	}, {
857		.plaintext = "1234567890123456789012345678901234567890"
858			   "1234567890123456789012345678901234567890",
859		.psize	= 80,
860		.digest	= "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D"
861			  "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0"
862			  "\x87\x84\x37\x2B\xCC\xB2\x04\xD6"
863			  "\x54\x9C\x4A\xFA\xDB\x60\x14\x29",
864	}, {
865		.plaintext = "abcdbcdecdefdefgefghfghighijhijk",
866		.psize	= 32,
867		.digest	= "\x2A\x98\x7E\xA4\x0F\x91\x70\x61"
868			  "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48"
869			  "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62"
870			  "\x07\xC5\x62\xF9\x88\xE9\x5C\x69",
871	},
872};
873
874/*
875 * TIGER test vectors from Tiger website
876 */
877#define TGR192_TEST_VECTORS	6
878
879static struct hash_testvec tgr192_tv_template[] = {
880	{
881		.plaintext = "",
882		.psize	= 0,
883		.digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32"
884			  "\x16\x16\x6e\x76\xb1\xbb\x92\x5f"
885			  "\xf3\x73\xde\x2d\x49\x58\x4e\x7a",
886	}, {
887		.plaintext = "abc",
888		.psize	= 3,
889		.digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a"
890			  "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf"
891			  "\x93\x5f\x7b\x95\x1c\x13\x29\x51",
892	}, {
893		.plaintext = "Tiger",
894		.psize	= 5,
895		.digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd"
896			  "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec"
897			  "\x37\x79\x0c\x11\x6f\x9d\x2b\xdf",
898	}, {
899		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-",
900		.psize	= 64,
901		.digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7"
902			  "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e"
903			  "\xb5\x86\x44\x50\x34\xa5\xa3\x86",
904	}, {
905		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789",
906		.psize	= 64,
907		.digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48"
908			  "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9"
909			  "\x57\x89\x65\x65\x97\x5f\x91\x97",
910	}, {
911		.plaintext = "Tiger - A Fast New Hash Function, "
912			   "by Ross Anderson and Eli Biham, "
913			   "proceedings of Fast Software Encryption 3, "
914			   "Cambridge, 1996.",
915		.psize  = 125,
916		.digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63"
917			  "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24"
918			  "\xdd\x68\x15\x1d\x50\x39\x74\xfc",
919	},
920};
921
922#define TGR160_TEST_VECTORS	6
923
924static struct hash_testvec tgr160_tv_template[] = {
925	{
926		.plaintext = "",
927		.psize	= 0,
928		.digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32"
929			  "\x16\x16\x6e\x76\xb1\xbb\x92\x5f"
930			  "\xf3\x73\xde\x2d",
931	}, {
932		.plaintext = "abc",
933		.psize	= 3,
934		.digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a"
935			  "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf"
936			  "\x93\x5f\x7b\x95",
937	}, {
938		.plaintext = "Tiger",
939		.psize	= 5,
940		.digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd"
941			  "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec"
942			  "\x37\x79\x0c\x11",
943	}, {
944		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-",
945		.psize	= 64,
946		.digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7"
947			  "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e"
948			  "\xb5\x86\x44\x50",
949	}, {
950		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789",
951		.psize	= 64,
952		.digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48"
953			  "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9"
954			  "\x57\x89\x65\x65",
955	}, {
956		.plaintext = "Tiger - A Fast New Hash Function, "
957			   "by Ross Anderson and Eli Biham, "
958			   "proceedings of Fast Software Encryption 3, "
959			   "Cambridge, 1996.",
960		.psize  = 125,
961		.digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63"
962			  "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24"
963			  "\xdd\x68\x15\x1d",
964	},
965};
966
967#define TGR128_TEST_VECTORS	6
968
969static struct hash_testvec tgr128_tv_template[] = {
970	{
971		.plaintext = "",
972		.psize	= 0,
973		.digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32"
974			  "\x16\x16\x6e\x76\xb1\xbb\x92\x5f",
975	}, {
976		.plaintext = "abc",
977		.psize	= 3,
978		.digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a"
979			  "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf",
980	}, {
981		.plaintext = "Tiger",
982		.psize	= 5,
983		.digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd"
984			  "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec",
985	}, {
986		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-",
987		.psize	= 64,
988		.digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7"
989			  "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e",
990	}, {
991		.plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789",
992		.psize	= 64,
993		.digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48"
994			  "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9",
995	}, {
996		.plaintext = "Tiger - A Fast New Hash Function, "
997			   "by Ross Anderson and Eli Biham, "
998			   "proceedings of Fast Software Encryption 3, "
999			   "Cambridge, 1996.",
1000		.psize  = 125,
1001		.digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63"
1002			  "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24",
1003	},
1004};
1005
1006#define GHASH_TEST_VECTORS 1
1007
1008static struct hash_testvec ghash_tv_template[] =
1009{
1010	{
1011
1012		.key	= "\xdf\xa6\xbf\x4d\xed\x81\xdb\x03\xff\xca\xff\x95\xf8\x30\xf0\x61",
1013		.ksize	= 16,
1014		.plaintext = "\x95\x2b\x2a\x56\xa5\x60\x04a\xc0\xb3\x2b\x66\x56\xa0\x5b\x40\xb6",
1015		.psize	= 16,
1016		.digest	= "\xda\x53\xeb\x0a\xd2\xc5\x5b\xb6"
1017			  "\x4f\xc4\x80\x2c\xc3\xfe\xda\x60",
1018	},
1019};
1020
1021/*
1022 * HMAC-MD5 test vectors from RFC2202
1023 * (These need to be fixed to not use strlen).
1024 */
1025#define HMAC_MD5_TEST_VECTORS	7
1026
1027static struct hash_testvec hmac_md5_tv_template[] =
1028{
1029	{
1030		.key	= "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1031		.ksize	= 16,
1032		.plaintext = "Hi There",
1033		.psize	= 8,
1034		.digest	= "\x92\x94\x72\x7a\x36\x38\xbb\x1c"
1035			  "\x13\xf4\x8e\xf8\x15\x8b\xfc\x9d",
1036	}, {
1037		.key	= "Jefe",
1038		.ksize	= 4,
1039		.plaintext = "what do ya want for nothing?",
1040		.psize	= 28,
1041		.digest	= "\x75\x0c\x78\x3e\x6a\xb0\xb5\x03"
1042			  "\xea\xa8\x6e\x31\x0a\x5d\xb7\x38",
1043		.np	= 2,
1044		.tap	= {14, 14}
1045	}, {
1046		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1047		.ksize	= 16,
1048		.plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1049			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1050			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1051			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1052		.psize	= 50,
1053		.digest	= "\x56\xbe\x34\x52\x1d\x14\x4c\x88"
1054			  "\xdb\xb8\xc7\x33\xf0\xe8\xb3\xf6",
1055	}, {
1056		.key	= "\x01\x02\x03\x04\x05\x06\x07\x08"
1057			  "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1058			  "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1059		.ksize	= 25,
1060		.plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1061			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1062			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1063			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1064		.psize	= 50,
1065		.digest	= "\x69\x7e\xaf\x0a\xca\x3a\x3a\xea"
1066			  "\x3a\x75\x16\x47\x46\xff\xaa\x79",
1067	}, {
1068		.key	= "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1069		.ksize	= 16,
1070		.plaintext = "Test With Truncation",
1071		.psize	= 20,
1072		.digest	= "\x56\x46\x1e\xf2\x34\x2e\xdc\x00"
1073			  "\xf9\xba\xb9\x95\x69\x0e\xfd\x4c",
1074	}, {
1075		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1076			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1077			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1078			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1079			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1080			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1081			"\xaa\xaa",
1082		.ksize	= 80,
1083		.plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1084		.psize	= 54,
1085		.digest	= "\x6b\x1a\xb7\xfe\x4b\xd7\xbf\x8f"
1086			  "\x0b\x62\xe6\xce\x61\xb9\xd0\xcd",
1087	}, {
1088		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1089			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1090			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1091			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1092			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1093			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1094			"\xaa\xaa",
1095		.ksize	= 80,
1096		.plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1097			   "Block-Size Data",
1098		.psize	= 73,
1099		.digest	= "\x6f\x63\x0f\xad\x67\xcd\xa0\xee"
1100			  "\x1f\xb1\xf5\x62\xdb\x3a\xa5\x3e",
1101	},
1102};
1103
1104/*
1105 * HMAC-RIPEMD128 test vectors from RFC2286
1106 */
1107#define HMAC_RMD128_TEST_VECTORS	7
1108
1109static struct hash_testvec hmac_rmd128_tv_template[] = {
1110	{
1111		.key	= "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1112		.ksize	= 16,
1113		.plaintext = "Hi There",
1114		.psize	= 8,
1115		.digest	= "\xfb\xf6\x1f\x94\x92\xaa\x4b\xbf"
1116			  "\x81\xc1\x72\xe8\x4e\x07\x34\xdb",
1117	}, {
1118		.key	= "Jefe",
1119		.ksize	= 4,
1120		.plaintext = "what do ya want for nothing?",
1121		.psize	= 28,
1122		.digest	= "\x87\x5f\x82\x88\x62\xb6\xb3\x34"
1123			  "\xb4\x27\xc5\x5f\x9f\x7f\xf0\x9b",
1124		.np	= 2,
1125		.tap	= { 14, 14 },
1126	}, {
1127		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1128		.ksize	= 16,
1129		.plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1130			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1131			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1132			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1133		.psize	= 50,
1134		.digest	= "\x09\xf0\xb2\x84\x6d\x2f\x54\x3d"
1135			  "\xa3\x63\xcb\xec\x8d\x62\xa3\x8d",
1136	}, {
1137		.key	= "\x01\x02\x03\x04\x05\x06\x07\x08"
1138			  "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1139			  "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1140		.ksize	= 25,
1141		.plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1142			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1143			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1144			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1145		.psize	= 50,
1146		.digest	= "\xbd\xbb\xd7\xcf\x03\xe4\x4b\x5a"
1147			  "\xa6\x0a\xf8\x15\xbe\x4d\x22\x94",
1148	}, {
1149		.key	= "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1150		.ksize	= 16,
1151		.plaintext = "Test With Truncation",
1152		.psize	= 20,
1153		.digest	= "\xe7\x98\x08\xf2\x4b\x25\xfd\x03"
1154			  "\x1c\x15\x5f\x0d\x55\x1d\x9a\x3a",
1155	}, {
1156		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1157			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1158			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1159			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1160			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1161			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1162			"\xaa\xaa",
1163		.ksize	= 80,
1164		.plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1165		.psize	= 54,
1166		.digest	= "\xdc\x73\x29\x28\xde\x98\x10\x4a"
1167			  "\x1f\x59\xd3\x73\xc1\x50\xac\xbb",
1168	}, {
1169		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1170			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1171			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1172			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1173			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1174			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1175			"\xaa\xaa",
1176		.ksize	= 80,
1177		.plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1178			   "Block-Size Data",
1179		.psize	= 73,
1180		.digest	= "\x5c\x6b\xec\x96\x79\x3e\x16\xd4"
1181			  "\x06\x90\xc2\x37\x63\x5f\x30\xc5",
1182	},
1183};
1184
1185/*
1186 * HMAC-RIPEMD160 test vectors from RFC2286
1187 */
1188#define HMAC_RMD160_TEST_VECTORS	7
1189
1190static struct hash_testvec hmac_rmd160_tv_template[] = {
1191	{
1192		.key	= "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1193		.ksize	= 20,
1194		.plaintext = "Hi There",
1195		.psize	= 8,
1196		.digest	= "\x24\xcb\x4b\xd6\x7d\x20\xfc\x1a\x5d\x2e"
1197			  "\xd7\x73\x2d\xcc\x39\x37\x7f\x0a\x56\x68",
1198	}, {
1199		.key	= "Jefe",
1200		.ksize	= 4,
1201		.plaintext = "what do ya want for nothing?",
1202		.psize	= 28,
1203		.digest	= "\xdd\xa6\xc0\x21\x3a\x48\x5a\x9e\x24\xf4"
1204			  "\x74\x20\x64\xa7\xf0\x33\xb4\x3c\x40\x69",
1205		.np	= 2,
1206		.tap	= { 14, 14 },
1207	}, {
1208		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1209		.ksize	= 20,
1210		.plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1211			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1212			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1213			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1214		.psize	= 50,
1215		.digest	= "\xb0\xb1\x05\x36\x0d\xe7\x59\x96\x0a\xb4"
1216			  "\xf3\x52\x98\xe1\x16\xe2\x95\xd8\xe7\xc1",
1217	}, {
1218		.key	= "\x01\x02\x03\x04\x05\x06\x07\x08"
1219			  "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1220			  "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1221		.ksize	= 25,
1222		.plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1223			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1224			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1225			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1226		.psize	= 50,
1227		.digest	= "\xd5\xca\x86\x2f\x4d\x21\xd5\xe6\x10\xe1"
1228			  "\x8b\x4c\xf1\xbe\xb9\x7a\x43\x65\xec\xf4",
1229	}, {
1230		.key	= "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1231		.ksize	= 20,
1232		.plaintext = "Test With Truncation",
1233		.psize	= 20,
1234		.digest	= "\x76\x19\x69\x39\x78\xf9\x1d\x90\x53\x9a"
1235			  "\xe7\x86\x50\x0f\xf3\xd8\xe0\x51\x8e\x39",
1236	}, {
1237		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1238			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1239			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1240			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1241			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1242			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1243			"\xaa\xaa",
1244		.ksize	= 80,
1245		.plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1246		.psize	= 54,
1247		.digest	= "\x64\x66\xca\x07\xac\x5e\xac\x29\xe1\xbd"
1248			  "\x52\x3e\x5a\xda\x76\x05\xb7\x91\xfd\x8b",
1249	}, {
1250		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1251			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1252			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1253			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1254			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1255			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1256			"\xaa\xaa",
1257		.ksize	= 80,
1258		.plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1259			   "Block-Size Data",
1260		.psize	= 73,
1261		.digest	= "\x69\xea\x60\x79\x8d\x71\x61\x6c\xce\x5f"
1262			  "\xd0\x87\x1e\x23\x75\x4c\xd7\x5d\x5a\x0a",
1263	},
1264};
1265
1266/*
1267 * HMAC-SHA1 test vectors from RFC2202
1268 */
1269#define HMAC_SHA1_TEST_VECTORS	7
1270
1271static struct hash_testvec hmac_sha1_tv_template[] = {
1272	{
1273		.key	= "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1274		.ksize	= 20,
1275		.plaintext = "Hi There",
1276		.psize	= 8,
1277		.digest	= "\xb6\x17\x31\x86\x55\x05\x72\x64"
1278			  "\xe2\x8b\xc0\xb6\xfb\x37\x8c\x8e\xf1"
1279			  "\x46\xbe",
1280	}, {
1281		.key	= "Jefe",
1282		.ksize	= 4,
1283		.plaintext = "what do ya want for nothing?",
1284		.psize	= 28,
1285		.digest	= "\xef\xfc\xdf\x6a\xe5\xeb\x2f\xa2\xd2\x74"
1286			  "\x16\xd5\xf1\x84\xdf\x9c\x25\x9a\x7c\x79",
1287		.np	= 2,
1288		.tap	= { 14, 14 }
1289	}, {
1290		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1291		.ksize	= 20,
1292		.plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1293			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1294			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1295			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1296		.psize	= 50,
1297		.digest	= "\x12\x5d\x73\x42\xb9\xac\x11\xcd\x91\xa3"
1298			  "\x9a\xf4\x8a\xa1\x7b\x4f\x63\xf1\x75\xd3",
1299	}, {
1300		.key	= "\x01\x02\x03\x04\x05\x06\x07\x08"
1301			  "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1302			  "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1303		.ksize	= 25,
1304		.plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1305			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1306			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1307			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1308		.psize	= 50,
1309		.digest	= "\x4c\x90\x07\xf4\x02\x62\x50\xc6\xbc\x84"
1310			  "\x14\xf9\xbf\x50\xc8\x6c\x2d\x72\x35\xda",
1311	}, {
1312		.key	= "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1313		.ksize	= 20,
1314		.plaintext = "Test With Truncation",
1315		.psize	= 20,
1316		.digest	= "\x4c\x1a\x03\x42\x4b\x55\xe0\x7f\xe7\xf2"
1317			  "\x7b\xe1\xd5\x8b\xb9\x32\x4a\x9a\x5a\x04",
1318	}, {
1319		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1320			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1321			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1322			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1323			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1324			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1325			"\xaa\xaa",
1326		.ksize	= 80,
1327		.plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1328		.psize	= 54,
1329		.digest	= "\xaa\x4a\xe5\xe1\x52\x72\xd0\x0e\x95\x70"
1330			  "\x56\x37\xce\x8a\x3b\x55\xed\x40\x21\x12",
1331	}, {
1332		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1333			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1334			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1335			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1336			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1337			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1338			"\xaa\xaa",
1339		.ksize	= 80,
1340		.plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1341			   "Block-Size Data",
1342		.psize	= 73,
1343		.digest	= "\xe8\xe9\x9d\x0f\x45\x23\x7d\x78\x6d\x6b"
1344			  "\xba\xa7\x96\x5c\x78\x08\xbb\xff\x1a\x91",
1345	},
1346};
1347
1348
1349/*
1350 * SHA224 HMAC test vectors from RFC4231
1351 */
1352#define HMAC_SHA224_TEST_VECTORS    4
1353
1354static struct hash_testvec hmac_sha224_tv_template[] = {
1355	{
1356		.key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1357			"\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1358			"\x0b\x0b\x0b\x0b",
1359		.ksize  = 20,
1360		/*  ("Hi There") */
1361		.plaintext = "\x48\x69\x20\x54\x68\x65\x72\x65",
1362		.psize  = 8,
1363		.digest = "\x89\x6f\xb1\x12\x8a\xbb\xdf\x19"
1364			"\x68\x32\x10\x7c\xd4\x9d\xf3\x3f"
1365			"\x47\xb4\xb1\x16\x99\x12\xba\x4f"
1366			"\x53\x68\x4b\x22",
1367	}, {
1368		.key    = "Jefe",
1369		.ksize  = 4,
1370		/* ("what do ya want for nothing?") */
1371		.plaintext = "\x77\x68\x61\x74\x20\x64\x6f\x20"
1372			"\x79\x61\x20\x77\x61\x6e\x74\x20"
1373			"\x66\x6f\x72\x20\x6e\x6f\x74\x68"
1374			"\x69\x6e\x67\x3f",
1375		.psize  = 28,
1376		.digest = "\xa3\x0e\x01\x09\x8b\xc6\xdb\xbf"
1377			"\x45\x69\x0f\x3a\x7e\x9e\x6d\x0f"
1378			"\x8b\xbe\xa2\xa3\x9e\x61\x48\x00"
1379			"\x8f\xd0\x5e\x44",
1380		.np = 4,
1381		.tap    = { 7, 7, 7, 7 }
1382	}, {
1383		.key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1384			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1385			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1386			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1387			"\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",
1400		.ksize  = 131,
1401		/* ("Test Using Larger Than Block-Size Key - Hash Key First") */
1402		.plaintext = "\x54\x65\x73\x74\x20\x55\x73\x69"
1403			"\x6e\x67\x20\x4c\x61\x72\x67\x65"
1404			"\x72\x20\x54\x68\x61\x6e\x20\x42"
1405			"\x6c\x6f\x63\x6b\x2d\x53\x69\x7a"
1406			"\x65\x20\x4b\x65\x79\x20\x2d\x20"
1407			"\x48\x61\x73\x68\x20\x4b\x65\x79"
1408			"\x20\x46\x69\x72\x73\x74",
1409		.psize  = 54,
1410		.digest = "\x95\xe9\xa0\xdb\x96\x20\x95\xad"
1411			"\xae\xbe\x9b\x2d\x6f\x0d\xbc\xe2"
1412			"\xd4\x99\xf1\x12\xf2\xd2\xb7\x27"
1413			"\x3f\xa6\x87\x0e",
1414	}, {
1415		.key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1416			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1417			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1418			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1419			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1420			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1421			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1422			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1423			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1424			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1425			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1426			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1427			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1428			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1429			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1430			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1431			"\xaa\xaa\xaa",
1432		.ksize  = 131,
1433		/* ("This is a test using a larger than block-size key and a")
1434		(" larger than block-size data. The key needs to be")
1435			(" hashed before being used by the HMAC algorithm.") */
1436		.plaintext = "\x54\x68\x69\x73\x20\x69\x73\x20"
1437			"\x61\x20\x74\x65\x73\x74\x20\x75"
1438			"\x73\x69\x6e\x67\x20\x61\x20\x6c"
1439			"\x61\x72\x67\x65\x72\x20\x74\x68"
1440			"\x61\x6e\x20\x62\x6c\x6f\x63\x6b"
1441			"\x2d\x73\x69\x7a\x65\x20\x6b\x65"
1442			"\x79\x20\x61\x6e\x64\x20\x61\x20"
1443			"\x6c\x61\x72\x67\x65\x72\x20\x74"
1444			"\x68\x61\x6e\x20\x62\x6c\x6f\x63"
1445			"\x6b\x2d\x73\x69\x7a\x65\x20\x64"
1446			"\x61\x74\x61\x2e\x20\x54\x68\x65"
1447			"\x20\x6b\x65\x79\x20\x6e\x65\x65"
1448			"\x64\x73\x20\x74\x6f\x20\x62\x65"
1449			"\x20\x68\x61\x73\x68\x65\x64\x20"
1450			"\x62\x65\x66\x6f\x72\x65\x20\x62"
1451			"\x65\x69\x6e\x67\x20\x75\x73\x65"
1452			"\x64\x20\x62\x79\x20\x74\x68\x65"
1453			"\x20\x48\x4d\x41\x43\x20\x61\x6c"
1454			"\x67\x6f\x72\x69\x74\x68\x6d\x2e",
1455		.psize  = 152,
1456		.digest = "\x3a\x85\x41\x66\xac\x5d\x9f\x02"
1457			"\x3f\x54\xd5\x17\xd0\xb3\x9d\xbd"
1458			"\x94\x67\x70\xdb\x9c\x2b\x95\xc9"
1459			"\xf6\xf5\x65\xd1",
1460	},
1461};
1462
1463/*
1464 * HMAC-SHA256 test vectors from
1465 * draft-ietf-ipsec-ciph-sha-256-01.txt
1466 */
1467#define HMAC_SHA256_TEST_VECTORS	10
1468
1469static struct hash_testvec hmac_sha256_tv_template[] = {
1470	{
1471		.key	= "\x01\x02\x03\x04\x05\x06\x07\x08"
1472			  "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1473			  "\x11\x12\x13\x14\x15\x16\x17\x18"
1474			  "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20",
1475		.ksize	= 32,
1476		.plaintext = "abc",
1477		.psize	= 3,
1478		.digest	= "\xa2\x1b\x1f\x5d\x4c\xf4\xf7\x3a"
1479			  "\x4d\xd9\x39\x75\x0f\x7a\x06\x6a"
1480			  "\x7f\x98\xcc\x13\x1c\xb1\x6a\x66"
1481			  "\x92\x75\x90\x21\xcf\xab\x81\x81",
1482	}, {
1483		.key	= "\x01\x02\x03\x04\x05\x06\x07\x08"
1484			  "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1485			  "\x11\x12\x13\x14\x15\x16\x17\x18"
1486			  "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20",
1487		.ksize	= 32,
1488		.plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1489		.psize	= 56,
1490		.digest	= "\x10\x4f\xdc\x12\x57\x32\x8f\x08"
1491			  "\x18\x4b\xa7\x31\x31\xc5\x3c\xae"
1492			  "\xe6\x98\xe3\x61\x19\x42\x11\x49"
1493			  "\xea\x8c\x71\x24\x56\x69\x7d\x30",
1494	}, {
1495		.key	= "\x01\x02\x03\x04\x05\x06\x07\x08"
1496			  "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1497			  "\x11\x12\x13\x14\x15\x16\x17\x18"
1498			  "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20",
1499		.ksize	= 32,
1500		.plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"
1501			   "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1502		.psize	= 112,
1503		.digest	= "\x47\x03\x05\xfc\x7e\x40\xfe\x34"
1504			  "\xd3\xee\xb3\xe7\x73\xd9\x5a\xab"
1505			  "\x73\xac\xf0\xfd\x06\x04\x47\xa5"
1506			  "\xeb\x45\x95\xbf\x33\xa9\xd1\xa3",
1507	}, {
1508		.key	= "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1509			"\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1510			"\x0b\x0b\x0b\x0b\x0b\x0b",
1511		.ksize	= 32,
1512		.plaintext = "Hi There",
1513		.psize	= 8,
1514		.digest	= "\x19\x8a\x60\x7e\xb4\x4b\xfb\xc6"
1515			  "\x99\x03\xa0\xf1\xcf\x2b\xbd\xc5"
1516			  "\xba\x0a\xa3\xf3\xd9\xae\x3c\x1c"
1517			  "\x7a\x3b\x16\x96\xa0\xb6\x8c\xf7",
1518	}, {
1519		.key	= "Jefe",
1520		.ksize	= 4,
1521		.plaintext = "what do ya want for nothing?",
1522		.psize	= 28,
1523		.digest	= "\x5b\xdc\xc1\x46\xbf\x60\x75\x4e"
1524			  "\x6a\x04\x24\x26\x08\x95\x75\xc7"
1525			  "\x5a\x00\x3f\x08\x9d\x27\x39\x83"
1526			  "\x9d\xec\x58\xb9\x64\xec\x38\x43",
1527		.np	= 2,
1528		.tap	= { 14, 14 }
1529	}, {
1530		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1531			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1532			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1533		.ksize	= 32,
1534		.plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1535			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1536			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1537			"\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1538		.psize	= 50,
1539		.digest	= "\xcd\xcb\x12\x20\xd1\xec\xcc\xea"
1540			  "\x91\xe5\x3a\xba\x30\x92\xf9\x62"
1541			  "\xe5\x49\xfe\x6c\xe9\xed\x7f\xdc"
1542			  "\x43\x19\x1f\xbd\xe4\x5c\x30\xb0",
1543	}, {
1544		.key	= "\x01\x02\x03\x04\x05\x06\x07\x08"
1545			  "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1546			  "\x11\x12\x13\x14\x15\x16\x17\x18"
1547			  "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
1548			  "\x21\x22\x23\x24\x25",
1549		.ksize	= 37,
1550		.plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1551			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1552			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1553			"\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1554		.psize	= 50,
1555		.digest	= "\xd4\x63\x3c\x17\xf6\xfb\x8d\x74"
1556			  "\x4c\x66\xde\xe0\xf8\xf0\x74\x55"
1557			  "\x6e\xc4\xaf\x55\xef\x07\x99\x85"
1558			  "\x41\x46\x8e\xb4\x9b\xd2\xe9\x17",
1559	}, {
1560		.key	= "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c"
1561			"\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c"
1562			"\x0c\x0c\x0c\x0c\x0c\x0c",
1563		.ksize	= 32,
1564		.plaintext = "Test With Truncation",
1565		.psize	= 20,
1566		.digest	= "\x75\x46\xaf\x01\x84\x1f\xc0\x9b"
1567			  "\x1a\xb9\xc3\x74\x9a\x5f\x1c\x17"
1568			  "\xd4\xf5\x89\x66\x8a\x58\x7b\x27"
1569			  "\x00\xa9\xc9\x7c\x11\x93\xcf\x42",
1570	}, {
1571		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1572			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1573			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1574			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1575			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1576			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1577			"\xaa\xaa",
1578		.ksize	= 80,
1579		.plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1580		.psize	= 54,
1581		.digest	= "\x69\x53\x02\x5e\xd9\x6f\x0c\x09"
1582			  "\xf8\x0a\x96\xf7\x8e\x65\x38\xdb"
1583			  "\xe2\xe7\xb8\x20\xe3\xdd\x97\x0e"
1584			  "\x7d\xdd\x39\x09\x1b\x32\x35\x2f",
1585	}, {
1586		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1587			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1588			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1589			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1590			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1591			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1592			"\xaa\xaa",
1593		.ksize	= 80,
1594		.plaintext = "Test Using Larger Than Block-Size Key and Larger Than "
1595			   "One Block-Size Data",
1596		.psize	= 73,
1597		.digest	= "\x63\x55\xac\x22\xe8\x90\xd0\xa3"
1598			  "\xc8\x48\x1a\x5c\xa4\x82\x5b\xc8"
1599			  "\x84\xd3\xe7\xa1\xff\x98\xa2\xfc"
1600			  "\x2a\xc7\xd8\xe0\x64\xc3\xb2\xe6",
1601	},
1602};
1603
1604#define XCBC_AES_TEST_VECTORS 6
1605
1606static struct hash_testvec aes_xcbc128_tv_template[] = {
1607	{
1608		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
1609			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1610		.plaintext = zeroed_string,
1611		.digest = "\x75\xf0\x25\x1d\x52\x8a\xc0\x1c"
1612			  "\x45\x73\xdf\xd5\x84\xd7\x9f\x29",
1613		.psize	= 0,
1614		.ksize	= 16,
1615	}, {
1616		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
1617			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1618		.plaintext = "\x00\x01\x02",
1619		.digest	= "\x5b\x37\x65\x80\xae\x2f\x19\xaf"
1620			  "\xe7\x21\x9c\xee\xf1\x72\x75\x6f",
1621		.psize	= 3,
1622		.ksize	= 16,
1623	} , {
1624		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
1625			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1626		.plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1627			     "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1628		.digest = "\xd2\xa2\x46\xfa\x34\x9b\x68\xa7"
1629			  "\x99\x98\xa4\x39\x4f\xf7\xa2\x63",
1630		.psize	= 16,
1631		.ksize	= 16,
1632	}, {
1633		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
1634			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1635		.plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1636			     "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1637			     "\x10\x11\x12\x13",
1638		.digest = "\x47\xf5\x1b\x45\x64\x96\x62\x15"
1639			  "\xb8\x98\x5c\x63\x05\x5e\xd3\x08",
1640		.tap	= { 10, 10 },
1641		.psize	= 20,
1642		.np	= 2,
1643		.ksize	= 16,
1644	}, {
1645		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
1646			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1647		.plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1648			     "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1649			     "\x10\x11\x12\x13\x14\x15\x16\x17"
1650			     "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
1651		.digest = "\xf5\x4f\x0e\xc8\xd2\xb9\xf3\xd3"
1652			  "\x68\x07\x73\x4b\xd5\x28\x3f\xd4",
1653		.psize	= 32,
1654		.ksize	= 16,
1655	}, {
1656		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
1657			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1658		.plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1659			     "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1660			     "\x10\x11\x12\x13\x14\x15\x16\x17"
1661			     "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
1662			     "\x20\x21",
1663		.digest = "\xbe\xcb\xb3\xbc\xcd\xb5\x18\xa3"
1664			  "\x06\x77\xd5\x48\x1f\xb6\xb4\xd8",
1665		.tap	= { 17, 17 },
1666		.psize	= 34,
1667		.np	= 2,
1668		.ksize	= 16,
1669	}
1670};
1671
1672#define VMAC_AES_TEST_VECTORS	8
1673static char vmac_string1[128] = {'\x01', '\x01', '\x01', '\x01',
1674				'\x02', '\x03', '\x02', '\x02',
1675				'\x02', '\x04', '\x01', '\x07',
1676				'\x04', '\x01', '\x04', '\x03',};
1677static char vmac_string2[128] = {'a', 'b', 'c',};
1678static char vmac_string3[128] = {'a', 'b', 'c', 'a', 'b', 'c',
1679				'a', 'b', 'c', 'a', 'b', 'c',
1680				'a', 'b', 'c', 'a', 'b', 'c',
1681				'a', 'b', 'c', 'a', 'b', 'c',
1682				'a', 'b', 'c', 'a', 'b', 'c',
1683				'a', 'b', 'c', 'a', 'b', 'c',
1684				'a', 'b', 'c', 'a', 'b', 'c',
1685				'a', 'b', 'c', 'a', 'b', 'c',
1686				};
1687
1688static struct hash_testvec aes_vmac128_tv_template[] = {
1689	{
1690		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
1691			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1692		.plaintext = NULL,
1693		.digest	= "\x07\x58\x80\x35\x77\xa4\x7b\x54",
1694		.psize	= 0,
1695		.ksize	= 16,
1696	}, {
1697		.key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1698			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1699		.plaintext = vmac_string1,
1700		.digest = "\xce\xf5\x3c\xd3\xae\x68\x8c\xa1",
1701		.psize  = 128,
1702		.ksize  = 16,
1703	}, {
1704		.key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1705			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1706		.plaintext = vmac_string2,
1707		.digest = "\xc9\x27\xb0\x73\x81\xbd\x14\x2d",
1708		.psize  = 128,
1709		.ksize  = 16,
1710	}, {
1711		.key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1712			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1713		.plaintext = vmac_string3,
1714		.digest = "\x8d\x1a\x95\x8c\x98\x47\x0b\x19",
1715		.psize  = 128,
1716		.ksize  = 16,
1717	}, {
1718		.key	= "abcdefghijklmnop",
1719		.plaintext = NULL,
1720		.digest	= "\x3b\x89\xa1\x26\x9e\x55\x8f\x84",
1721		.psize	= 0,
1722		.ksize	= 16,
1723	}, {
1724		.key    = "abcdefghijklmnop",
1725		.plaintext = vmac_string1,
1726		.digest = "\xab\x5e\xab\xb0\xf6\x8d\x74\xc2",
1727		.psize  = 128,
1728		.ksize  = 16,
1729	}, {
1730		.key    = "abcdefghijklmnop",
1731		.plaintext = vmac_string2,
1732		.digest = "\x11\x15\x68\x42\x3d\x7b\x09\xdf",
1733		.psize  = 128,
1734		.ksize  = 16,
1735	}, {
1736		.key    = "abcdefghijklmnop",
1737		.plaintext = vmac_string3,
1738		.digest = "\x8b\x32\x8f\xe1\xed\x8f\xfa\xd4",
1739		.psize  = 128,
1740		.ksize  = 16,
1741	},
1742};
1743
1744/*
1745 * SHA384 HMAC test vectors from RFC4231
1746 */
1747
1748#define HMAC_SHA384_TEST_VECTORS	4
1749
1750static struct hash_testvec hmac_sha384_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	= "\xaf\xd0\x39\x44\xd8\x48\x95\x62"
1759			  "\x6b\x08\x25\xf4\xab\x46\x90\x7f"
1760			  "\x15\xf9\xda\xdb\xe4\x10\x1e\xc6"
1761			  "\x82\xaa\x03\x4c\x7c\xeb\xc5\x9c"
1762			  "\xfa\xea\x9e\xa9\x07\x6e\xde\x7f"
1763			  "\x4a\xf1\x52\xe8\xb2\xfa\x9c\xb6",
1764	}, {
1765		.key	= "Jefe",
1766		.ksize	= 4,
1767		.plaintext = "what do ya want for nothing?",
1768		.psize	= 28,
1769		.digest	= "\xaf\x45\xd2\xe3\x76\x48\x40\x31"
1770			  "\x61\x7f\x78\xd2\xb5\x8a\x6b\x1b"
1771			  "\x9c\x7e\xf4\x64\xf5\xa0\x1b\x47"
1772			  "\xe4\x2e\xc3\x73\x63\x22\x44\x5e"
1773			  "\x8e\x22\x40\xca\x5e\x69\xe2\xc7"
1774			  "\x8b\x32\x39\xec\xfa\xb2\x16\x49",
1775		.np	= 4,
1776		.tap	= { 7, 7, 7, 7 }
1777	}, {
1778		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1779			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1780			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1781			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1782			  "\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",
1795		.ksize	= 131,
1796		.plaintext = "Test Using Larger Than Block-Siz"
1797			   "e Key - Hash Key First",
1798		.psize	= 54,
1799		.digest	= "\x4e\xce\x08\x44\x85\x81\x3e\x90"
1800			  "\x88\xd2\xc6\x3a\x04\x1b\xc5\xb4"
1801			  "\x4f\x9e\xf1\x01\x2a\x2b\x58\x8f"
1802			  "\x3c\xd1\x1f\x05\x03\x3a\xc4\xc6"
1803			  "\x0c\x2e\xf6\xab\x40\x30\xfe\x82"
1804			  "\x96\x24\x8d\xf1\x63\xf4\x49\x52",
1805	}, {
1806		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1807			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1808			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1809			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1810			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1811			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1812			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1813			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1814			  "\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",
1823		.ksize	= 131,
1824		.plaintext = "This is a test u"
1825			   "sing a larger th"
1826			   "an block-size ke"
1827			   "y and a larger t"
1828			   "han block-size d"
1829			   "ata. The key nee"
1830			   "ds to be hashed "
1831			   "before being use"
1832			   "d by the HMAC al"
1833			   "gorithm.",
1834		.psize	= 152,
1835		.digest	= "\x66\x17\x17\x8e\x94\x1f\x02\x0d"
1836			  "\x35\x1e\x2f\x25\x4e\x8f\xd3\x2c"
1837			  "\x60\x24\x20\xfe\xb0\xb8\xfb\x9a"
1838			  "\xdc\xce\xbb\x82\x46\x1e\x99\xc5"
1839			  "\xa6\x78\xcc\x31\xe7\x99\x17\x6d"
1840			  "\x38\x60\xe6\x11\x0c\x46\x52\x3e",
1841	},
1842};
1843
1844/*
1845 * SHA512 HMAC test vectors from RFC4231
1846 */
1847
1848#define HMAC_SHA512_TEST_VECTORS	4
1849
1850static struct hash_testvec hmac_sha512_tv_template[] = {
1851	{
1852		.key	= "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1853			  "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1854			  "\x0b\x0b\x0b\x0b",
1855		.ksize	= 20,
1856		.plaintext = "Hi There",
1857		.psize	= 8,
1858		.digest	= "\x87\xaa\x7c\xde\xa5\xef\x61\x9d"
1859			  "\x4f\xf0\xb4\x24\x1a\x1d\x6c\xb0"
1860			  "\x23\x79\xf4\xe2\xce\x4e\xc2\x78"
1861			  "\x7a\xd0\xb3\x05\x45\xe1\x7c\xde"
1862			  "\xda\xa8\x33\xb7\xd6\xb8\xa7\x02"
1863			  "\x03\x8b\x27\x4e\xae\xa3\xf4\xe4"
1864			  "\xbe\x9d\x91\x4e\xeb\x61\xf1\x70"
1865			  "\x2e\x69\x6c\x20\x3a\x12\x68\x54",
1866	}, {
1867		.key	= "Jefe",
1868		.ksize	= 4,
1869		.plaintext = "what do ya want for nothing?",
1870		.psize	= 28,
1871		.digest	= "\x16\x4b\x7a\x7b\xfc\xf8\x19\xe2"
1872			  "\xe3\x95\xfb\xe7\x3b\x56\xe0\xa3"
1873			  "\x87\xbd\x64\x22\x2e\x83\x1f\xd6"
1874			  "\x10\x27\x0c\xd7\xea\x25\x05\x54"
1875			  "\x97\x58\xbf\x75\xc0\x5a\x99\x4a"
1876			  "\x6d\x03\x4f\x65\xf8\xf0\xe6\xfd"
1877			  "\xca\xea\xb1\xa3\x4d\x4a\x6b\x4b"
1878			  "\x63\x6e\x07\x0a\x38\xbc\xe7\x37",
1879		.np	= 4,
1880		.tap	= { 7, 7, 7, 7 }
1881	}, {
1882		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1883			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1884			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1885			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1886			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1887			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1888			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1889			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1890			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1891			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1892			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1893			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1894			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1895			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1896			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1897			  "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1898			  "\xaa\xaa\xaa",
1899		.ksize	= 131,
1900		.plaintext = "Test Using Large"
1901			   "r Than Block-Siz"
1902			   "e Key - Hash Key"
1903			   " First",
1904		.psize	= 54,
1905		.digest	= "\x80\xb2\x42\x63\xc7\xc1\xa3\xeb"
1906			"\xb7\x14\x93\xc1\xdd\x7b\xe8\xb4"
1907			"\x9b\x46\xd1\xf4\x1b\x4a\xee\xc1"
1908			"\x12\x1b\x01\x37\x83\xf8\xf3\x52"
1909			"\x6b\x56\xd0\x37\xe0\x5f\x25\x98"
1910			"\xbd\x0f\xd2\x21\x5d\x6a\x1e\x52"
1911			"\x95\xe6\x4f\x73\xf6\x3f\x0a\xec"
1912			"\x8b\x91\x5a\x98\x5d\x78\x65\x98",
1913	}, {
1914		.key	= "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1915			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1916			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1917			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1918			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1919			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1920			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1921			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1922			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1923			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1924			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1925			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1926			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1927			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1928			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1929			"\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1930			"\xaa\xaa\xaa",
1931		.ksize	= 131,
1932		.plaintext =
1933			  "This is a test u"
1934			  "sing a larger th"
1935			  "an block-size ke"
1936			  "y and a larger t"
1937			  "han block-size d"
1938			  "ata. The key nee"
1939			  "ds to be hashed "
1940			  "before being use"
1941			  "d by the HMAC al"
1942			  "gorithm.",
1943		.psize	= 152,
1944		.digest	= "\xe3\x7b\x6a\x77\x5d\xc8\x7d\xba"
1945			"\xa4\xdf\xa9\xf9\x6e\x5e\x3f\xfd"
1946			"\xde\xbd\x71\xf8\x86\x72\x89\x86"
1947			"\x5d\xf5\xa3\x2d\x20\xcd\xc9\x44"
1948			"\xb6\x02\x2c\xac\x3c\x49\x82\xb1"
1949			"\x0d\x5e\xeb\x55\xc3\xe4\xde\x15"
1950			"\x13\x46\x76\xfb\x6d\xe0\x44\x60"
1951			"\x65\xc9\x74\x40\xfa\x8c\x6a\x58",
1952	},
1953};
1954
1955/*
1956 * DES test vectors.
1957 */
1958#define DES_ENC_TEST_VECTORS		10
1959#define DES_DEC_TEST_VECTORS		4
1960#define DES_CBC_ENC_TEST_VECTORS	5
1961#define DES_CBC_DEC_TEST_VECTORS	4
1962#define DES3_EDE_ENC_TEST_VECTORS	3
1963#define DES3_EDE_DEC_TEST_VECTORS	3
1964#define DES3_EDE_CBC_ENC_TEST_VECTORS	1
1965#define DES3_EDE_CBC_DEC_TEST_VECTORS	1
1966
1967static struct cipher_testvec des_enc_tv_template[] = {
1968	{ /* From Applied Cryptography */
1969		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
1970		.klen	= 8,
1971		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1972		.ilen	= 8,
1973		.result	= "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1974		.rlen	= 8,
1975	}, { /* Same key, different plaintext block */
1976		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
1977		.klen	= 8,
1978		.input	= "\x22\x33\x44\x55\x66\x77\x88\x99",
1979		.ilen	= 8,
1980		.result	= "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1981		.rlen	= 8,
1982	}, { /* Sbox test from NBS */
1983		.key	= "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57",
1984		.klen	= 8,
1985		.input	= "\x01\xa1\xd6\xd0\x39\x77\x67\x42",
1986		.ilen	= 8,
1987		.result	= "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
1988		.rlen	= 8,
1989	}, { /* Three blocks */
1990		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
1991		.klen	= 8,
1992		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1993			  "\x22\x33\x44\x55\x66\x77\x88\x99"
1994			  "\xca\xfe\xba\xbe\xfe\xed\xbe\xef",
1995		.ilen	= 24,
1996		.result	= "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1997			  "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
1998			  "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90",
1999		.rlen	= 24,
2000	}, { /* Weak key */
2001		.fail	= 1,
2002		.wk	= 1,
2003		.key	= "\x01\x01\x01\x01\x01\x01\x01\x01",
2004		.klen	= 8,
2005		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xe7",
2006		.ilen	= 8,
2007		.result	= "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
2008		.rlen	= 8,
2009	}, { /* Two blocks -- for testing encryption across pages */
2010		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2011		.klen	= 8,
2012		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2013			  "\x22\x33\x44\x55\x66\x77\x88\x99",
2014		.ilen	= 16,
2015		.result	= "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2016			  "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
2017		.rlen	= 16,
2018		.np	= 2,
2019		.tap	= { 8, 8 }
2020	}, { /* Four blocks -- for testing encryption with chunking */
2021		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2022		.klen	= 8,
2023		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2024			  "\x22\x33\x44\x55\x66\x77\x88\x99"
2025			  "\xca\xfe\xba\xbe\xfe\xed\xbe\xef"
2026			  "\x22\x33\x44\x55\x66\x77\x88\x99",
2027		.ilen	= 32,
2028		.result	= "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2029			  "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
2030			  "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90"
2031			  "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
2032		.rlen	= 32,
2033		.np	= 3,
2034		.tap	= { 14, 10, 8 }
2035	}, {
2036		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2037		.klen	= 8,
2038		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2039			  "\x22\x33\x44\x55\x66\x77\x88\x99"
2040			  "\xca\xfe\xba\xbe\xfe\xed\xbe\xef",
2041		.ilen	= 24,
2042		.result	= "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2043			  "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
2044			  "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90",
2045		.rlen	= 24,
2046		.np	= 4,
2047		.tap	= { 2, 1, 3, 18 }
2048	}, {
2049		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2050		.klen	= 8,
2051		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2052			  "\x22\x33\x44\x55\x66\x77\x88\x99",
2053		.ilen	= 16,
2054		.result	= "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2055			  "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
2056		.rlen	= 16,
2057		.np	= 5,
2058		.tap	= { 2, 2, 2, 2, 8 }
2059	}, {
2060		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2061		.klen	= 8,
2062		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xe7",
2063		.ilen	= 8,
2064		.result	= "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
2065		.rlen	= 8,
2066		.np	= 8,
2067		.tap	= { 1, 1, 1, 1, 1, 1, 1, 1 }
2068	},
2069};
2070
2071static struct cipher_testvec des_dec_tv_template[] = {
2072	{ /* From Applied Cryptography */
2073		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2074		.klen	= 8,
2075		.input	= "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
2076		.ilen	= 8,
2077		.result	= "\x01\x23\x45\x67\x89\xab\xcd\xe7",
2078		.rlen	= 8,
2079	}, { /* Sbox test from NBS */
2080		.key	= "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57",
2081		.klen	= 8,
2082		.input	= "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
2083		.ilen	= 8,
2084		.result	= "\x01\xa1\xd6\xd0\x39\x77\x67\x42",
2085		.rlen	= 8,
2086	}, { /* Two blocks, for chunking test */
2087		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2088		.klen	= 8,
2089		.input	= "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2090			  "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
2091		.ilen	= 16,
2092		.result	= "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2093			  "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5",
2094		.rlen	= 16,
2095		.np	= 2,
2096		.tap	= { 8, 8 }
2097	}, {
2098		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2099		.klen	= 8,
2100		.input	= "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2101			  "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
2102		.ilen	= 16,
2103		.result	= "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2104			  "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5",
2105		.rlen	= 16,
2106		.np	= 3,
2107		.tap	= { 3, 12, 1 }
2108	},
2109};
2110
2111static struct cipher_testvec des_cbc_enc_tv_template[] = {
2112	{ /* From OpenSSL */
2113		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2114		.klen	= 8,
2115		.iv	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2116		.input	= "\x37\x36\x35\x34\x33\x32\x31\x20"
2117			  "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2118			  "\x68\x65\x20\x74\x69\x6d\x65\x20",
2119		.ilen	= 24,
2120		.result	= "\xcc\xd1\x73\xff\xab\x20\x39\xf4"
2121			  "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb"
2122			  "\x46\x8e\x91\x15\x78\x88\xba\x68",
2123		.rlen	= 24,
2124	}, { /* FIPS Pub 81 */
2125		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2126		.klen	= 8,
2127		.iv	= "\x12\x34\x56\x78\x90\xab\xcd\xef",
2128		.input	= "\x4e\x6f\x77\x20\x69\x73\x20\x74",
2129		.ilen	= 8,
2130		.result	= "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2131		.rlen	= 8,
2132	}, {
2133		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2134		.klen	= 8,
2135		.iv	= "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2136		.input	= "\x68\x65\x20\x74\x69\x6d\x65\x20",
2137		.ilen	= 8,
2138		.result	= "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2139		.rlen	= 8,
2140	}, {
2141		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2142		.klen	= 8,
2143		.iv	= "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2144		.input	= "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2145		.ilen	= 8,
2146		.result	= "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2147		.rlen	= 8,
2148	}, { /* Copy of openssl vector for chunk testing */
2149	     /* From OpenSSL */
2150		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2151		.klen	= 8,
2152		.iv	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2153		.input	= "\x37\x36\x35\x34\x33\x32\x31\x20"
2154			  "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2155			  "\x68\x65\x20\x74\x69\x6d\x65\x20",
2156		.ilen	= 24,
2157		.result	= "\xcc\xd1\x73\xff\xab\x20\x39\xf4"
2158			  "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb"
2159			  "\x46\x8e\x91\x15\x78\x88\xba\x68",
2160		.rlen	= 24,
2161		.np	= 2,
2162		.tap	= { 13, 11 }
2163	},
2164};
2165
2166static struct cipher_testvec des_cbc_dec_tv_template[] = {
2167	{ /* FIPS Pub 81 */
2168		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2169		.klen	= 8,
2170		.iv	= "\x12\x34\x56\x78\x90\xab\xcd\xef",
2171		.input	= "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2172		.ilen	= 8,
2173		.result	= "\x4e\x6f\x77\x20\x69\x73\x20\x74",
2174		.rlen	= 8,
2175	}, {
2176		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2177		.klen	= 8,
2178		.iv	= "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2179		.input	= "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2180		.ilen	= 8,
2181		.result	= "\x68\x65\x20\x74\x69\x6d\x65\x20",
2182		.rlen	= 8,
2183	}, {
2184		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2185		.klen	= 8,
2186		.iv	= "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2187		.input	= "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2188		.ilen	= 8,
2189		.result	= "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2190		.rlen	= 8,
2191	}, { /* Copy of above, for chunk testing */
2192		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2193		.klen	= 8,
2194		.iv	= "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2195		.input	= "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2196		.ilen	= 8,
2197		.result	= "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2198		.rlen	= 8,
2199		.np	= 2,
2200		.tap	= { 4, 4 }
2201	},
2202};
2203
2204static struct cipher_testvec des3_ede_enc_tv_template[] = {
2205	{ /* These are from openssl */
2206		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
2207			  "\x55\x55\x55\x55\x55\x55\x55\x55"
2208			  "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2209		.klen	= 24,
2210		.input	= "\x73\x6f\x6d\x65\x64\x61\x74\x61",
2211		.ilen	= 8,
2212		.result	= "\x18\xd7\x48\xe5\x63\x62\x05\x72",
2213		.rlen	= 8,
2214	}, {
2215		.key	= "\x03\x52\x02\x07\x67\x20\x82\x17"
2216			  "\x86\x02\x87\x66\x59\x08\x21\x98"
2217			  "\x64\x05\x6a\xbd\xfe\xa9\x34\x57",
2218		.klen	= 24,
2219		.input	= "\x73\x71\x75\x69\x67\x67\x6c\x65",
2220		.ilen	= 8,
2221		.result	= "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30",
2222		.rlen	= 8,
2223	}, {
2224		.key	= "\x10\x46\x10\x34\x89\x98\x80\x20"
2225			  "\x91\x07\xd0\x15\x89\x19\x01\x01"
2226			  "\x19\x07\x92\x10\x98\x1a\x01\x01",
2227		.klen	= 24,
2228		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00",
2229		.ilen	= 8,
2230		.result	= "\xe1\xef\x62\xc3\x32\xfe\x82\x5b",
2231		.rlen	= 8,
2232	},
2233};
2234
2235static struct cipher_testvec des3_ede_dec_tv_template[] = {
2236	{ /* These are from openssl */
2237		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
2238			  "\x55\x55\x55\x55\x55\x55\x55\x55"
2239			  "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2240		.klen	= 24,
2241		.input	= "\x18\xd7\x48\xe5\x63\x62\x05\x72",
2242		.ilen	= 8,
2243		.result	= "\x73\x6f\x6d\x65\x64\x61\x74\x61",
2244		.rlen	= 8,
2245	}, {
2246		.key	= "\x03\x52\x02\x07\x67\x20\x82\x17"
2247			  "\x86\x02\x87\x66\x59\x08\x21\x98"
2248			  "\x64\x05\x6a\xbd\xfe\xa9\x34\x57",
2249		.klen	= 24,
2250		.input	= "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30",
2251		.ilen	= 8,
2252		.result	= "\x73\x71\x75\x69\x67\x67\x6c\x65",
2253		.rlen	= 8,
2254	}, {
2255		.key	= "\x10\x46\x10\x34\x89\x98\x80\x20"
2256			  "\x91\x07\xd0\x15\x89\x19\x01\x01"
2257			  "\x19\x07\x92\x10\x98\x1a\x01\x01",
2258		.klen	= 24,
2259		.input	= "\xe1\xef\x62\xc3\x32\xfe\x82\x5b",
2260		.ilen	= 8,
2261		.result	= "\x00\x00\x00\x00\x00\x00\x00\x00",
2262		.rlen	= 8,
2263	},
2264};
2265
2266static struct cipher_testvec des3_ede_cbc_enc_tv_template[] = {
2267	{ /* Generated from openssl */
2268		.key	= "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24"
2269			  "\x44\x4D\x99\x5A\x12\xD6\x40\xC0"
2270			  "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8",
2271		.klen	= 24,
2272		.iv	= "\x7D\x33\x88\x93\x0F\x93\xB2\x42",
2273		.input	= "\x6f\x54\x20\x6f\x61\x4d\x79\x6e"
2274			  "\x53\x20\x63\x65\x65\x72\x73\x74"
2275			  "\x54\x20\x6f\x6f\x4d\x20\x6e\x61"
2276			  "\x20\x79\x65\x53\x72\x63\x74\x65"
2277			  "\x20\x73\x6f\x54\x20\x6f\x61\x4d"
2278			  "\x79\x6e\x53\x20\x63\x65\x65\x72"
2279			  "\x73\x74\x54\x20\x6f\x6f\x4d\x20"
2280			  "\x6e\x61\x20\x79\x65\x53\x72\x63"
2281			  "\x74\x65\x20\x73\x6f\x54\x20\x6f"
2282			  "\x61\x4d\x79\x6e\x53\x20\x63\x65"
2283			  "\x65\x72\x73\x74\x54\x20\x6f\x6f"
2284			  "\x4d\x20\x6e\x61\x20\x79\x65\x53"
2285			  "\x72\x63\x74\x65\x20\x73\x6f\x54"
2286			  "\x20\x6f\x61\x4d\x79\x6e\x53\x20"
2287			  "\x63\x65\x65\x72\x73\x74\x54\x20"
2288			  "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79",
2289		.ilen	= 128,
2290		.result	= "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4"
2291			  "\x67\x17\x21\xc7\x6e\x8a\xd5\x49"
2292			  "\x74\xb3\x49\x05\xc5\x1c\xd0\xed"
2293			  "\x12\x56\x5c\x53\x96\xb6\x00\x7d"
2294			  "\x90\x48\xfc\xf5\x8d\x29\x39\xcc"
2295			  "\x8a\xd5\x35\x18\x36\x23\x4e\xd7"
2296			  "\x76\xd1\xda\x0c\x94\x67\xbb\x04"
2297			  "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea"
2298			  "\x22\x64\x47\xaa\x8f\x75\x13\xbf"
2299			  "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a"
2300			  "\x71\x63\x2e\x89\x7b\x1e\x12\xca"
2301			  "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a"
2302			  "\xd6\xf9\x21\x31\x62\x44\x45\xa6"
2303			  "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc"
2304			  "\x9d\xde\xa5\x70\xe9\x42\x45\x8a"
2305			  "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19",
2306		.rlen	= 128,
2307	},
2308};
2309
2310static struct cipher_testvec des3_ede_cbc_dec_tv_template[] = {
2311	{ /* Generated from openssl */
2312		.key	= "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24"
2313			  "\x44\x4D\x99\x5A\x12\xD6\x40\xC0"
2314			  "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8",
2315		.klen	= 24,
2316		.iv	= "\x7D\x33\x88\x93\x0F\x93\xB2\x42",
2317		.input	= "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4"
2318			  "\x67\x17\x21\xc7\x6e\x8a\xd5\x49"
2319			  "\x74\xb3\x49\x05\xc5\x1c\xd0\xed"
2320			  "\x12\x56\x5c\x53\x96\xb6\x00\x7d"
2321			  "\x90\x48\xfc\xf5\x8d\x29\x39\xcc"
2322			  "\x8a\xd5\x35\x18\x36\x23\x4e\xd7"
2323			  "\x76\xd1\xda\x0c\x94\x67\xbb\x04"
2324			  "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea"
2325			  "\x22\x64\x47\xaa\x8f\x75\x13\xbf"
2326			  "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a"
2327			  "\x71\x63\x2e\x89\x7b\x1e\x12\xca"
2328			  "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a"
2329			  "\xd6\xf9\x21\x31\x62\x44\x45\xa6"
2330			  "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc"
2331			  "\x9d\xde\xa5\x70\xe9\x42\x45\x8a"
2332			  "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19",
2333		.ilen	= 128,
2334		.result	= "\x6f\x54\x20\x6f\x61\x4d\x79\x6e"
2335			  "\x53\x20\x63\x65\x65\x72\x73\x74"
2336			  "\x54\x20\x6f\x6f\x4d\x20\x6e\x61"
2337			  "\x20\x79\x65\x53\x72\x63\x74\x65"
2338			  "\x20\x73\x6f\x54\x20\x6f\x61\x4d"
2339			  "\x79\x6e\x53\x20\x63\x65\x65\x72"
2340			  "\x73\x74\x54\x20\x6f\x6f\x4d\x20"
2341			  "\x6e\x61\x20\x79\x65\x53\x72\x63"
2342			  "\x74\x65\x20\x73\x6f\x54\x20\x6f"
2343			  "\x61\x4d\x79\x6e\x53\x20\x63\x65"
2344			  "\x65\x72\x73\x74\x54\x20\x6f\x6f"
2345			  "\x4d\x20\x6e\x61\x20\x79\x65\x53"
2346			  "\x72\x63\x74\x65\x20\x73\x6f\x54"
2347			  "\x20\x6f\x61\x4d\x79\x6e\x53\x20"
2348			  "\x63\x65\x65\x72\x73\x74\x54\x20"
2349			  "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79",
2350		.rlen	= 128,
2351	},
2352};
2353
2354/*
2355 * Blowfish test vectors.
2356 */
2357#define BF_ENC_TEST_VECTORS	6
2358#define BF_DEC_TEST_VECTORS	6
2359#define BF_CBC_ENC_TEST_VECTORS	1
2360#define BF_CBC_DEC_TEST_VECTORS	1
2361
2362static struct cipher_testvec bf_enc_tv_template[] = {
2363	{ /* DES test vectors from OpenSSL */
2364		.key	= "\x00\x00\x00\x00\x00\x00\x00\x00",
2365		.klen	= 8,
2366		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00",
2367		.ilen	= 8,
2368		.result	= "\x4e\xf9\x97\x45\x61\x98\xdd\x78",
2369		.rlen	= 8,
2370	}, {
2371		.key	= "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e",
2372		.klen	= 8,
2373		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2374		.ilen	= 8,
2375		.result	= "\xa7\x90\x79\x51\x08\xea\x3c\xae",
2376		.rlen	= 8,
2377	}, {
2378		.key	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2379		.klen	= 8,
2380		.input	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2381		.ilen	= 8,
2382		.result	= "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82",
2383		.rlen	= 8,
2384	}, { /* Vary the keylength... */
2385		.key	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2386			  "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f",
2387		.klen	= 16,
2388		.input	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2389		.ilen	= 8,
2390		.result	= "\x93\x14\x28\x87\xee\x3b\xe1\x5c",
2391		.rlen	= 8,
2392	}, {
2393		.key	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2394			  "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2395			  "\x00\x11\x22\x33\x44",
2396		.klen	= 21,
2397		.input	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2398		.ilen	= 8,
2399		.result	= "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f",
2400		.rlen	= 8,
2401	}, { /* Generated with bf488 */
2402		.key	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2403			  "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2404			  "\x00\x11\x22\x33\x44\x55\x66\x77"
2405			  "\x04\x68\x91\x04\xc2\xfd\x3b\x2f"
2406			  "\x58\x40\x23\x64\x1a\xba\x61\x76"
2407			  "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e"
2408			  "\xff\xff\xff\xff\xff\xff\xff\xff",
2409		.klen	= 56,
2410		.input	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2411		.ilen	= 8,
2412		.result	= "\xc0\x45\x04\x01\x2e\x4e\x1f\x53",
2413		.rlen	= 8,
2414	},
2415};
2416
2417static struct cipher_testvec bf_dec_tv_template[] = {
2418	{ /* DES test vectors from OpenSSL */
2419		.key	= "\x00\x00\x00\x00\x00\x00\x00\x00",
2420		.klen	= 8,
2421		.input	= "\x4e\xf9\x97\x45\x61\x98\xdd\x78",
2422		.ilen	= 8,
2423		.result	= "\x00\x00\x00\x00\x00\x00\x00\x00",
2424		.rlen	= 8,
2425	}, {
2426		.key	= "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e",
2427		.klen	= 8,
2428		.input	= "\xa7\x90\x79\x51\x08\xea\x3c\xae",
2429		.ilen	= 8,
2430		.result	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
2431		.rlen	= 8,
2432	}, {
2433		.key	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2434		.klen	= 8,
2435		.input	= "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82",
2436		.ilen	= 8,
2437		.result	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2438		.rlen	= 8,
2439	}, { /* Vary the keylength... */
2440		.key	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2441			  "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f",
2442		.klen	= 16,
2443		.input	= "\x93\x14\x28\x87\xee\x3b\xe1\x5c",
2444		.ilen	= 8,
2445		.result	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2446		.rlen	= 8,
2447	}, {
2448		.key	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2449			  "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2450			  "\x00\x11\x22\x33\x44",
2451		.klen	= 21,
2452		.input	= "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f",
2453		.ilen	= 8,
2454		.result	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2455		.rlen	= 8,
2456	}, { /* Generated with bf488, using OpenSSL, Libgcrypt and Nettle */
2457		.key	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2458			  "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2459			  "\x00\x11\x22\x33\x44\x55\x66\x77"
2460			  "\x04\x68\x91\x04\xc2\xfd\x3b\x2f"
2461			  "\x58\x40\x23\x64\x1a\xba\x61\x76"
2462			  "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e"
2463			  "\xff\xff\xff\xff\xff\xff\xff\xff",
2464		.klen	= 56,
2465		.input	= "\xc0\x45\x04\x01\x2e\x4e\x1f\x53",
2466		.ilen	= 8,
2467		.result	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2468		.rlen	= 8,
2469	},
2470};
2471
2472static struct cipher_testvec bf_cbc_enc_tv_template[] = {
2473	{ /* From OpenSSL */
2474		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
2475			  "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2476		.klen	= 16,
2477		.iv	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2478		.input	= "\x37\x36\x35\x34\x33\x32\x31\x20"
2479			  "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2480			  "\x68\x65\x20\x74\x69\x6d\x65\x20"
2481			  "\x66\x6f\x72\x20\x00\x00\x00\x00",
2482		.ilen	= 32,
2483		.result	= "\x6b\x77\xb4\xd6\x30\x06\xde\xe6"
2484			  "\x05\xb1\x56\xe2\x74\x03\x97\x93"
2485			  "\x58\xde\xb9\xe7\x15\x46\x16\xd9"
2486			  "\x59\xf1\x65\x2b\xd5\xff\x92\xcc",
2487		.rlen	= 32,
2488	},
2489};
2490
2491static struct cipher_testvec bf_cbc_dec_tv_template[] = {
2492	{ /* From OpenSSL */
2493		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
2494			  "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2495		.klen	= 16,
2496		.iv	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2497		.input	= "\x6b\x77\xb4\xd6\x30\x06\xde\xe6"
2498			  "\x05\xb1\x56\xe2\x74\x03\x97\x93"
2499			  "\x58\xde\xb9\xe7\x15\x46\x16\xd9"
2500			  "\x59\xf1\x65\x2b\xd5\xff\x92\xcc",
2501		.ilen	= 32,
2502		.result	= "\x37\x36\x35\x34\x33\x32\x31\x20"
2503			  "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2504			  "\x68\x65\x20\x74\x69\x6d\x65\x20"
2505			  "\x66\x6f\x72\x20\x00\x00\x00\x00",
2506		.rlen	= 32,
2507	},
2508};
2509
2510/*
2511 * Twofish test vectors.
2512 */
2513#define TF_ENC_TEST_VECTORS		3
2514#define TF_DEC_TEST_VECTORS		3
2515#define TF_CBC_ENC_TEST_VECTORS		4
2516#define TF_CBC_DEC_TEST_VECTORS		4
2517
2518static struct cipher_testvec tf_enc_tv_template[] = {
2519	{
2520		.key	= zeroed_string,
2521		.klen	= 16,
2522		.input	= zeroed_string,
2523		.ilen	= 16,
2524		.result	= "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2525			  "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2526		.rlen	= 16,
2527	}, {
2528		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
2529			  "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2530			  "\x00\x11\x22\x33\x44\x55\x66\x77",
2531		.klen	= 24,
2532		.input	= zeroed_string,
2533		.ilen	= 16,
2534		.result	= "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf"
2535			  "\x50\x1f\x13\xb8\x92\xbd\x22\x48",
2536		.rlen	= 16,
2537	}, {
2538		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
2539			  "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2540			  "\x00\x11\x22\x33\x44\x55\x66\x77"
2541			  "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2542		.klen	= 32,
2543		.input	= zeroed_string,
2544		.ilen	= 16,
2545		.result	= "\x37\x52\x7b\xe0\x05\x23\x34\xb8"
2546			  "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20",
2547		.rlen	= 16,
2548	},
2549};
2550
2551static struct cipher_testvec tf_dec_tv_template[] = {
2552	{
2553		.key	= zeroed_string,
2554		.klen	= 16,
2555		.input	= "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2556			  "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2557		.ilen	= 16,
2558		.result	= zeroed_string,
2559		.rlen	= 16,
2560	}, {
2561		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
2562			  "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2563			  "\x00\x11\x22\x33\x44\x55\x66\x77",
2564		.klen	= 24,
2565		.input	= "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf"
2566			  "\x50\x1f\x13\xb8\x92\xbd\x22\x48",
2567		.ilen	= 16,
2568		.result	= zeroed_string,
2569		.rlen	= 16,
2570	}, {
2571		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
2572			  "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2573			  "\x00\x11\x22\x33\x44\x55\x66\x77"
2574			  "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2575		.klen	= 32,
2576		.input	= "\x37\x52\x7b\xe0\x05\x23\x34\xb8"
2577			  "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20",
2578		.ilen	= 16,
2579		.result	= zeroed_string,
2580		.rlen	= 16,
2581	},
2582};
2583
2584static struct cipher_testvec tf_cbc_enc_tv_template[] = {
2585	{ /* Generated with Nettle */
2586		.key	= zeroed_string,
2587		.klen	= 16,
2588		.iv	= zeroed_string,
2589		.input	= zeroed_string,
2590		.ilen	= 16,
2591		.result	= "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2592			  "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2593		.rlen	= 16,
2594	}, {
2595		.key	= zeroed_string,
2596		.klen	= 16,
2597		.iv	= "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2598			  "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2599		.input	= zeroed_string,
2600		.ilen	= 16,
2601		.result	= "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2602			  "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2603		.rlen	= 16,
2604	}, {
2605		.key	= zeroed_string,
2606		.klen	= 16,
2607		.iv	= "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2608			  "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2609		.input	= zeroed_string,
2610		.ilen	= 16,
2611		.result	= "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2612			  "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2613		.rlen	= 16,
2614	}, {
2615		.key	= zeroed_string,
2616		.klen	= 16,
2617		.iv	= zeroed_string,
2618		.input	= zeroed_string,
2619		.ilen	= 48,
2620		.result	= "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2621			  "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a"
2622			  "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2623			  "\x86\xcb\x08\x6b\x78\x9f\x54\x19"
2624			  "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2625			  "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2626		.rlen	= 48,
2627	},
2628};
2629
2630static struct cipher_testvec tf_cbc_dec_tv_template[] = {
2631	{ /* Reverse of the first four above */
2632		.key	= zeroed_string,
2633		.klen	= 16,
2634		.iv	= zeroed_string,
2635		.input	= "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2636			  "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2637		.ilen	= 16,
2638		.result	= zeroed_string,
2639		.rlen	= 16,
2640	}, {
2641		.key	= zeroed_string,
2642		.klen	= 16,
2643		.iv	= "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2644			  "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2645		.input	= "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2646			  "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2647		.ilen	= 16,
2648		.result	= zeroed_string,
2649		.rlen	= 16,
2650	}, {
2651		.key	= zeroed_string,
2652		.klen	= 16,
2653		.iv	= "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2654			  "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2655		.input	= "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2656			  "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2657		.ilen	= 16,
2658		.result	= zeroed_string,
2659		.rlen	= 16,
2660	}, {
2661		.key	= zeroed_string,
2662		.klen	= 16,
2663		.iv	= zeroed_string,
2664		.input	= "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2665			  "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a"
2666			  "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2667			  "\x86\xcb\x08\x6b\x78\x9f\x54\x19"
2668			  "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2669			  "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2670		.ilen	= 48,
2671		.result	= zeroed_string,
2672		.rlen	= 48,
2673	},
2674};
2675
2676/*
2677 * Serpent test vectors.  These are backwards because Serpent writes
2678 * octet sequences in right-to-left mode.
2679 */
2680#define SERPENT_ENC_TEST_VECTORS	4
2681#define SERPENT_DEC_TEST_VECTORS	4
2682
2683#define TNEPRES_ENC_TEST_VECTORS	4
2684#define TNEPRES_DEC_TEST_VECTORS	4
2685
2686static struct cipher_testvec serpent_enc_tv_template[] = {
2687	{
2688		.input	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2689			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2690		.ilen	= 16,
2691		.result	= "\x12\x07\xfc\xce\x9b\xd0\xd6\x47"
2692			  "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2",
2693		.rlen	= 16,
2694	}, {
2695		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2696			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2697		.klen	= 16,
2698		.input	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2699			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2700		.ilen	= 16,
2701		.result	= "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c"
2702			  "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d",
2703		.rlen	= 16,
2704	}, {
2705		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2706			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2707			  "\x10\x11\x12\x13\x14\x15\x16\x17"
2708			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2709		.klen	= 32,
2710		.input	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2711			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2712		.ilen	= 16,
2713		.result	= "\xde\x26\x9f\xf8\x33\xe4\x32\xb8"
2714			  "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c",
2715		.rlen	= 16,
2716	}, {
2717		.key	= "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2718		.klen	= 16,
2719		.input	= zeroed_string,
2720		.ilen	= 16,
2721		.result	= "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c"
2722			  "\x05\x34\x5a\x9d\xad\xbf\xaf\x49",
2723		.rlen	= 16,
2724	},
2725};
2726
2727static struct cipher_testvec tnepres_enc_tv_template[] = {
2728	{ /* KeySize=128, PT=0, I=1 */
2729		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00"
2730			  "\x00\x00\x00\x00\x00\x00\x00\x00",
2731		.key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
2732			  "\x00\x00\x00\x00\x00\x00\x00\x00",
2733		.klen   = 16,
2734		.ilen	= 16,
2735		.result	= "\x49\xaf\xbf\xad\x9d\x5a\x34\x05"
2736			  "\x2c\xd8\xff\xa5\x98\x6b\xd2\xdd",
2737		.rlen	= 16,
2738	}, { /* KeySize=192, PT=0, I=1 */
2739		.key	= "\x80\x00\x00\x00\x00\x00\x00\x00"
2740			  "\x00\x00\x00\x00\x00\x00\x00\x00"
2741			  "\x00\x00\x00\x00\x00\x00\x00\x00",
2742		.klen	= 24,
2743		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00"
2744			  "\x00\x00\x00\x00\x00\x00\x00\x00",
2745		.ilen	= 16,
2746		.result	= "\xe7\x8e\x54\x02\xc7\x19\x55\x68"
2747			  "\xac\x36\x78\xf7\xa3\xf6\x0c\x66",
2748		.rlen	= 16,
2749	}, { /* KeySize=256, PT=0, I=1 */
2750		.key	= "\x80\x00\x00\x00\x00\x00\x00\x00"
2751			  "\x00\x00\x00\x00\x00\x00\x00\x00"
2752			  "\x00\x00\x00\x00\x00\x00\x00\x00"
2753			  "\x00\x00\x00\x00\x00\x00\x00\x00",
2754		.klen	= 32,
2755		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00"
2756			  "\x00\x00\x00\x00\x00\x00\x00\x00",
2757		.ilen	= 16,
2758		.result	= "\xab\xed\x96\xe7\x66\xbf\x28\xcb"
2759			  "\xc0\xeb\xd2\x1a\x82\xef\x08\x19",
2760		.rlen	= 16,
2761	}, { /* KeySize=256, I=257 */
2762		.key	= "\x1f\x1e\x1d\x1c\x1b\x1a\x19\x18"
2763			  "\x17\x16\x15\x14\x13\x12\x11\x10"
2764			  "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08"
2765			  "\x07\x06\x05\x04\x03\x02\x01\x00",
2766		.klen	= 32,
2767		.input	= "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08"
2768			  "\x07\x06\x05\x04\x03\x02\x01\x00",
2769		.ilen	= 16,
2770		.result	= "\x5c\xe7\x1c\x70\xd2\x88\x2e\x5b"
2771			  "\xb8\x32\xe4\x33\xf8\x9f\x26\xde",
2772		.rlen	= 16,
2773	},
2774};
2775
2776
2777static struct cipher_testvec serpent_dec_tv_template[] = {
2778	{
2779		.input	= "\x12\x07\xfc\xce\x9b\xd0\xd6\x47"
2780			  "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2",
2781		.ilen	= 16,
2782		.result	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2783			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2784		.rlen	= 16,
2785	}, {
2786		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2787			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2788		.klen	= 16,
2789		.input	= "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c"
2790			  "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d",
2791		.ilen	= 16,
2792		.result	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2793			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2794		.rlen	= 16,
2795	}, {
2796		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2797			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2798			  "\x10\x11\x12\x13\x14\x15\x16\x17"
2799			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2800		.klen	= 32,
2801		.input	= "\xde\x26\x9f\xf8\x33\xe4\x32\xb8"
2802			  "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c",
2803		.ilen	= 16,
2804		.result	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2805			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2806		.rlen	= 16,
2807	}, {
2808		.key	= "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2809		.klen	= 16,
2810		.input	= "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c"
2811			  "\x05\x34\x5a\x9d\xad\xbf\xaf\x49",
2812		.ilen	= 16,
2813		.result	= zeroed_string,
2814		.rlen	= 16,
2815	},
2816};
2817
2818static struct cipher_testvec tnepres_dec_tv_template[] = {
2819	{
2820		.input	= "\x41\xcc\x6b\x31\x59\x31\x45\x97"
2821			  "\x6d\x6f\xbb\x38\x4b\x37\x21\x28",
2822		.ilen	= 16,
2823		.result	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2824			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2825		.rlen	= 16,
2826	}, {
2827		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2828			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2829		.klen	= 16,
2830		.input	= "\xea\xf4\xd7\xfc\xd8\x01\x34\x47"
2831			  "\x81\x45\x0b\xfa\x0c\xd6\xad\x6e",
2832		.ilen	= 16,
2833		.result	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2834			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2835		.rlen	= 16,
2836	}, {
2837		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2838			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2839			  "\x10\x11\x12\x13\x14\x15\x16\x17"
2840			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2841		.klen	= 32,
2842		.input	= "\x64\xa9\x1a\x37\xed\x9f\xe7\x49"
2843			  "\xa8\x4e\x76\xd6\xf5\x0d\x78\xee",
2844		.ilen	= 16,
2845		.result	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2846			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2847		.rlen	= 16,
2848	}, { /* KeySize=128, I=121 */
2849		.key	= "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2850		.klen	= 16,
2851		.input	= "\x3d\xda\xbf\xc0\x06\xda\xab\x06"
2852			  "\x46\x2a\xf4\xef\x81\x54\x4e\x26",
2853		.ilen	= 16,
2854		.result	= zeroed_string,
2855		.rlen	= 16,
2856	},
2857};
2858
2859
2860/* Cast6 test vectors from RFC 2612 */
2861#define CAST6_ENC_TEST_VECTORS	3
2862#define CAST6_DEC_TEST_VECTORS  3
2863
2864static struct cipher_testvec cast6_enc_tv_template[] = {
2865	{
2866		.key	= "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2867			  "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d",
2868		.klen	= 16,
2869		.input	= zeroed_string,
2870		.ilen	= 16,
2871		.result	= "\xc8\x42\xa0\x89\x72\xb4\x3d\x20"
2872			  "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b",
2873		.rlen	= 16,
2874	}, {
2875		.key	= "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2876			  "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2877			  "\xba\xc7\x7a\x77\x17\x94\x28\x63",
2878		.klen	= 24,
2879		.input	= zeroed_string,
2880		.ilen	= 16,
2881		.result	= "\x1b\x38\x6c\x02\x10\xdc\xad\xcb"
2882			  "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8",
2883		.rlen	= 16,
2884	}, {
2885		.key	= "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2886			  "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2887			  "\x8d\x7c\x47\xce\x26\x49\x08\x46"
2888			  "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04",
2889		.klen	= 32,
2890		.input	= zeroed_string,
2891		.ilen	= 16,
2892		.result	= "\x4f\x6a\x20\x38\x28\x68\x97\xb9"
2893			  "\xc9\x87\x01\x36\x55\x33\x17\xfa",
2894		.rlen	= 16,
2895	},
2896};
2897
2898static struct cipher_testvec cast6_dec_tv_template[] = {
2899	{
2900		.key	= "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2901			  "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d",
2902		.klen	= 16,
2903		.input	= "\xc8\x42\xa0\x89\x72\xb4\x3d\x20"
2904			  "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b",
2905		.ilen	= 16,
2906		.result	= zeroed_string,
2907		.rlen	= 16,
2908	}, {
2909		.key	= "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2910			  "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2911			  "\xba\xc7\x7a\x77\x17\x94\x28\x63",
2912		.klen	= 24,
2913		.input	= "\x1b\x38\x6c\x02\x10\xdc\xad\xcb"
2914			  "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8",
2915		.ilen	= 16,
2916		.result	= zeroed_string,
2917		.rlen	= 16,
2918	}, {
2919		.key	= "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2920			  "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2921			  "\x8d\x7c\x47\xce\x26\x49\x08\x46"
2922			  "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04",
2923		.klen	= 32,
2924		.input	= "\x4f\x6a\x20\x38\x28\x68\x97\xb9"
2925			  "\xc9\x87\x01\x36\x55\x33\x17\xfa",
2926		.ilen	= 16,
2927		.result	= zeroed_string,
2928		.rlen	= 16,
2929	},
2930};
2931
2932
2933/*
2934 * AES test vectors.
2935 */
2936#define AES_ENC_TEST_VECTORS 3
2937#define AES_DEC_TEST_VECTORS 3
2938#define AES_CBC_ENC_TEST_VECTORS 4
2939#define AES_CBC_DEC_TEST_VECTORS 4
2940#define AES_LRW_ENC_TEST_VECTORS 8
2941#define AES_LRW_DEC_TEST_VECTORS 8
2942#define AES_XTS_ENC_TEST_VECTORS 4
2943#define AES_XTS_DEC_TEST_VECTORS 4
2944#define AES_CTR_ENC_TEST_VECTORS 3
2945#define AES_CTR_DEC_TEST_VECTORS 3
2946#define AES_CTR_3686_ENC_TEST_VECTORS 7
2947#define AES_CTR_3686_DEC_TEST_VECTORS 6
2948#define AES_GCM_ENC_TEST_VECTORS 9
2949#define AES_GCM_DEC_TEST_VECTORS 8
2950#define AES_CCM_ENC_TEST_VECTORS 7
2951#define AES_CCM_DEC_TEST_VECTORS 7
2952#define AES_CCM_4309_ENC_TEST_VECTORS 7
2953#define AES_CCM_4309_DEC_TEST_VECTORS 10
2954
2955static struct cipher_testvec aes_enc_tv_template[] = {
2956	{ /* From FIPS-197 */
2957		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2958			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2959		.klen	= 16,
2960		.input	= "\x00\x11\x22\x33\x44\x55\x66\x77"
2961			  "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2962		.ilen	= 16,
2963		.result	= "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30"
2964			  "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a",
2965		.rlen	= 16,
2966	}, {
2967		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2968			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2969			  "\x10\x11\x12\x13\x14\x15\x16\x17",
2970		.klen	= 24,
2971		.input	= "\x00\x11\x22\x33\x44\x55\x66\x77"
2972			  "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2973		.ilen	= 16,
2974		.result	= "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0"
2975			  "\x6e\xaf\x70\xa0\xec\x0d\x71\x91",
2976		.rlen	= 16,
2977	}, {
2978		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2979			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2980			  "\x10\x11\x12\x13\x14\x15\x16\x17"
2981			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2982		.klen	= 32,
2983		.input	= "\x00\x11\x22\x33\x44\x55\x66\x77"
2984			  "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2985		.ilen	= 16,
2986		.result	= "\x8e\xa2\xb7\xca\x51\x67\x45\xbf"
2987			  "\xea\xfc\x49\x90\x4b\x49\x60\x89",
2988		.rlen	= 16,
2989	},
2990};
2991
2992static struct cipher_testvec aes_dec_tv_template[] = {
2993	{ /* From FIPS-197 */
2994		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
2995			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2996		.klen	= 16,
2997		.input	= "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30"
2998			  "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a",
2999		.ilen	= 16,
3000		.result	= "\x00\x11\x22\x33\x44\x55\x66\x77"
3001			  "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
3002		.rlen	= 16,
3003	}, {
3004		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
3005			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3006			  "\x10\x11\x12\x13\x14\x15\x16\x17",
3007		.klen	= 24,
3008		.input	= "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0"
3009			  "\x6e\xaf\x70\xa0\xec\x0d\x71\x91",
3010		.ilen	= 16,
3011		.result	= "\x00\x11\x22\x33\x44\x55\x66\x77"
3012			  "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
3013		.rlen	= 16,
3014	}, {
3015		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
3016			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3017			  "\x10\x11\x12\x13\x14\x15\x16\x17"
3018			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
3019		.klen	= 32,
3020		.input	= "\x8e\xa2\xb7\xca\x51\x67\x45\xbf"
3021			  "\xea\xfc\x49\x90\x4b\x49\x60\x89",
3022		.ilen	= 16,
3023		.result	= "\x00\x11\x22\x33\x44\x55\x66\x77"
3024			  "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
3025		.rlen	= 16,
3026	},
3027};
3028
3029static struct cipher_testvec aes_cbc_enc_tv_template[] = {
3030	{ /* From RFC 3602 */
3031		.key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
3032			  "\x51\x2e\x03\xd5\x34\x12\x00\x06",
3033		.klen   = 16,
3034		.iv	= "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
3035			  "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
3036		.input	= "Single block msg",
3037		.ilen   = 16,
3038		.result = "\xe3\x53\x77\x9c\x10\x79\xae\xb8"
3039			  "\x27\x08\x94\x2d\xbe\x77\x18\x1a",
3040		.rlen   = 16,
3041	}, {
3042		.key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
3043			  "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
3044		.klen   = 16,
3045		.iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
3046			  "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
3047		.input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
3048			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3049			  "\x10\x11\x12\x13\x14\x15\x16\x17"
3050			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
3051		.ilen   = 32,
3052		.result = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a"
3053			  "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a"
3054			  "\x75\x86\x60\x2d\x25\x3c\xff\xf9"
3055			  "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1",
3056		.rlen   = 32,
3057	}, { /* From NIST SP800-38A */
3058		.key	= "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
3059			  "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
3060			  "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
3061		.klen	= 24,
3062		.iv	= "\x00\x01\x02\x03\x04\x05\x06\x07"
3063			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3064		.input	= "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3065			  "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3066			  "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3067			  "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3068			  "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3069			  "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3070			  "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3071			  "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3072		.ilen	= 64,
3073		.result	= "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d"
3074			  "\x71\x78\x18\x3a\x9f\xa0\x71\xe8"
3075			  "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4"
3076			  "\xe5\xe7\x38\x76\x3f\x69\x14\x5a"
3077			  "\x57\x1b\x24\x20\x12\xfb\x7a\xe0"
3078			  "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0"
3079			  "\x08\xb0\xe2\x79\x88\x59\x88\x81"
3080			  "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd",
3081		.rlen	= 64,
3082	}, {
3083		.key	= "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
3084			  "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
3085			  "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
3086			  "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
3087		.klen	= 32,
3088		.iv	= "\x00\x01\x02\x03\x04\x05\x06\x07"
3089			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3090		.input	= "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3091			  "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3092			  "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3093			  "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3094			  "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3095			  "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3096			  "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3097			  "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3098		.ilen	= 64,
3099		.result	= "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba"
3100			  "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6"
3101			  "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d"
3102			  "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d"
3103			  "\x39\xf2\x33\x69\xa9\xd9\xba\xcf"
3104			  "\xa5\x30\xe2\x63\x04\x23\x14\x61"
3105			  "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc"
3106			  "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b",
3107		.rlen	= 64,
3108	},
3109};
3110
3111static struct cipher_testvec aes_cbc_dec_tv_template[] = {
3112	{ /* From RFC 3602 */
3113		.key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
3114			  "\x51\x2e\x03\xd5\x34\x12\x00\x06",
3115		.klen   = 16,
3116		.iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
3117			  "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
3118		.input  = "\xe3\x53\x77\x9c\x10\x79\xae\xb8"
3119			  "\x27\x08\x94\x2d\xbe\x77\x18\x1a",
3120		.ilen   = 16,
3121		.result = "Single block msg",
3122		.rlen   = 16,
3123	}, {
3124		.key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
3125			  "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
3126		.klen   = 16,
3127		.iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
3128			  "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
3129		.input  = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a"
3130			  "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a"
3131			  "\x75\x86\x60\x2d\x25\x3c\xff\xf9"
3132			  "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1",
3133		.ilen   = 32,
3134		.result = "\x00\x01\x02\x03\x04\x05\x06\x07"
3135			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3136			  "\x10\x11\x12\x13\x14\x15\x16\x17"
3137			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
3138		.rlen   = 32,
3139	}, { /* From NIST SP800-38A */
3140		.key	= "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
3141			  "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
3142			  "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
3143		.klen	= 24,
3144		.iv	= "\x00\x01\x02\x03\x04\x05\x06\x07"
3145			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3146		.input	= "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d"
3147			  "\x71\x78\x18\x3a\x9f\xa0\x71\xe8"
3148			  "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4"
3149			  "\xe5\xe7\x38\x76\x3f\x69\x14\x5a"
3150			  "\x57\x1b\x24\x20\x12\xfb\x7a\xe0"
3151			  "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0"
3152			  "\x08\xb0\xe2\x79\x88\x59\x88\x81"
3153			  "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd",
3154		.ilen	= 64,
3155		.result	= "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3156			  "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3157			  "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3158			  "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3159			  "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3160			  "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3161			  "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3162			  "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3163		.rlen	= 64,
3164	}, {
3165		.key	= "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
3166			  "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
3167			  "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
3168			  "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
3169		.klen	= 32,
3170		.iv	= "\x00\x01\x02\x03\x04\x05\x06\x07"
3171			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3172		.input	= "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba"
3173			  "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6"
3174			  "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d"
3175			  "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d"
3176			  "\x39\xf2\x33\x69\xa9\xd9\xba\xcf"
3177			  "\xa5\x30\xe2\x63\x04\x23\x14\x61"
3178			  "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc"
3179			  "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b",
3180		.ilen	= 64,
3181		.result	= "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3182			  "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3183			  "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3184			  "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3185			  "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3186			  "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3187			  "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3188			  "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3189		.rlen	= 64,
3190	},
3191};
3192
3193static struct cipher_testvec aes_lrw_enc_tv_template[] = {
3194	/* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */
3195	{ /* LRW-32-AES 1 */
3196		.key    = "\x45\x62\xac\x25\xf8\x28\x17\x6d"
3197			  "\x4c\x26\x84\x14\xb5\x68\x01\x85"
3198			  "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03"
3199			  "\xee\x5a\x83\x0c\xcc\x09\x4c\x87",
3200		.klen   = 32,
3201		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3202			  "\x00\x00\x00\x00\x00\x00\x00\x01",
3203		.input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3204			  "\x38\x39\x41\x42\x43\x44\x45\x46",
3205		.ilen   = 16,
3206		.result = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f"
3207			  "\xe9\x5d\x48\x92\x54\x63\x4e\xb8",
3208		.rlen   = 16,
3209	}, { /* LRW-32-AES 2 */
3210		.key    = "\x59\x70\x47\x14\xf5\x57\x47\x8c"
3211			  "\xd7\x79\xe8\x0f\x54\x88\x79\x44"
3212			  "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea"
3213			  "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf",
3214		.klen   = 32,
3215		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3216			  "\x00\x00\x00\x00\x00\x00\x00\x02",
3217		.input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3218			  "\x38\x39\x41\x42\x43\x44\x45\x46",
3219		.ilen   = 16,
3220		.result = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5"
3221			  "\x27\x4f\x07\x69\xb2\x60\xe1\x36",
3222		.rlen   = 16,
3223	}, { /* LRW-32-AES 3 */
3224		.key    = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50"
3225			  "\x30\xfe\x69\xe2\x37\x7f\x98\x47"
3226			  "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6"
3227			  "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f",
3228		.klen   = 32,
3229		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3230			  "\x00\x00\x00\x02\x00\x00\x00\x00",
3231		.input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3232			  "\x38\x39\x41\x42\x43\x44\x45\x46",
3233		.ilen   = 16,
3234		.result = "\x76\x32\x21\x83\xed\x8f\xf1\x82"
3235			  "\xf9\x59\x62\x03\x69\x0e\x5e\x01",
3236		.rlen   = 16,
3237	}, { /* LRW-32-AES 4 */
3238		.key    = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15"
3239			  "\x25\x83\xf7\x3c\x1f\x01\x28\x74"
3240			  "\xca\xc6\xbc\x35\x4d\x4a\x65\x54"
3241			  "\x90\xae\x61\xcf\x7b\xae\xbd\xcc"
3242			  "\xad\xe4\x94\xc5\x4a\x29\xae\x70",
3243		.klen   = 40,
3244		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3245			  "\x00\x00\x00\x00\x00\x00\x00\x01",
3246		.input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3247			  "\x38\x39\x41\x42\x43\x44\x45\x46",
3248		.ilen   = 16,
3249		.result = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0"
3250			  "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41",
3251		.rlen   = 16,
3252	}, { /* LRW-32-AES 5 */
3253		.key    = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff"
3254			  "\xf8\x86\xce\xac\x93\xc5\xad\xc6"
3255			  "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd"
3256			  "\x52\x13\xb2\xb7\xf0\xff\x11\xd8"
3257			  "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f",
3258		.klen   = 40,
3259		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3260			  "\x00\x00\x00\x02\x00\x00\x00\x00",
3261		.input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3262			  "\x38\x39\x41\x42\x43\x44\x45\x46",
3263		.ilen   = 16,
3264		.result = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65"
3265			  "\xc8\x60\x48\x02\x87\xe3\x34\x06",
3266		.rlen   = 16,
3267	}, { /* LRW-32-AES 6 */
3268		.key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3269			  "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3270			  "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3271			  "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3272			  "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3273			  "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3274		.klen   = 48,
3275		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3276			  "\x00\x00\x00\x00\x00\x00\x00\x01",
3277		.input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3278			  "\x38\x39\x41\x42\x43\x44\x45\x46",
3279		.ilen   = 16,
3280		.result = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e"
3281			  "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b",
3282		.rlen   = 16,
3283	}, { /* LRW-32-AES 7 */
3284		.key    = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d"
3285			  "\xd4\x70\x98\x0b\xc7\x95\x84\xc8"
3286			  "\xb2\xfb\x64\xce\x60\x97\x87\x8d"
3287			  "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7"
3288			  "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4"
3289			  "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c",
3290		.klen   = 48,
3291		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3292			  "\x00\x00\x00\x02\x00\x00\x00\x00",
3293		.input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3294			  "\x38\x39\x41\x42\x43\x44\x45\x46",
3295		.ilen   = 16,
3296		.result = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f"
3297			  "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5",
3298		.rlen   = 16,
3299	}, {
3300/* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */
3301		.key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3302			  "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3303			  "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3304			  "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3305			  "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3306			  "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3307		.klen   = 48,
3308		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3309			  "\x00\x00\x00\x00\x00\x00\x00\x01",
3310		.input  = "\x05\x11\xb7\x18\xab\xc6\x2d\xac"
3311			  "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c"
3312			  "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8"
3313			  "\x50\x38\x1f\x71\x49\xb6\x57\xd6"
3314			  "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90"
3315			  "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6"
3316			  "\xad\x1e\x9e\x20\x5f\x38\xbe\x04"
3317			  "\xda\x10\x8e\xed\xa2\xa4\x87\xab"
3318			  "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c"
3319			  "\xc9\xac\x42\x31\x95\x7c\xc9\x04"
3320			  "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6"
3321			  "\x15\xd7\x3f\x4f\x2f\x66\x69\x03"
3322			  "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65"
3323			  "\x4c\x96\x12\xed\x7c\x92\x03\x01"
3324			  "\x6f\xbc\x35\x93\xac\xf1\x27\xf1"
3325			  "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50"
3326			  "\x89\xa4\x8e\x66\x44\x85\xcc\xfd"
3327			  "\x33\x14\x70\xe3\x96\xb2\xc3\xd3"
3328			  "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5"
3329			  "\x2d\x64\x75\xdd\xb4\x54\xe6\x74"
3330			  "\x8c\xd3\x9d\x9e\x86\xab\x51\x53"
3331			  "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40"
3332			  "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5"
3333			  "\x76\x12\x73\x44\x1a\x56\xd7\x72"
3334			  "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda"
3335			  "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd"
3336			  "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60"
3337			  "\x1a\xe2\x70\x85\x58\xc2\x1b\x09"
3338			  "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9"
3339			  "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8"
3340			  "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8"
3341			  "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10"
3342			  "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1"
3343			  "\x90\x3e\x76\x4a\x74\xa4\x21\x2c"
3344			  "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e"
3345			  "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f"
3346			  "\x8d\x23\x31\x74\x84\xeb\x88\x6e"
3347			  "\xcc\xb9\xbc\x22\x83\x19\x07\x22"
3348			  "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78"
3349			  "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5"
3350			  "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41"
3351			  "\x3c\xce\x8f\x42\x60\x71\xa7\x75"
3352			  "\x08\x40\x65\x8a\x82\xbf\xf5\x43"
3353			  "\x71\x96\xa9\x4d\x44\x8a\x20\xbe"
3354			  "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65"
3355			  "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9"
3356			  "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4"
3357			  "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a"
3358			  "\x62\x73\x65\xfd\x46\x63\x25\x3d"
3359			  "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf"
3360			  "\x24\xf3\xb4\xac\x64\xba\xdf\x4b"
3361			  "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7"
3362			  "\xc5\x68\x77\x84\x32\x2b\xcc\x85"
3363			  "\x74\x96\xf0\x12\x77\x61\xb9\xeb"
3364			  "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8"
3365			  "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24"
3366			  "\xda\x39\x87\x45\xc0\x2b\xbb\x01"
3367			  "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce"
3368			  "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6"
3369			  "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32"
3370			  "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45"
3371			  "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6"
3372			  "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4"
3373			  "\x21\xc4\xc2\x75\x67\x89\x37\x0a",
3374		.ilen   = 512,
3375		.result = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b"
3376			  "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a"
3377			  "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23"
3378			  "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e"
3379			  "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c"
3380			  "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d"
3381			  "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3"
3382			  "\xe8\x58\x46\x97\x39\x51\x07\xde"
3383			  "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3"
3384			  "\x0e\x84\x23\x1d\x16\xd4\x1c\x59"
3385			  "\x9c\x1a\x02\x55\xab\x3a\x97\x1d"
3386			  "\xdf\xdd\xc7\x06\x51\xd7\x70\xae"
3387			  "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82"
3388			  "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68"
3389			  "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce"
3390			  "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98"
3391			  "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2"
3392			  "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f"
3393			  "\xea\x20\xe7\xcb\x65\x77\x3a\xdf"
3394			  "\xc8\x97\x67\x15\xc2\x2a\x27\xcc"
3395			  "\x18\x55\xa1\x24\x0b\x24\x24\xaf"
3396			  "\x5b\xec\x68\xb8\xc8\xf5\xba\x63"
3397			  "\xff\xed\x89\xce\xd5\x3d\x88\xf3"
3398			  "\x25\xef\x05\x7c\x3a\xef\xeb\xd8"
3399			  "\x7a\x32\x0d\xd1\x1e\x58\x59\x99"
3400			  "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c"
3401			  "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50"
3402			  "\x41\x30\x58\xc5\x62\x74\x52\x1d"
3403			  "\x45\x24\x6a\x42\x64\x4f\x97\x1c"
3404			  "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48"
3405			  "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1"
3406			  "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46"
3407			  "\xe4\x81\x84\x95\x36\x59\x7a\x6b"
3408			  "\xaa\xb3\x60\xad\xce\x9f\x9f\x28"
3409			  "\xe0\x01\x75\x22\xc4\x4e\xa9\x62"
3410			  "\x5c\x62\x0d\x00\xcb\x13\xe8\x43"
3411			  "\x72\xd4\x2d\x53\x46\xb5\xd1\x16"
3412			  "\x22\x18\xdf\x34\x33\xf5\xd6\x1c"
3413			  "\xb8\x79\x78\x97\x94\xff\x72\x13"
3414			  "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6"
3415			  "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4"
3416			  "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f"
3417			  "\x2d\x14\x8e\x24\x61\x2c\xe1\x17"
3418			  "\xcc\xce\x51\x0c\x19\x8a\x82\x30"
3419			  "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd"
3420			  "\xb7\xeb\xfa\xfd\x27\x51\xde\x85"
3421			  "\x1e\x86\x53\x11\x53\x94\x00\xee"
3422			  "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11"
3423			  "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62"
3424			  "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1"
3425			  "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a"
3426			  "\x9e\xfa\x31\x18\x45\x3c\x21\x33"
3427			  "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1"
3428			  "\x03\xad\x1b\x48\xd4\x67\x27\xf0"
3429			  "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7"
3430			  "\xdd\x2b\x01\x39\x04\x5a\x58\x7a"
3431			  "\xf7\x11\x90\xec\xbd\x51\x5c\x32"
3432			  "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6"
3433			  "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d"
3434			  "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4"
3435			  "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3"
3436			  "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29"
3437			  "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7"
3438			  "\x74\x3f\x7d\x58\x88\x75\xde\x3e",
3439		.rlen   = 512,
3440	}
3441};
3442
3443static struct cipher_testvec aes_lrw_dec_tv_template[] = {
3444	/* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */
3445	/* same as enc vectors with input and result reversed */
3446	{ /* LRW-32-AES 1 */
3447		.key    = "\x45\x62\xac\x25\xf8\x28\x17\x6d"
3448			  "\x4c\x26\x84\x14\xb5\x68\x01\x85"
3449			  "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03"
3450			  "\xee\x5a\x83\x0c\xcc\x09\x4c\x87",
3451		.klen   = 32,
3452		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3453			  "\x00\x00\x00\x00\x00\x00\x00\x01",
3454		.input  = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f"
3455			  "\xe9\x5d\x48\x92\x54\x63\x4e\xb8",
3456		.ilen   = 16,
3457		.result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3458			  "\x38\x39\x41\x42\x43\x44\x45\x46",
3459		.rlen   = 16,
3460	}, { /* LRW-32-AES 2 */
3461		.key    = "\x59\x70\x47\x14\xf5\x57\x47\x8c"
3462			  "\xd7\x79\xe8\x0f\x54\x88\x79\x44"
3463			  "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea"
3464			  "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf",
3465		.klen   = 32,
3466		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3467			  "\x00\x00\x00\x00\x00\x00\x00\x02",
3468		.input  = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5"
3469			  "\x27\x4f\x07\x69\xb2\x60\xe1\x36",
3470		.ilen   = 16,
3471		.result  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3472			   "\x38\x39\x41\x42\x43\x44\x45\x46",
3473		.rlen   = 16,
3474	}, { /* LRW-32-AES 3 */
3475		.key    = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50"
3476			  "\x30\xfe\x69\xe2\x37\x7f\x98\x47"
3477			  "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6"
3478			  "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f",
3479		.klen   = 32,
3480		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3481			  "\x00\x00\x00\x02\x00\x00\x00\x00",
3482		.input  = "\x76\x32\x21\x83\xed\x8f\xf1\x82"
3483			  "\xf9\x59\x62\x03\x69\x0e\x5e\x01",
3484		.ilen   = 16,
3485		.result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3486			  "\x38\x39\x41\x42\x43\x44\x45\x46",
3487		.rlen   = 16,
3488	}, { /* LRW-32-AES 4 */
3489		.key    = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15"
3490			  "\x25\x83\xf7\x3c\x1f\x01\x28\x74"
3491			  "\xca\xc6\xbc\x35\x4d\x4a\x65\x54"
3492			  "\x90\xae\x61\xcf\x7b\xae\xbd\xcc"
3493			  "\xad\xe4\x94\xc5\x4a\x29\xae\x70",
3494		.klen   = 40,
3495		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3496			  "\x00\x00\x00\x00\x00\x00\x00\x01",
3497		.input  = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0"
3498			  "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41",
3499		.ilen   = 16,
3500		.result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3501			  "\x38\x39\x41\x42\x43\x44\x45\x46",
3502		.rlen   = 16,
3503	}, { /* LRW-32-AES 5 */
3504		.key    = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff"
3505			  "\xf8\x86\xce\xac\x93\xc5\xad\xc6"
3506			  "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd"
3507			  "\x52\x13\xb2\xb7\xf0\xff\x11\xd8"
3508			  "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f",
3509		.klen   = 40,
3510		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3511			  "\x00\x00\x00\x02\x00\x00\x00\x00",
3512		.input  = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65"
3513			  "\xc8\x60\x48\x02\x87\xe3\x34\x06",
3514		.ilen   = 16,
3515		.result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3516			  "\x38\x39\x41\x42\x43\x44\x45\x46",
3517		.rlen   = 16,
3518	}, { /* LRW-32-AES 6 */
3519		.key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3520			  "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3521			  "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3522			  "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3523			  "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3524			  "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3525		.klen   = 48,
3526		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3527			  "\x00\x00\x00\x00\x00\x00\x00\x01",
3528		.input  = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e"
3529			  "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b",
3530		.ilen   = 16,
3531		.result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3532			  "\x38\x39\x41\x42\x43\x44\x45\x46",
3533		.rlen   = 16,
3534	}, { /* LRW-32-AES 7 */
3535		.key    = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d"
3536			  "\xd4\x70\x98\x0b\xc7\x95\x84\xc8"
3537			  "\xb2\xfb\x64\xce\x60\x97\x87\x8d"
3538			  "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7"
3539			  "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4"
3540			  "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c",
3541		.klen   = 48,
3542		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3543			  "\x00\x00\x00\x02\x00\x00\x00\x00",
3544		.input  = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f"
3545			  "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5",
3546		.ilen   = 16,
3547		.result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3548			  "\x38\x39\x41\x42\x43\x44\x45\x46",
3549		.rlen   = 16,
3550	}, {
3551/* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */
3552		.key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3553			  "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3554			  "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3555			  "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3556			  "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3557			  "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3558		.klen   = 48,
3559		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3560			  "\x00\x00\x00\x00\x00\x00\x00\x01",
3561		.input	= "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b"
3562			  "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a"
3563			  "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23"
3564			  "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e"
3565			  "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c"
3566			  "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d"
3567			  "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3"
3568			  "\xe8\x58\x46\x97\x39\x51\x07\xde"
3569			  "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3"
3570			  "\x0e\x84\x23\x1d\x16\xd4\x1c\x59"
3571			  "\x9c\x1a\x02\x55\xab\x3a\x97\x1d"
3572			  "\xdf\xdd\xc7\x06\x51\xd7\x70\xae"
3573			  "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82"
3574			  "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68"
3575			  "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce"
3576			  "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98"
3577			  "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2"
3578			  "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f"
3579			  "\xea\x20\xe7\xcb\x65\x77\x3a\xdf"
3580			  "\xc8\x97\x67\x15\xc2\x2a\x27\xcc"
3581			  "\x18\x55\xa1\x24\x0b\x24\x24\xaf"
3582			  "\x5b\xec\x68\xb8\xc8\xf5\xba\x63"
3583			  "\xff\xed\x89\xce\xd5\x3d\x88\xf3"
3584			  "\x25\xef\x05\x7c\x3a\xef\xeb\xd8"
3585			  "\x7a\x32\x0d\xd1\x1e\x58\x59\x99"
3586			  "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c"
3587			  "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50"
3588			  "\x41\x30\x58\xc5\x62\x74\x52\x1d"
3589			  "\x45\x24\x6a\x42\x64\x4f\x97\x1c"
3590			  "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48"
3591			  "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1"
3592			  "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46"
3593			  "\xe4\x81\x84\x95\x36\x59\x7a\x6b"
3594			  "\xaa\xb3\x60\xad\xce\x9f\x9f\x28"
3595			  "\xe0\x01\x75\x22\xc4\x4e\xa9\x62"
3596			  "\x5c\x62\x0d\x00\xcb\x13\xe8\x43"
3597			  "\x72\xd4\x2d\x53\x46\xb5\xd1\x16"
3598			  "\x22\x18\xdf\x34\x33\xf5\xd6\x1c"
3599			  "\xb8\x79\x78\x97\x94\xff\x72\x13"
3600			  "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6"
3601			  "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4"
3602			  "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f"
3603			  "\x2d\x14\x8e\x24\x61\x2c\xe1\x17"
3604			  "\xcc\xce\x51\x0c\x19\x8a\x82\x30"
3605			  "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd"
3606			  "\xb7\xeb\xfa\xfd\x27\x51\xde\x85"
3607			  "\x1e\x86\x53\x11\x53\x94\x00\xee"
3608			  "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11"
3609			  "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62"
3610			  "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1"
3611			  "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a"
3612			  "\x9e\xfa\x31\x18\x45\x3c\x21\x33"
3613			  "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1"
3614			  "\x03\xad\x1b\x48\xd4\x67\x27\xf0"
3615			  "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7"
3616			  "\xdd\x2b\x01\x39\x04\x5a\x58\x7a"
3617			  "\xf7\x11\x90\xec\xbd\x51\x5c\x32"
3618			  "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6"
3619			  "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d"
3620			  "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4"
3621			  "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3"
3622			  "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29"
3623			  "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7"
3624			  "\x74\x3f\x7d\x58\x88\x75\xde\x3e",
3625		.ilen   = 512,
3626		.result	= "\x05\x11\xb7\x18\xab\xc6\x2d\xac"
3627			  "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c"
3628			  "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8"
3629			  "\x50\x38\x1f\x71\x49\xb6\x57\xd6"
3630			  "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90"
3631			  "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6"
3632			  "\xad\x1e\x9e\x20\x5f\x38\xbe\x04"
3633			  "\xda\x10\x8e\xed\xa2\xa4\x87\xab"
3634			  "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c"
3635			  "\xc9\xac\x42\x31\x95\x7c\xc9\x04"
3636			  "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6"
3637			  "\x15\xd7\x3f\x4f\x2f\x66\x69\x03"
3638			  "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65"
3639			  "\x4c\x96\x12\xed\x7c\x92\x03\x01"
3640			  "\x6f\xbc\x35\x93\xac\xf1\x27\xf1"
3641			  "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50"
3642			  "\x89\xa4\x8e\x66\x44\x85\xcc\xfd"
3643			  "\x33\x14\x70\xe3\x96\xb2\xc3\xd3"
3644			  "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5"
3645			  "\x2d\x64\x75\xdd\xb4\x54\xe6\x74"
3646			  "\x8c\xd3\x9d\x9e\x86\xab\x51\x53"
3647			  "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40"
3648			  "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5"
3649			  "\x76\x12\x73\x44\x1a\x56\xd7\x72"
3650			  "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda"
3651			  "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd"
3652			  "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60"
3653			  "\x1a\xe2\x70\x85\x58\xc2\x1b\x09"
3654			  "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9"
3655			  "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8"
3656			  "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8"
3657			  "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10"
3658			  "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1"
3659			  "\x90\x3e\x76\x4a\x74\xa4\x21\x2c"
3660			  "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e"
3661			  "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f"
3662			  "\x8d\x23\x31\x74\x84\xeb\x88\x6e"
3663			  "\xcc\xb9\xbc\x22\x83\x19\x07\x22"
3664			  "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78"
3665			  "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5"
3666			  "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41"
3667			  "\x3c\xce\x8f\x42\x60\x71\xa7\x75"
3668			  "\x08\x40\x65\x8a\x82\xbf\xf5\x43"
3669			  "\x71\x96\xa9\x4d\x44\x8a\x20\xbe"
3670			  "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65"
3671			  "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9"
3672			  "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4"
3673			  "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a"
3674			  "\x62\x73\x65\xfd\x46\x63\x25\x3d"
3675			  "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf"
3676			  "\x24\xf3\xb4\xac\x64\xba\xdf\x4b"
3677			  "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7"
3678			  "\xc5\x68\x77\x84\x32\x2b\xcc\x85"
3679			  "\x74\x96\xf0\x12\x77\x61\xb9\xeb"
3680			  "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8"
3681			  "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24"
3682			  "\xda\x39\x87\x45\xc0\x2b\xbb\x01"
3683			  "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce"
3684			  "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6"
3685			  "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32"
3686			  "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45"
3687			  "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6"
3688			  "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4"
3689			  "\x21\xc4\xc2\x75\x67\x89\x37\x0a",
3690		.rlen   = 512,
3691	}
3692};
3693
3694static struct cipher_testvec aes_xts_enc_tv_template[] = {
3695	/* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */
3696	{ /* XTS-AES 1 */
3697		.key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
3698			  "\x00\x00\x00\x00\x00\x00\x00\x00"
3699			  "\x00\x00\x00\x00\x00\x00\x00\x00"
3700			  "\x00\x00\x00\x00\x00\x00\x00\x00",
3701		.klen   = 32,
3702		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3703			  "\x00\x00\x00\x00\x00\x00\x00\x00",
3704		.input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
3705			  "\x00\x00\x00\x00\x00\x00\x00\x00"
3706			  "\x00\x00\x00\x00\x00\x00\x00\x00"
3707			  "\x00\x00\x00\x00\x00\x00\x00\x00",
3708		.ilen   = 32,
3709		.result = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec"
3710			  "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92"
3711			  "\xcd\x43\xd2\xf5\x95\x98\xed\x85"
3712			  "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e",
3713		.rlen   = 32,
3714	}, { /* XTS-AES 2 */
3715		.key    = "\x11\x11\x11\x11\x11\x11\x11\x11"
3716			  "\x11\x11\x11\x11\x11\x11\x11\x11"
3717			  "\x22\x22\x22\x22\x22\x22\x22\x22"
3718			  "\x22\x22\x22\x22\x22\x22\x22\x22",
3719		.klen   = 32,
3720		.iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3721			  "\x00\x00\x00\x00\x00\x00\x00\x00",
3722		.input  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3723			  "\x44\x44\x44\x44\x44\x44\x44\x44"
3724			  "\x44\x44\x44\x44\x44\x44\x44\x44"
3725			  "\x44\x44\x44\x44\x44\x44\x44\x44",
3726		.ilen   = 32,
3727		.result = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e"
3728			  "\x39\x33\x40\x38\xac\xef\x83\x8b"
3729			  "\xfb\x18\x6f\xff\x74\x80\xad\xc4"
3730			  "\x28\x93\x82\xec\xd6\xd3\x94\xf0",
3731		.rlen   = 32,
3732	}, { /* XTS-AES 3 */
3733		.key    = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8"
3734			  "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0"
3735			  "\x22\x22\x22\x22\x22\x22\x22\x22"
3736			  "\x22\x22\x22\x22\x22\x22\x22\x22",
3737		.klen   = 32,
3738		.iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3739			  "\x00\x00\x00\x00\x00\x00\x00\x00",
3740		.input  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3741			  "\x44\x44\x44\x44\x44\x44\x44\x44"
3742			  "\x44\x44\x44\x44\x44\x44\x44\x44"
3743			  "\x44\x44\x44\x44\x44\x44\x44\x44",
3744		.ilen   = 32,
3745		.result = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a"
3746			  "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2"
3747			  "\x92\xdf\x4c\x04\x7e\x0b\x21\x53"
3748			  "\x21\x86\xa5\x97\x1a\x22\x7a\x89",
3749		.rlen   = 32,
3750	}, { /* XTS-AES 4 */
3751		.key    = "\x27\x18\x28\x18\x28\x45\x90\x45"
3752			  "\x23\x53\x60\x28\x74\x71\x35\x26"
3753			  "\x31\x41\x59\x26\x53\x58\x97\x93"
3754			  "\x23\x84\x62\x64\x33\x83\x27\x95",
3755		.klen   = 32,
3756		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3757			  "\x00\x00\x00\x00\x00\x00\x00\x00",
3758		.input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
3759			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3760			  "\x10\x11\x12\x13\x14\x15\x16\x17"
3761			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3762			  "\x20\x21\x22\x23\x24\x25\x26\x27"
3763			  "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3764			  "\x30\x31\x32\x33\x34\x35\x36\x37"
3765			  "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3766			  "\x40\x41\x42\x43\x44\x45\x46\x47"
3767			  "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3768			  "\x50\x51\x52\x53\x54\x55\x56\x57"
3769			  "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3770			  "\x60\x61\x62\x63\x64\x65\x66\x67"
3771			  "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3772			  "\x70\x71\x72\x73\x74\x75\x76\x77"
3773			  "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3774			  "\x80\x81\x82\x83\x84\x85\x86\x87"
3775			  "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3776			  "\x90\x91\x92\x93\x94\x95\x96\x97"
3777			  "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3778			  "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3779			  "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3780			  "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3781			  "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3782			  "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3783			  "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3784			  "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3785			  "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3786			  "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3787			  "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3788			  "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3789			  "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
3790			  "\x00\x01\x02\x03\x04\x05\x06\x07"
3791			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3792			  "\x10\x11\x12\x13\x14\x15\x16\x17"
3793			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3794			  "\x20\x21\x22\x23\x24\x25\x26\x27"
3795			  "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3796			  "\x30\x31\x32\x33\x34\x35\x36\x37"
3797			  "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3798			  "\x40\x41\x42\x43\x44\x45\x46\x47"
3799			  "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3800			  "\x50\x51\x52\x53\x54\x55\x56\x57"
3801			  "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3802			  "\x60\x61\x62\x63\x64\x65\x66\x67"
3803			  "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3804			  "\x70\x71\x72\x73\x74\x75\x76\x77"
3805			  "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3806			  "\x80\x81\x82\x83\x84\x85\x86\x87"
3807			  "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3808			  "\x90\x91\x92\x93\x94\x95\x96\x97"
3809			  "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3810			  "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3811			  "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3812			  "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3813			  "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3814			  "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3815			  "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3816			  "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3817			  "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3818			  "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3819			  "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3820			  "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3821			  "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
3822		.ilen   = 512,
3823		.result = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76"
3824			  "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2"
3825			  "\xa9\x6e\x4b\xbe\x32\x08\xff\x25"
3826			  "\x28\x7d\xd3\x81\x96\x16\xe8\x9c"
3827			  "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f"
3828			  "\x83\x33\xd8\xfa\x7f\x56\x00\x00"
3829			  "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad"
3830			  "\x40\xe7\x36\xdd\xb4\xd3\x54\x12"
3831			  "\x32\x80\x63\xfd\x2a\xab\x53\xe5"
3832			  "\xea\x1e\x0a\x9f\x33\x25\x00\xa5"
3833			  "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc"
3834			  "\x51\x2c\x88\x66\xc7\xe8\x60\xce"
3835			  "\x93\xfd\xf1\x66\xa2\x49\x12\xb4"
3836			  "\x22\x97\x61\x46\xae\x20\xce\x84"
3837			  "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a"
3838			  "\xae\xf2\x0c\x0d\x61\xad\x02\x65"
3839			  "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89"
3840			  "\x52\xc6\x51\xd3\x31\x74\xbe\x51"
3841			  "\xa1\x0c\x42\x11\x10\xe6\xd8\x15"
3842			  "\x88\xed\xe8\x21\x03\xa2\x52\xd8"
3843			  "\xa7\x50\xe8\x76\x8d\xef\xff\xed"
3844			  "\x91\x22\x81\x0a\xae\xb9\x9f\x91"
3845			  "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e"
3846			  "\x51\xbc\xb0\x82\x35\xa6\xf4\x34"
3847			  "\x13\x32\xe4\xca\x60\x48\x2a\x4b"
3848			  "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5"
3849			  "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4"
3850			  "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c"
3851			  "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd"
3852			  "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3"
3853			  "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f"
3854			  "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e"
3855			  "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91"
3856			  "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19"
3857			  "\x7c\x4e\x5b\x03\x39\x36\x97\xe1"
3858			  "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc"
3859			  "\x1e\x08\x29\x85\x16\xe2\xc9\xed"
3860			  "\x03\xff\x3c\x1b\x78\x60\xf6\xde"
3861			  "\x76\xd4\xce\xcd\x94\xc8\x11\x98"
3862			  "\x55\xef\x52\x97\xca\x67\xe9\xf3"
3863			  "\xe7\xff\x72\xb1\xe9\x97\x85\xca"
3864			  "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6"
3865			  "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc"
3866			  "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44"
3867			  "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0"
3868			  "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95"
3869			  "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4"
3870			  "\x99\x02\x7a\x78\x57\x2a\xee\xbd"
3871			  "\x74\xd2\x0c\xc3\x98\x81\xc2\x13"
3872			  "\xee\x77\x0b\x10\x10\xe4\xbe\xa7"
3873			  "\x18\x84\x69\x77\xae\x11\x9f\x7a"
3874			  "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52"
3875			  "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a"
3876			  "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38"
3877			  "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e"
3878			  "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e"
3879			  "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad"
3880			  "\x15\xb4\xaa\x5b\x65\x50\x16\xa8"
3881			  "\x44\x92\x77\xdb\xd4\x77\xef\x2c"
3882			  "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d"
3883			  "\xeb\x4a\x42\x7d\x19\x23\xce\x3f"
3884			  "\xf2\x62\x73\x57\x79\xa4\x18\xf2"
3885			  "\x0a\x28\x2d\xf9\x20\x14\x7b\xea"
3886			  "\xbe\x42\x1e\xe5\x31\x9d\x05\x68",
3887		.rlen   = 512,
3888	}
3889};
3890
3891static struct cipher_testvec aes_xts_dec_tv_template[] = {
3892	/* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */
3893	{ /* XTS-AES 1 */
3894		.key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
3895			  "\x00\x00\x00\x00\x00\x00\x00\x00"
3896			  "\x00\x00\x00\x00\x00\x00\x00\x00"
3897			  "\x00\x00\x00\x00\x00\x00\x00\x00",
3898		.klen   = 32,
3899		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3900			  "\x00\x00\x00\x00\x00\x00\x00\x00",
3901		.input = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec"
3902			 "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92"
3903			 "\xcd\x43\xd2\xf5\x95\x98\xed\x85"
3904			 "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e",
3905		.ilen   = 32,
3906		.result  = "\x00\x00\x00\x00\x00\x00\x00\x00"
3907			   "\x00\x00\x00\x00\x00\x00\x00\x00"
3908			   "\x00\x00\x00\x00\x00\x00\x00\x00"
3909			   "\x00\x00\x00\x00\x00\x00\x00\x00",
3910		.rlen   = 32,
3911	}, { /* XTS-AES 2 */
3912		.key    = "\x11\x11\x11\x11\x11\x11\x11\x11"
3913			  "\x11\x11\x11\x11\x11\x11\x11\x11"
3914			  "\x22\x22\x22\x22\x22\x22\x22\x22"
3915			  "\x22\x22\x22\x22\x22\x22\x22\x22",
3916		.klen   = 32,
3917		.iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3918			  "\x00\x00\x00\x00\x00\x00\x00\x00",
3919		.input  = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e"
3920			  "\x39\x33\x40\x38\xac\xef\x83\x8b"
3921			  "\xfb\x18\x6f\xff\x74\x80\xad\xc4"
3922			  "\x28\x93\x82\xec\xd6\xd3\x94\xf0",
3923		.ilen   = 32,
3924		.result = "\x44\x44\x44\x44\x44\x44\x44\x44"
3925			  "\x44\x44\x44\x44\x44\x44\x44\x44"
3926			  "\x44\x44\x44\x44\x44\x44\x44\x44"
3927			  "\x44\x44\x44\x44\x44\x44\x44\x44",
3928		.rlen   = 32,
3929	}, { /* XTS-AES 3 */
3930		.key    = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8"
3931			  "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0"
3932			  "\x22\x22\x22\x22\x22\x22\x22\x22"
3933			  "\x22\x22\x22\x22\x22\x22\x22\x22",
3934		.klen   = 32,
3935		.iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3936			  "\x00\x00\x00\x00\x00\x00\x00\x00",
3937		.input = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a"
3938			  "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2"
3939			  "\x92\xdf\x4c\x04\x7e\x0b\x21\x53"
3940			  "\x21\x86\xa5\x97\x1a\x22\x7a\x89",
3941		.ilen   = 32,
3942		.result  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3943			  "\x44\x44\x44\x44\x44\x44\x44\x44"
3944			  "\x44\x44\x44\x44\x44\x44\x44\x44"
3945			  "\x44\x44\x44\x44\x44\x44\x44\x44",
3946		.rlen   = 32,
3947	}, { /* XTS-AES 4 */
3948		.key    = "\x27\x18\x28\x18\x28\x45\x90\x45"
3949			  "\x23\x53\x60\x28\x74\x71\x35\x26"
3950			  "\x31\x41\x59\x26\x53\x58\x97\x93"
3951			  "\x23\x84\x62\x64\x33\x83\x27\x95",
3952		.klen   = 32,
3953		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3954			  "\x00\x00\x00\x00\x00\x00\x00\x00",
3955		.input  = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76"
3956			  "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2"
3957			  "\xa9\x6e\x4b\xbe\x32\x08\xff\x25"
3958			  "\x28\x7d\xd3\x81\x96\x16\xe8\x9c"
3959			  "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f"
3960			  "\x83\x33\xd8\xfa\x7f\x56\x00\x00"
3961			  "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad"
3962			  "\x40\xe7\x36\xdd\xb4\xd3\x54\x12"
3963			  "\x32\x80\x63\xfd\x2a\xab\x53\xe5"
3964			  "\xea\x1e\x0a\x9f\x33\x25\x00\xa5"
3965			  "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc"
3966			  "\x51\x2c\x88\x66\xc7\xe8\x60\xce"
3967			  "\x93\xfd\xf1\x66\xa2\x49\x12\xb4"
3968			  "\x22\x97\x61\x46\xae\x20\xce\x84"
3969			  "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a"
3970			  "\xae\xf2\x0c\x0d\x61\xad\x02\x65"
3971			  "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89"
3972			  "\x52\xc6\x51\xd3\x31\x74\xbe\x51"
3973			  "\xa1\x0c\x42\x11\x10\xe6\xd8\x15"
3974			  "\x88\xed\xe8\x21\x03\xa2\x52\xd8"
3975			  "\xa7\x50\xe8\x76\x8d\xef\xff\xed"
3976			  "\x91\x22\x81\x0a\xae\xb9\x9f\x91"
3977			  "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e"
3978			  "\x51\xbc\xb0\x82\x35\xa6\xf4\x34"
3979			  "\x13\x32\xe4\xca\x60\x48\x2a\x4b"
3980			  "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5"
3981			  "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4"
3982			  "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c"
3983			  "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd"
3984			  "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3"
3985			  "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f"
3986			  "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e"
3987			  "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91"
3988			  "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19"
3989			  "\x7c\x4e\x5b\x03\x39\x36\x97\xe1"
3990			  "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc"
3991			  "\x1e\x08\x29\x85\x16\xe2\xc9\xed"
3992			  "\x03\xff\x3c\x1b\x78\x60\xf6\xde"
3993			  "\x76\xd4\xce\xcd\x94\xc8\x11\x98"
3994			  "\x55\xef\x52\x97\xca\x67\xe9\xf3"
3995			  "\xe7\xff\x72\xb1\xe9\x97\x85\xca"
3996			  "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6"
3997			  "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc"
3998			  "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44"
3999			  "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0"
4000			  "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95"
4001			  "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4"
4002			  "\x99\x02\x7a\x78\x57\x2a\xee\xbd"
4003			  "\x74\xd2\x0c\xc3\x98\x81\xc2\x13"
4004			  "\xee\x77\x0b\x10\x10\xe4\xbe\xa7"
4005			  "\x18\x84\x69\x77\xae\x11\x9f\x7a"
4006			  "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52"
4007			  "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a"
4008			  "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38"
4009			  "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e"
4010			  "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e"
4011			  "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad"
4012			  "\x15\xb4\xaa\x5b\x65\x50\x16\xa8"
4013			  "\x44\x92\x77\xdb\xd4\x77\xef\x2c"
4014			  "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d"
4015			  "\xeb\x4a\x42\x7d\x19\x23\xce\x3f"
4016			  "\xf2\x62\x73\x57\x79\xa4\x18\xf2"
4017			  "\x0a\x28\x2d\xf9\x20\x14\x7b\xea"
4018			  "\xbe\x42\x1e\xe5\x31\x9d\x05\x68",
4019		.ilen   = 512,
4020		.result = "\x00\x01\x02\x03\x04\x05\x06\x07"
4021			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4022			  "\x10\x11\x12\x13\x14\x15\x16\x17"
4023			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4024			  "\x20\x21\x22\x23\x24\x25\x26\x27"
4025			  "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
4026			  "\x30\x31\x32\x33\x34\x35\x36\x37"
4027			  "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
4028			  "\x40\x41\x42\x43\x44\x45\x46\x47"
4029			  "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
4030			  "\x50\x51\x52\x53\x54\x55\x56\x57"
4031			  "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
4032			  "\x60\x61\x62\x63\x64\x65\x66\x67"
4033			  "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
4034			  "\x70\x71\x72\x73\x74\x75\x76\x77"
4035			  "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
4036			  "\x80\x81\x82\x83\x84\x85\x86\x87"
4037			  "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
4038			  "\x90\x91\x92\x93\x94\x95\x96\x97"
4039			  "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
4040			  "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
4041			  "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
4042			  "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
4043			  "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
4044			  "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
4045			  "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
4046			  "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
4047			  "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
4048			  "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
4049			  "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
4050			  "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4051			  "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
4052			  "\x00\x01\x02\x03\x04\x05\x06\x07"
4053			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4054			  "\x10\x11\x12\x13\x14\x15\x16\x17"
4055			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4056			  "\x20\x21\x22\x23\x24\x25\x26\x27"
4057			  "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
4058			  "\x30\x31\x32\x33\x34\x35\x36\x37"
4059			  "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
4060			  "\x40\x41\x42\x43\x44\x45\x46\x47"
4061			  "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
4062			  "\x50\x51\x52\x53\x54\x55\x56\x57"
4063			  "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
4064			  "\x60\x61\x62\x63\x64\x65\x66\x67"
4065			  "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
4066			  "\x70\x71\x72\x73\x74\x75\x76\x77"
4067			  "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
4068			  "\x80\x81\x82\x83\x84\x85\x86\x87"
4069			  "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
4070			  "\x90\x91\x92\x93\x94\x95\x96\x97"
4071			  "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
4072			  "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
4073			  "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
4074			  "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
4075			  "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
4076			  "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
4077			  "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
4078			  "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
4079			  "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
4080			  "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
4081			  "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
4082			  "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4083			  "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4084		.rlen   = 512,
4085	}
4086};
4087
4088
4089static struct cipher_testvec aes_ctr_enc_tv_template[] = {
4090	{ /* From NIST Special Publication 800-38A, Appendix F.5 */
4091		.key	= "\x2b\x7e\x15\x16\x28\xae\xd2\xa6"
4092			  "\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
4093		.klen	= 16,
4094		.iv	= "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4095			  "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4096		.input	= "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
4097			  "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
4098			  "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
4099			  "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
4100			  "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
4101			  "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
4102			  "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
4103			  "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
4104		.ilen	= 64,
4105		.result	= "\x87\x4d\x61\x91\xb6\x20\xe3\x26"
4106			  "\x1b\xef\x68\x64\x99\x0d\xb6\xce"
4107			  "\x98\x06\xf6\x6b\x79\x70\xfd\xff"
4108			  "\x86\x17\x18\x7b\xb9\xff\xfd\xff"
4109			  "\x5a\xe4\xdf\x3e\xdb\xd5\xd3\x5e"
4110			  "\x5b\x4f\x09\x02\x0d\xb0\x3e\xab"
4111			  "\x1e\x03\x1d\xda\x2f\xbe\x03\xd1"
4112			  "\x79\x21\x70\xa0\xf3\x00\x9c\xee",
4113		.rlen	= 64,
4114	}, {
4115		.key	= "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
4116			  "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
4117			  "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
4118		.klen	= 24,
4119		.iv	= "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4120			  "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4121		.input	= "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
4122			  "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
4123			  "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
4124			  "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
4125			  "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
4126			  "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
4127			  "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
4128			  "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
4129		.ilen	= 64,
4130		.result	= "\x1a\xbc\x93\x24\x17\x52\x1c\xa2"
4131			  "\x4f\x2b\x04\x59\xfe\x7e\x6e\x0b"
4132			  "\x09\x03\x39\xec\x0a\xa6\xfa\xef"
4133			  "\xd5\xcc\xc2\xc6\xf4\xce\x8e\x94"
4134			  "\x1e\x36\xb2\x6b\xd1\xeb\xc6\x70"
4135			  "\xd1\xbd\x1d\x66\x56\x20\xab\xf7"
4136			  "\x4f\x78\xa7\xf6\xd2\x98\x09\x58"
4137			  "\x5a\x97\xda\xec\x58\xc6\xb0\x50",
4138		.rlen	= 64,
4139	}, {
4140		.key	= "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
4141			  "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
4142			  "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
4143			  "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
4144		.klen	= 32,
4145		.iv	= "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4146			  "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4147		.input	= "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
4148			  "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
4149			  "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
4150			  "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
4151			  "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
4152			  "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
4153			  "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
4154			  "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
4155		.ilen	= 64,
4156		.result	= "\x60\x1e\xc3\x13\x77\x57\x89\xa5"
4157			  "\xb7\xa7\xf5\x04\xbb\xf3\xd2\x28"
4158			  "\xf4\x43\xe3\xca\x4d\x62\xb5\x9a"
4159			  "\xca\x84\xe9\x90\xca\xca\xf5\xc5"
4160			  "\x2b\x09\x30\xda\xa2\x3d\xe9\x4c"
4161			  "\xe8\x70\x17\xba\x2d\x84\x98\x8d"
4162			  "\xdf\xc9\xc5\x8d\xb6\x7a\xad\xa6"
4163			  "\x13\xc2\xdd\x08\x45\x79\x41\xa6",
4164		.rlen	= 64,
4165	}
4166};
4167
4168static struct cipher_testvec aes_ctr_dec_tv_template[] = {
4169	{ /* From NIST Special Publication 800-38A, Appendix F.5 */
4170		.key	= "\x2b\x7e\x15\x16\x28\xae\xd2\xa6"
4171			  "\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
4172		.klen	= 16,
4173		.iv	= "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4174			  "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4175		.input	= "\x87\x4d\x61\x91\xb6\x20\xe3\x26"
4176			  "\x1b\xef\x68\x64\x99\x0d\xb6\xce"
4177			  "\x98\x06\xf6\x6b\x79\x70\xfd\xff"
4178			  "\x86\x17\x18\x7b\xb9\xff\xfd\xff"
4179			  "\x5a\xe4\xdf\x3e\xdb\xd5\xd3\x5e"
4180			  "\x5b\x4f\x09\x02\x0d\xb0\x3e\xab"
4181			  "\x1e\x03\x1d\xda\x2f\xbe\x03\xd1"
4182			  "\x79\x21\x70\xa0\xf3\x00\x9c\xee",
4183		.ilen	= 64,
4184		.result	= "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
4185			  "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
4186			  "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
4187			  "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
4188			  "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
4189			  "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
4190			  "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
4191			  "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
4192		.rlen	= 64,
4193	}, {
4194		.key	= "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
4195			  "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
4196			  "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
4197		.klen	= 24,
4198		.iv	= "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4199			  "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4200		.input	= "\x1a\xbc\x93\x24\x17\x52\x1c\xa2"
4201			  "\x4f\x2b\x04\x59\xfe\x7e\x6e\x0b"
4202			  "\x09\x03\x39\xec\x0a\xa6\xfa\xef"
4203			  "\xd5\xcc\xc2\xc6\xf4\xce\x8e\x94"
4204			  "\x1e\x36\xb2\x6b\xd1\xeb\xc6\x70"
4205			  "\xd1\xbd\x1d\x66\x56\x20\xab\xf7"
4206			  "\x4f\x78\xa7\xf6\xd2\x98\x09\x58"
4207			  "\x5a\x97\xda\xec\x58\xc6\xb0\x50",
4208		.ilen	= 64,
4209		.result	= "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
4210			  "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
4211			  "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
4212			  "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
4213			  "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
4214			  "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
4215			  "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
4216			  "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
4217		.rlen	= 64,
4218	}, {
4219		.key	= "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
4220			  "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
4221			  "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
4222			  "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
4223		.klen	= 32,
4224		.iv	= "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4225			  "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
4226		.input	= "\x60\x1e\xc3\x13\x77\x57\x89\xa5"
4227			  "\xb7\xa7\xf5\x04\xbb\xf3\xd2\x28"
4228			  "\xf4\x43\xe3\xca\x4d\x62\xb5\x9a"
4229			  "\xca\x84\xe9\x90\xca\xca\xf5\xc5"
4230			  "\x2b\x09\x30\xda\xa2\x3d\xe9\x4c"
4231			  "\xe8\x70\x17\xba\x2d\x84\x98\x8d"
4232			  "\xdf\xc9\xc5\x8d\xb6\x7a\xad\xa6"
4233			  "\x13\xc2\xdd\x08\x45\x79\x41\xa6",
4234		.ilen	= 64,
4235		.result	= "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
4236			  "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
4237			  "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
4238			  "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
4239			  "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
4240			  "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
4241			  "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
4242			  "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
4243		.rlen	= 64,
4244	}
4245};
4246
4247static struct cipher_testvec aes_ctr_rfc3686_enc_tv_template[] = {
4248	{ /* From RFC 3686 */
4249		.key	= "\xae\x68\x52\xf8\x12\x10\x67\xcc"
4250			  "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e"
4251			  "\x00\x00\x00\x30",
4252		.klen	= 20,
4253		.iv	= "\x00\x00\x00\x00\x00\x00\x00\x00",
4254		.input	= "Single block msg",
4255		.ilen	= 16,
4256		.result = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79"
4257			  "\x2d\x61\x75\xa3\x26\x13\x11\xb8",
4258		.rlen	= 16,
4259	}, {
4260		.key	= "\x7e\x24\x06\x78\x17\xfa\xe0\xd7"
4261			  "\x43\xd6\xce\x1f\x32\x53\x91\x63"
4262			  "\x00\x6c\xb6\xdb",
4263		.klen	= 20,
4264		.iv	= "\xc0\x54\x3b\x59\xda\x48\xd9\x0b",
4265		.input	= "\x00\x01\x02\x03\x04\x05\x06\x07"
4266			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4267			  "\x10\x11\x12\x13\x14\x15\x16\x17"
4268			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4269		.ilen	= 32,
4270		.result = "\x51\x04\xa1\x06\x16\x8a\x72\xd9"
4271			  "\x79\x0d\x41\xee\x8e\xda\xd3\x88"
4272			  "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8"
4273			  "\xfc\xe6\x30\xdf\x91\x41\xbe\x28",
4274		.rlen	= 32,
4275	}, {
4276		.key	= "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79"
4277			  "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed"
4278			  "\x86\x3d\x06\xcc\xfd\xb7\x85\x15"
4279			  "\x00\x00\x00\x48",
4280		.klen	= 28,
4281		.iv	= "\x36\x73\x3c\x14\x7d\x6d\x93\xcb",
4282		.input	= "Single block msg",
4283		.ilen	= 16,
4284		.result	= "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8"
4285			  "\x4e\x79\x35\xa0\x03\xcb\xe9\x28",
4286		.rlen	= 16,
4287	}, {
4288		.key	= "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c"
4289			  "\x19\xe7\x34\x08\x19\xe0\xf6\x9c"
4290			  "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a"
4291			  "\x00\x96\xb0\x3b",
4292		.klen	= 28,
4293		.iv	= "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d",
4294		.input	= "\x00\x01\x02\x03\x04\x05\x06\x07"
4295			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4296			  "\x10\x11\x12\x13\x14\x15\x16\x17"
4297			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4298		.ilen	= 32,
4299		.result	= "\x45\x32\x43\xfc\x60\x9b\x23\x32"
4300			  "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f"
4301			  "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c"
4302			  "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00",
4303		.rlen	= 32,
4304	}, {
4305		.key	= "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f"
4306			  "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c"
4307			  "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3"
4308			  "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04"
4309			  "\x00\x00\x00\x60",
4310		.klen	= 36,
4311		.iv	= "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2",
4312		.input	= "Single block msg",
4313		.ilen	= 16,
4314		.result = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7"
4315			  "\x56\x08\x63\xdc\x71\xe3\xe0\xc0",
4316		.rlen	= 16,
4317	}, {
4318		.key	= "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb"
4319			  "\x07\x96\x36\x58\x79\xef\xf8\x86"
4320			  "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74"
4321			  "\x4b\x50\x59\x0c\x87\xa2\x38\x84"
4322			  "\x00\xfa\xac\x24",
4323		.klen	= 36,
4324		.iv	= "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75",
4325		.input	= "\x00\x01\x02\x03\x04\x05\x06\x07"
4326			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4327			  "\x10\x11\x12\x13\x14\x15\x16\x17"
4328			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4329		.ilen	= 32,
4330		.result = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c"
4331			  "\x49\xee\x00\x0b\x80\x4e\xb2\xa9"
4332			  "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a"
4333			  "\x55\x30\x83\x1d\x93\x44\xaf\x1c",
4334		.rlen	= 32,
4335	}, {
4336	// generated using Crypto++
4337		.key = "\x00\x01\x02\x03\x04\x05\x06\x07"
4338			"\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4339			"\x10\x11\x12\x13\x14\x15\x16\x17"
4340			"\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4341			"\x00\x00\x00\x00",
4342		.klen = 32 + 4,
4343		.iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
4344		.input =
4345			"\x00\x01\x02\x03\x04\x05\x06\x07"
4346			"\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4347			"\x10\x11\x12\x13\x14\x15\x16\x17"
4348			"\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4349			"\x20\x21\x22\x23\x24\x25\x26\x27"
4350			"\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
4351			"\x30\x31\x32\x33\x34\x35\x36\x37"
4352			"\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
4353			"\x40\x41\x42\x43\x44\x45\x46\x47"
4354			"\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
4355			"\x50\x51\x52\x53\x54\x55\x56\x57"
4356			"\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
4357			"\x60\x61\x62\x63\x64\x65\x66\x67"
4358			"\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
4359			"\x70\x71\x72\x73\x74\x75\x76\x77"
4360			"\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
4361			"\x80\x81\x82\x83\x84\x85\x86\x87"
4362			"\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
4363			"\x90\x91\x92\x93\x94\x95\x96\x97"
4364			"\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
4365			"\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
4366			"\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
4367			"\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
4368			"\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
4369			"\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
4370			"\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
4371			"\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
4372			"\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
4373			"\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
4374			"\xe8\xe9\xea\xeb\xec\xed\xee\xef"
4375			"\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4376			"\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
4377			"\x00\x03\x06\x09\x0c\x0f\x12\x15"
4378			"\x18\x1b\x1e\x21\x24\x27\x2a\x2d"
4379			"\x30\x33\x36\x39\x3c\x3f\x42\x45"
4380			"\x48\x4b\x4e\x51\x54\x57\x5a\x5d"
4381			"\x60\x63\x66\x69\x6c\x6f\x72\x75"
4382			"\x78\x7b\x7e\x81\x84\x87\x8a\x8d"
4383			"\x90\x93\x96\x99\x9c\x9f\xa2\xa5"
4384			"\xa8\xab\xae\xb1\xb4\xb7\xba\xbd"
4385			"\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5"
4386			"\xd8\xdb\xde\xe1\xe4\xe7\xea\xed"
4387			"\xf0\xf3\xf6\xf9\xfc\xff\x02\x05"
4388			"\x08\x0b\x0e\x11\x14\x17\x1a\x1d"
4389			"\x20\x23\x26\x29\x2c\x2f\x32\x35"
4390			"\x38\x3b\x3e\x41\x44\x47\x4a\x4d"
4391			"\x50\x53\x56\x59\x5c\x5f\x62\x65"
4392			"\x68\x6b\x6e\x71\x74\x77\x7a\x7d"
4393			"\x80\x83\x86\x89\x8c\x8f\x92\x95"
4394			"\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad"
4395			"\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5"
4396			"\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd"
4397			"\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5"
4398			"\xf8\xfb\xfe\x01\x04\x07\x0a\x0d"
4399			"\x10\x13\x16\x19\x1c\x1f\x22\x25"
4400			"\x28\x2b\x2e\x31\x34\x37\x3a\x3d"
4401			"\x40\x43\x46\x49\x4c\x4f\x52\x55"
4402			"\x58\x5b\x5e\x61\x64\x67\x6a\x6d"
4403			"\x70\x73\x76\x79\x7c\x7f\x82\x85"
4404			"\x88\x8b\x8e\x91\x94\x97\x9a\x9d"
4405			"\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5"
4406			"\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd"
4407			"\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5"
4408			"\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd"
4409			"\x00\x05\x0a\x0f\x14\x19\x1e\x23"
4410			"\x28\x2d\x32\x37\x3c\x41\x46\x4b"
4411			"\x50\x55\x5a\x5f\x64\x69\x6e\x73"
4412			"\x78\x7d\x82\x87\x8c\x91\x96\x9b"
4413			"\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3"
4414			"\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb"
4415			"\xf0\xf5\xfa\xff\x04\x09\x0e\x13"
4416			"\x18\x1d\x22\x27\x2c\x31\x36\x3b"
4417			"\x40\x45\x4a\x4f\x54\x59\x5e\x63"
4418			"\x68\x6d\x72\x77\x7c\x81\x86\x8b"
4419			"\x90\x95\x9a\x9f\xa4\xa9\xae\xb3"
4420			"\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb"
4421			"\xe0\xe5\xea\xef\xf4\xf9\xfe\x03"
4422			"\x08\x0d\x12\x17\x1c\x21\x26\x2b"
4423			"\x30\x35\x3a\x3f\x44\x49\x4e\x53"
4424			"\x58\x5d\x62\x67\x6c\x71\x76\x7b"
4425			"\x80\x85\x8a\x8f\x94\x99\x9e\xa3"
4426			"\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb"
4427			"\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3"
4428			"\xf8\xfd\x02\x07\x0c\x11\x16\x1b"
4429			"\x20\x25\x2a\x2f\x34\x39\x3e\x43"
4430			"\x48\x4d\x52\x57\x5c\x61\x66\x6b"
4431			"\x70\x75\x7a\x7f\x84\x89\x8e\x93"
4432			"\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb"
4433			"\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3"
4434			"\xe8\xed\xf2\xf7\xfc\x01\x06\x0b"
4435			"\x10\x15\x1a\x1f\x24\x29\x2e\x33"
4436			"\x38\x3d\x42\x47\x4c\x51\x56\x5b"
4437			"\x60\x65\x6a\x6f\x74\x79\x7e\x83"
4438			"\x88\x8d\x92\x97\x9c\xa1\xa6\xab"
4439			"\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3"
4440			"\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb"
4441			"\x00\x07\x0e\x15\x1c\x23\x2a\x31"
4442			"\x38\x3f\x46\x4d\x54\x5b\x62\x69"
4443			"\x70\x77\x7e\x85\x8c\x93\x9a\xa1"
4444			"\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9"
4445			"\xe0\xe7\xee\xf5\xfc\x03\x0a\x11"
4446			"\x18\x1f\x26\x2d\x34\x3b\x42\x49"
4447			"\x50\x57\x5e\x65\x6c\x73\x7a\x81"
4448			"\x88\x8f\x96\x9d\xa4\xab\xb2\xb9"
4449			"\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1"
4450			"\xf8\xff\x06\x0d\x14\x1b\x22\x29"
4451			"\x30\x37\x3e\x45\x4c\x53\x5a\x61"
4452			"\x68\x6f\x76\x7d\x84\x8b\x92\x99"
4453			"\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1"
4454			"\xd8\xdf\xe6\xed\xf4\xfb\x02\x09"
4455			"\x10\x17\x1e\x25\x2c\x33\x3a\x41"
4456			"\x48\x4f\x56\x5d\x64\x6b\x72\x79"
4457			"\x80\x87\x8e\x95\x9c\xa3\xaa\xb1"
4458			"\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9"
4459			"\xf0\xf7\xfe\x05\x0c\x13\x1a\x21"
4460			"\x28\x2f\x36\x3d\x44\x4b\x52\x59"
4461			"\x60\x67\x6e\x75\x7c\x83\x8a\x91"
4462			"\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9"
4463			"\xd0\xd7\xde\xe5\xec\xf3\xfa\x01"
4464			"\x08\x0f\x16\x1d\x24\x2b\x32\x39"
4465			"\x40\x47\x4e\x55\x5c\x63\x6a\x71"
4466			"\x78\x7f\x86\x8d\x94\x9b\xa2\xa9"
4467			"\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1"
4468			"\xe8\xef\xf6\xfd\x04\x0b\x12\x19"
4469			"\x20\x27\x2e\x35\x3c\x43\x4a\x51"
4470			"\x58\x5f\x66\x6d\x74\x7b\x82\x89"
4471			"\x90\x97\x9e\xa5\xac\xb3\xba\xc1"
4472			"\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9"
4473			"\x00\x09\x12\x1b\x24\x2d\x36\x3f"
4474			"\x48\x51\x5a\x63\x6c\x75\x7e\x87"
4475			"\x90\x99\xa2\xab\xb4\xbd\xc6\xcf"
4476			"\xd8\xe1\xea\xf3\xfc\x05\x0e\x17"
4477			"\x20\x29\x32\x3b\x44\x4d\x56\x5f"
4478			"\x68\x71\x7a\x83\x8c\x95\x9e\xa7"
4479			"\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef"
4480			"\xf8\x01\x0a\x13\x1c\x25\x2e\x37"
4481			"\x40\x49\x52\x5b\x64\x6d\x76\x7f"
4482			"\x88\x91\x9a\xa3\xac\xb5\xbe\xc7"
4483			"\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f"
4484			"\x18\x21\x2a\x33\x3c\x45\x4e\x57"
4485			"\x60\x69\x72\x7b\x84\x8d\x96\x9f"
4486			"\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7"
4487			"\xf0\xf9\x02\x0b\x14\x1d\x26\x2f"
4488			"\x38\x41\x4a\x53\x5c\x65\x6e\x77"
4489			"\x80\x89\x92\x9b\xa4\xad\xb6\xbf"
4490			"\xc8\xd1\xda\xe3\xec\xf5\xfe\x07"
4491			"\x10\x19\x22\x2b\x34\x3d\x46\x4f"
4492			"\x58\x61\x6a\x73\x7c\x85\x8e\x97"
4493			"\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf"
4494			"\xe8\xf1\xfa\x03\x0c\x15\x1e\x27"
4495			"\x30\x39\x42\x4b\x54\x5d\x66\x6f"
4496			"\x78\x81\x8a\x93\x9c\xa5\xae\xb7"
4497			"\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff"
4498			"\x08\x11\x1a\x23\x2c\x35\x3e\x47"
4499			"\x50\x59\x62\x6b\x74\x7d\x86\x8f"
4500			"\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7"
4501			"\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f"
4502			"\x28\x31\x3a\x43\x4c\x55\x5e\x67"
4503			"\x70\x79\x82\x8b\x94\x9d\xa6\xaf"
4504			"\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7"
4505			"\x00\x0b\x16\x21\x2c\x37\x42\x4d"
4506			"\x58\x63\x6e\x79\x84\x8f\x9a\xa5"
4507			"\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd"
4508			"\x08\x13\x1e\x29\x34\x3f\x4a\x55"
4509			"\x60\x6b\x76\x81\x8c\x97\xa2\xad"
4510			"\xb8\xc3\xce\xd9\xe4\xef\xfa\x05"
4511			"\x10\x1b\x26\x31\x3c\x47\x52\x5d"
4512			"\x68\x73\x7e\x89\x94\x9f\xaa\xb5"
4513			"\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d"
4514			"\x18\x23\x2e\x39\x44\x4f\x5a\x65"
4515			"\x70\x7b\x86\x91\x9c\xa7\xb2\xbd"
4516			"\xc8\xd3\xde\xe9\xf4\xff\x0a\x15"
4517			"\x20\x2b\x36\x41\x4c\x57\x62\x6d"
4518			"\x78\x83\x8e\x99\xa4\xaf\xba\xc5"
4519			"\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d"
4520			"\x28\x33\x3e\x49\x54\x5f\x6a\x75"
4521			"\x80\x8b\x96\xa1\xac\xb7\xc2\xcd"
4522			"\xd8\xe3\xee\xf9\x04\x0f\x1a\x25"
4523			"\x30\x3b\x46\x51\x5c\x67\x72\x7d"
4524			"\x88\x93\x9e\xa9\xb4\xbf\xca\xd5"
4525			"\xe0\xeb\xf6\x01\x0c\x17\x22\x2d"
4526			"\x38\x43\x4e\x59\x64\x6f\x7a\x85"
4527			"\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd"
4528			"\xe8\xf3\xfe\x09\x14\x1f\x2a\x35"
4529			"\x40\x4b\x56\x61\x6c\x77\x82\x8d"
4530			"\x98\xa3\xae\xb9\xc4\xcf\xda\xe5"
4531			"\xf0\xfb\x06\x11\x1c\x27\x32\x3d"
4532			"\x48\x53\x5e\x69\x74\x7f\x8a\x95"
4533			"\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed"
4534			"\xf8\x03\x0e\x19\x24\x2f\x3a\x45"
4535			"\x50\x5b\x66\x71\x7c\x87\x92\x9d"
4536			"\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5"
4537			"\x00\x0d\x1a\x27\x34\x41\x4e\x5b"
4538			"\x68\x75\x82\x8f\x9c\xa9\xb6\xc3"
4539			"\xd0\xdd\xea\xf7\x04\x11\x1e\x2b"
4540			"\x38\x45\x52\x5f\x6c\x79\x86\x93"
4541			"\xa0\xad\xba\xc7\xd4\xe1\xee\xfb"
4542			"\x08\x15\x22\x2f\x3c\x49\x56\x63"
4543			"\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb"
4544			"\xd8\xe5\xf2\xff\x0c\x19\x26\x33"
4545			"\x40\x4d\x5a\x67\x74\x81\x8e\x9b"
4546			"\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03"
4547			"\x10\x1d\x2a\x37\x44\x51\x5e\x6b"
4548			"\x78\x85\x92\x9f\xac\xb9\xc6\xd3"
4549			"\xe0\xed\xfa\x07\x14\x21\x2e\x3b"
4550			"\x48\x55\x62\x6f\x7c\x89\x96\xa3"
4551			"\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b"
4552			"\x18\x25\x32\x3f\x4c\x59\x66\x73"
4553			"\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb"
4554			"\xe8\xf5\x02\x0f\x1c\x29\x36\x43"
4555			"\x50\x5d\x6a\x77\x84\x91\x9e\xab"
4556			"\xb8\xc5\xd2\xdf\xec\xf9\x06\x13"
4557			"\x20\x2d\x3a\x47\x54\x61\x6e\x7b"
4558			"\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3"
4559			"\xf0\xfd\x0a\x17\x24\x31\x3e\x4b"
4560			"\x58\x65\x72\x7f\x8c\x99\xa6\xb3"
4561			"\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b"
4562			"\x28\x35\x42\x4f\x5c\x69\x76\x83"
4563			"\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb"
4564			"\xf8\x05\x12\x1f\x2c\x39\x46\x53"
4565			"\x60\x6d\x7a\x87\x94\xa1\xae\xbb"
4566			"\xc8\xd5\xe2\xef\xfc\x09\x16\x23"
4567			"\x30\x3d\x4a\x57\x64\x71\x7e\x8b"
4568			"\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3"
4569			"\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69"
4570			"\x78\x87\x96\xa5\xb4\xc3\xd2\xe1"
4571			"\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59"
4572			"\x68\x77\x86\x95\xa4\xb3\xc2\xd1"
4573			"\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49"
4574			"\x58\x67\x76\x85\x94\xa3\xb2\xc1"
4575			"\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39"
4576			"\x48\x57\x66\x75\x84\x93\xa2\xb1"
4577			"\xc0\xcf\xde\xed\xfc\x0b\x1a\x29"
4578			"\x38\x47\x56\x65\x74\x83\x92\xa1"
4579			"\xb0\xbf\xce\xdd\xec\xfb\x0a\x19"
4580			"\x28\x37\x46\x55\x64\x73\x82\x91"
4581			"\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09"
4582			"\x18\x27\x36\x45\x54\x63\x72\x81"
4583			"\x90\x9f\xae\xbd\xcc\xdb\xea\xf9"
4584			"\x08\x17\x26\x35\x44\x53\x62\x71"
4585			"\x80\x8f\x9e\xad\xbc\xcb\xda\xe9"
4586			"\xf8\x07\x16\x25\x34\x43\x52\x61"
4587			"\x70\x7f\x8e\x9d\xac\xbb\xca\xd9"
4588			"\xe8\xf7\x06\x15\x24\x33\x42\x51"
4589			"\x60\x6f\x7e\x8d\x9c\xab\xba\xc9"
4590			"\xd8\xe7\xf6\x05\x14\x23\x32\x41"
4591			"\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9"
4592			"\xc8\xd7\xe6\xf5\x04\x13\x22\x31"
4593			"\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9"
4594			"\xb8\xc7\xd6\xe5\xf4\x03\x12\x21"
4595			"\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99"
4596			"\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11"
4597			"\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89"
4598			"\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01"
4599			"\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79"
4600			"\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1"
4601			"\x00\x11\x22\x33\x44\x55\x66\x77"
4602			"\x88\x99\xaa\xbb\xcc\xdd\xee\xff"
4603			"\x10\x21\x32\x43\x54\x65\x76\x87"
4604			"\x98\xa9\xba\xcb\xdc\xed\xfe\x0f"
4605			"\x20\x31\x42\x53\x64\x75\x86\x97"
4606			"\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f"
4607			"\x30\x41\x52\x63\x74\x85\x96\xa7"
4608			"\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f"
4609			"\x40\x51\x62\x73\x84\x95\xa6\xb7"
4610			"\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f"
4611			"\x50\x61\x72\x83\x94\xa5\xb6\xc7"
4612			"\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f"
4613			"\x60\x71\x82\x93\xa4\xb5\xc6\xd7"
4614			"\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f"
4615			"\x70\x81\x92\xa3\xb4\xc5\xd6\xe7"
4616			"\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f"
4617			"\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7"
4618			"\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f"
4619			"\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07"
4620			"\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f"
4621			"\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17"
4622			"\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f"
4623			"\xb0\xc1\xd2\xe3\xf4\x05\x16\x27"
4624			"\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf"
4625			"\xc0\xd1\xe2\xf3\x04\x15\x26\x37"
4626			"\x48\x59\x6a\x7b\x8c\x9d\xae\xbf"
4627			"\xd0\xe1\xf2\x03\x14\x25\x36\x47"
4628			"\x58\x69\x7a\x8b\x9c\xad\xbe\xcf"
4629			"\xe0\xf1\x02\x13\x24\x35\x46\x57"
4630			"\x68\x79\x8a\x9b\xac\xbd\xce\xdf"
4631			"\xf0\x01\x12\x23\x34\x45\x56\x67"
4632			"\x78\x89\x9a\xab\xbc\xcd\xde\xef"
4633			"\x00\x13\x26\x39\x4c\x5f\x72\x85"
4634			"\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d"
4635			"\x30\x43\x56\x69\x7c\x8f\xa2\xb5"
4636			"\xc8\xdb\xee\x01\x14\x27\x3a\x4d"
4637			"\x60\x73\x86\x99\xac\xbf\xd2\xe5"
4638			"\xf8\x0b\x1e\x31\x44\x57\x6a\x7d"
4639			"\x90\xa3\xb6\xc9\xdc\xef\x02\x15"
4640			"\x28\x3b\x4e\x61\x74\x87\x9a\xad"
4641			"\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45"
4642			"\x58\x6b\x7e\x91\xa4\xb7\xca\xdd"
4643			"\xf0\x03\x16\x29\x3c\x4f\x62\x75"
4644			"\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d"
4645			"\x20\x33\x46\x59\x6c\x7f\x92\xa5"
4646			"\xb8\xcb\xde\xf1\x04\x17\x2a\x3d"
4647			"\x50\x63\x76\x89\x9c\xaf\xc2\xd5"
4648			"\xe8\xfb\x0e\x21\x34\x47\x5a\x6d"
4649			"\x80\x93\xa6\xb9\xcc\xdf\xf2\x05"
4650			"\x18\x2b\x3e\x51\x64\x77\x8a\x9d"
4651			"\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35"
4652			"\x48\x5b\x6e\x81\x94\xa7\xba\xcd"
4653			"\xe0\xf3\x06\x19\x2c\x3f\x52\x65"
4654			"\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd"
4655			"\x10\x23\x36\x49\x5c\x6f\x82\x95"
4656			"\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d"
4657			"\x40\x53\x66\x79\x8c\x9f\xb2\xc5"
4658			"\xd8\xeb\xfe\x11\x24\x37\x4a\x5d"
4659			"\x70\x83\x96\xa9\xbc\xcf\xe2\xf5"
4660			"\x08\x1b\x2e\x41\x54\x67\x7a\x8d"
4661			"\xa0\xb3\xc6\xd9\xec\xff\x12\x25"
4662			"\x38\x4b\x5e\x71\x84\x97\xaa\xbd"
4663			"\xd0\xe3\xf6\x09\x1c\x2f\x42\x55"
4664			"\x68\x7b\x8e\xa1\xb4\xc7\xda\xed"
4665			"\x00\x15\x2a\x3f\x54\x69\x7e\x93"
4666			"\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b"
4667			"\x50\x65\x7a\x8f\xa4\xb9\xce\xe3"
4668			"\xf8\x0d\x22\x37\x4c\x61\x76\x8b"
4669			"\xa0\xb5\xca\xdf\xf4\x09\x1e\x33"
4670			"\x48\x5d\x72\x87\x9c\xb1\xc6\xdb"
4671			"\xf0\x05\x1a\x2f\x44\x59\x6e\x83"
4672			"\x98\xad\xc2\xd7\xec\x01\x16\x2b"
4673			"\x40\x55\x6a\x7f\x94\xa9\xbe\xd3"
4674			"\xe8\xfd\x12\x27\x3c\x51\x66\x7b"
4675			"\x90\xa5\xba\xcf\xe4\xf9\x0e\x23"
4676			"\x38\x4d\x62\x77\x8c\xa1\xb6\xcb"
4677			"\xe0\xf5\x0a\x1f\x34\x49\x5e\x73"
4678			"\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b"
4679			"\x30\x45\x5a\x6f\x84\x99\xae\xc3"
4680			"\xd8\xed\x02\x17\x2c\x41\x56\x6b"
4681			"\x80\x95\xaa\xbf\xd4\xe9\xfe\x13"
4682			"\x28\x3d\x52\x67\x7c\x91\xa6\xbb"
4683			"\xd0\xe5\xfa\x0f\x24\x39\x4e\x63"
4684			"\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b"
4685			"\x20\x35\x4a\x5f\x74\x89\x9e\xb3"
4686			"\xc8\xdd\xf2\x07\x1c\x31\x46\x5b"
4687			"\x70\x85\x9a\xaf\xc4\xd9\xee\x03"
4688			"\x18\x2d\x42\x57\x6c\x81\x96\xab"
4689			"\xc0\xd5\xea\xff\x14\x29\x3e\x53"
4690			"\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb"
4691			"\x10\x25\x3a\x4f\x64\x79\x8e\xa3"
4692			"\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b"
4693			"\x60\x75\x8a\x9f\xb4\xc9\xde\xf3"
4694			"\x08\x1d\x32\x47\x5c\x71\x86\x9b"
4695			"\xb0\xc5\xda\xef\x04\x19\x2e\x43"
4696			"\x58\x6d\x82\x97\xac\xc1\xd6\xeb"
4697			"\x00\x17\x2e\x45\x5c\x73\x8a\xa1"
4698			"\xb8\xcf\xe6\xfd\x14\x2b\x42\x59"
4699			"\x70\x87\x9e\xb5\xcc\xe3\xfa\x11"
4700			"\x28\x3f\x56\x6d\x84\x9b\xb2\xc9"
4701			"\xe0\xf7\x0e\x25\x3c\x53\x6a\x81"
4702			"\x98\xaf\xc6\xdd\xf4\x0b\x22\x39"
4703			"\x50\x67\x7e\x95\xac\xc3\xda\xf1"
4704			"\x08\x1f\x36\x4d\x64\x7b\x92\xa9"
4705			"\xc0\xd7\xee\x05\x1c\x33\x4a\x61"
4706			"\x78\x8f\xa6\xbd\xd4\xeb\x02\x19"
4707			"\x30\x47\x5e\x75\x8c\xa3\xba\xd1"
4708			"\xe8\xff\x16\x2d\x44\x5b\x72\x89"
4709			"\xa0\xb7\xce\xe5\xfc\x13\x2a\x41"
4710			"\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9"
4711			"\x10\x27\x3e\x55\x6c\x83\x9a\xb1"
4712			"\xc8\xdf\xf6\x0d\x24\x3b\x52\x69"
4713			"\x80\x97\xae\xc5\xdc\xf3\x0a\x21"
4714			"\x38\x4f\x66\x7d\x94\xab\xc2\xd9"
4715			"\xf0\x07\x1e\x35\x4c\x63\x7a\x91"
4716			"\xa8\xbf\xd6\xed\x04\x1b\x32\x49"
4717			"\x60\x77\x8e\xa5\xbc\xd3\xea\x01"
4718			"\x18\x2f\x46\x5d\x74\x8b\xa2\xb9"
4719			"\xd0\xe7\xfe\x15\x2c\x43\x5a\x71"
4720			"\x88\x9f\xb6\xcd\xe4\xfb\x12\x29"
4721			"\x40\x57\x6e\x85\x9c\xb3\xca\xe1"
4722			"\xf8\x0f\x26\x3d\x54\x6b\x82\x99"
4723			"\xb0\xc7\xde\xf5\x0c\x23\x3a\x51"
4724			"\x68\x7f\x96\xad\xc4\xdb\xf2\x09"
4725			"\x20\x37\x4e\x65\x7c\x93\xaa\xc1"
4726			"\xd8\xef\x06\x1d\x34\x4b\x62\x79"
4727			"\x90\xa7\xbe\xd5\xec\x03\x1a\x31"
4728			"\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9"
4729			"\x00\x19\x32\x4b\x64\x7d\x96\xaf"
4730			"\xc8\xe1\xfa\x13\x2c\x45\x5e\x77"
4731			"\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f"
4732			"\x58\x71\x8a\xa3\xbc\xd5\xee\x07"
4733			"\x20\x39\x52\x6b\x84\x9d\xb6\xcf"
4734			"\xe8\x01\x1a\x33\x4c\x65\x7e\x97"
4735			"\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f"
4736			"\x78\x91\xaa\xc3\xdc\xf5\x0e\x27"
4737			"\x40\x59\x72\x8b\xa4\xbd\xd6\xef"
4738			"\x08\x21\x3a\x53\x6c\x85\x9e\xb7"
4739			"\xd0\xe9\x02\x1b\x34\x4d\x66\x7f"
4740			"\x98\xb1\xca\xe3\xfc\x15\x2e\x47"
4741			"\x60\x79\x92\xab\xc4\xdd\xf6\x0f"
4742			"\x28\x41\x5a\x73\x8c\xa5\xbe\xd7"
4743			"\xf0\x09\x22\x3b\x54\x6d\x86\x9f"
4744			"\xb8\xd1\xea\x03\x1c\x35\x4e\x67"
4745			"\x80\x99\xb2\xcb\xe4\xfd\x16\x2f"
4746			"\x48\x61\x7a\x93\xac\xc5\xde\xf7"
4747			"\x10\x29\x42\x5b\x74\x8d\xa6\xbf"
4748			"\xd8\xf1\x0a\x23\x3c\x55\x6e\x87"
4749			"\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f"
4750			"\x68\x81\x9a\xb3\xcc\xe5\xfe\x17"
4751			"\x30\x49\x62\x7b\x94\xad\xc6\xdf"
4752			"\xf8\x11\x2a\x43\x5c\x75\x8e\xa7"
4753			"\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f"
4754			"\x88\xa1\xba\xd3\xec\x05\x1e\x37"
4755			"\x50\x69\x82\x9b\xb4\xcd\xe6\xff"
4756			"\x18\x31\x4a\x63\x7c\x95\xae\xc7"
4757			"\xe0\xf9\x12\x2b\x44\x5d\x76\x8f"
4758			"\xa8\xc1\xda\xf3\x0c\x25\x3e\x57"
4759			"\x70\x89\xa2\xbb\xd4\xed\x06\x1f"
4760			"\x38\x51\x6a\x83\x9c\xb5\xce\xe7"
4761			"\x00\x1b\x36\x51\x6c\x87\xa2\xbd"
4762			"\xd8\xf3\x0e\x29\x44\x5f\x7a\x95"
4763			"\xb0\xcb\xe6\x01\x1c\x37\x52\x6d"
4764			"\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45"
4765			"\x60\x7b\x96\xb1\xcc\xe7\x02\x1d"
4766			"\x38\x53\x6e\x89\xa4\xbf\xda\xf5"
4767			"\x10\x2b\x46\x61\x7c\x97\xb2\xcd"
4768			"\xe8\x03\x1e\x39\x54\x6f\x8a\xa5"
4769			"\xc0\xdb\xf6\x11\x2c\x47\x62\x7d"
4770			"\x98\xb3\xce\xe9\x04\x1f\x3a\x55"
4771			"\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d"
4772			"\x48\x63\x7e\x99\xb4\xcf\xea\x05"
4773			"\x20\x3b\x56\x71\x8c\xa7\xc2\xdd"
4774			"\xf8\x13\x2e\x49\x64\x7f\x9a\xb5"
4775			"\xd0\xeb\x06\x21\x3c\x57\x72\x8d"
4776			"\xa8\xc3\xde\xf9\x14\x2f\x4a\x65"
4777			"\x80\x9b\xb6\xd1\xec\x07\x22\x3d"
4778			"\x58\x73\x8e\xa9\xc4\xdf\xfa\x15"
4779			"\x30\x4b\x66\x81\x9c\xb7\xd2\xed"
4780			"\x08\x23\x3e\x59\x74\x8f\xaa\xc5"
4781			"\xe0\xfb\x16\x31\x4c\x67\x82\x9d"
4782			"\xb8\xd3\xee\x09\x24\x3f\x5a\x75"
4783			"\x90\xab\xc6\xe1\xfc\x17\x32\x4d"
4784			"\x68\x83\x9e\xb9\xd4\xef\x0a\x25"
4785			"\x40\x5b\x76\x91\xac\xc7\xe2\xfd"
4786			"\x18\x33\x4e\x69\x84\x9f\xba\xd5"
4787			"\xf0\x0b\x26\x41\x5c\x77\x92\xad"
4788			"\xc8\xe3\xfe\x19\x34\x4f\x6a\x85"
4789			"\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d"
4790			"\x78\x93\xae\xc9\xe4\xff\x1a\x35"
4791			"\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d"
4792			"\x28\x43\x5e\x79\x94\xaf\xca\xe5"
4793			"\x00\x1d\x3a\x57\x74\x91\xae\xcb"
4794			"\xe8\x05\x22\x3f\x5c\x79\x96\xb3"
4795			"\xd0\xed\x0a\x27\x44\x61\x7e\x9b"
4796			"\xb8\xd5\xf2\x0f\x2c\x49\x66\x83"
4797			"\xa0\xbd\xda\xf7\x14\x31\x4e\x6b"
4798			"\x88\xa5\xc2\xdf\xfc\x19\x36\x53"
4799			"\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b"
4800			"\x58\x75\x92\xaf\xcc\xe9\x06\x23"
4801			"\x40\x5d\x7a\x97\xb4\xd1\xee\x0b"
4802			"\x28\x45\x62\x7f\x9c\xb9\xd6\xf3"
4803			"\x10\x2d\x4a\x67\x84\xa1\xbe\xdb"
4804			"\xf8\x15\x32\x4f\x6c\x89\xa6\xc3"
4805			"\xe0\xfd\x1a\x37\x54\x71\x8e\xab"
4806			"\xc8\xe5\x02\x1f\x3c\x59\x76\x93"
4807			"\xb0\xcd\xea\x07\x24\x41\x5e\x7b"
4808			"\x98\xb5\xd2\xef\x0c\x29\x46\x63"
4809			"\x80\x9d\xba\xd7\xf4\x11\x2e\x4b"
4810			"\x68\x85\xa2\xbf\xdc\xf9\x16\x33"
4811			"\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b"
4812			"\x38\x55\x72\x8f\xac\xc9\xe6\x03"
4813			"\x20\x3d\x5a\x77\x94\xb1\xce\xeb"
4814			"\x08\x25\x42\x5f\x7c\x99\xb6\xd3"
4815			"\xf0\x0d\x2a\x47\x64\x81\x9e\xbb"
4816			"\xd8\xf5\x12\x2f\x4c\x69\x86\xa3"
4817			"\xc0\xdd\xfa\x17\x34\x51\x6e\x8b"
4818			"\xa8\xc5\xe2\xff\x1c\x39\x56\x73"
4819			"\x90\xad\xca\xe7\x04\x21\x3e\x5b"
4820			"\x78\x95\xb2\xcf\xec\x09\x26\x43"
4821			"\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b"
4822			"\x48\x65\x82\x9f\xbc\xd9\xf6\x13"
4823			"\x30\x4d\x6a\x87\xa4\xc1\xde\xfb"
4824			"\x18\x35\x52\x6f\x8c\xa9\xc6\xe3"
4825			"\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9"
4826			"\xf8\x17\x36\x55\x74\x93\xb2\xd1"
4827			"\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9"
4828			"\xe8\x07\x26\x45\x64\x83\xa2\xc1"
4829			"\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9"
4830			"\xd8\xf7\x16\x35\x54\x73\x92\xb1"
4831			"\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9"
4832			"\xc8\xe7\x06\x25\x44\x63\x82\xa1"
4833			"\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99"
4834			"\xb8\xd7\xf6\x15\x34\x53\x72\x91"
4835			"\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89"
4836			"\xa8\xc7\xe6\x05\x24\x43\x62\x81"
4837			"\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79"
4838			"\x98\xb7\xd6\xf5\x14\x33\x52\x71"
4839			"\x90\xaf\xce\xed\x0c\x2b\x4a\x69"
4840			"\x88\xa7\xc6\xe5\x04\x23\x42\x61"
4841			"\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59"
4842			"\x78\x97\xb6\xd5\xf4\x13\x32\x51"
4843			"\x70\x8f\xae\xcd\xec\x0b\x2a\x49"
4844			"\x68\x87\xa6\xc5\xe4\x03\x22\x41"
4845			"\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39"
4846			"\x58\x77\x96\xb5\xd4\xf3\x12\x31"
4847			"\x50\x6f\x8e\xad\xcc\xeb\x0a\x29"
4848			"\x48\x67\x86\xa5\xc4\xe3\x02\x21"
4849			"\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19"
4850			"\x38\x57\x76\x95\xb4\xd3\xf2\x11"
4851			"\x30\x4f\x6e\x8d\xac\xcb\xea\x09"
4852			"\x28\x47\x66\x85\xa4\xc3\xe2\x01"
4853			"\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9"
4854			"\x18\x37\x56\x75\x94\xb3\xd2\xf1"
4855			"\x10\x2f\x4e\x6d\x8c\xab\xca\xe9"
4856			"\x08\x27\x46\x65\x84\xa3\xc2\xe1"
4857			"\x00\x21\x42\x63",
4858		.ilen = 4100,
4859		.result =
4860			"\xf0\x5c\x74\xad\x4e\xbc\x99\xe2"
4861			"\xae\xff\x91\x3a\x44\xcf\x38\x32"
4862			"\x1e\xad\xa7\xcd\xa1\x39\x95\xaa"
4863			"\x10\xb1\xb3\x2e\x04\x31\x8f\x86"
4864			"\xf2\x62\x74\x70\x0c\xa4\x46\x08"
4865			"\xa8\xb7\x99\xa8\xe9\xd2\x73\x79"
4866			"\x7e\x6e\xd4\x8f\x1e\xc7\x8e\x31"
4867			"\x0b\xfa\x4b\xce\xfd\xf3\x57\x71"
4868			"\xe9\x46\x03\xa5\x3d\x34\x00\xe2"
4869			"\x18\xff\x75\x6d\x06\x2d\x00\xab"
4870			"\xb9\x3e\x6c\x59\xc5\x84\x06\xb5"
4871			"\x8b\xd0\x89\x9c\x4a\x79\x16\xc6"
4872			"\x3d\x74\x54\xfa\x44\xcd\x23\x26"
4873			"\x5c\xcf\x7e\x28\x92\x32\xbf\xdf"
4874			"\xa7\x20\x3c\x74\x58\x2a\x9a\xde"
4875			"\x61\x00\x1c\x4f\xff\x59\xc4\x22"
4876			"\xac\x3c\xd0\xe8\x6c\xf9\x97\x1b"
4877			"\x58\x9b\xad\x71\xe8\xa9\xb5\x0d"
4878			"\xee\x2f\x04\x1f\x7f\xbc\x99\xee"
4879			"\x84\xff\x42\x60\xdc\x3a\x18\xa5"
4880			"\x81\xf9\xef\xdc\x7a\x0f\x65\x41"
4881			"\x2f\xa3\xd3\xf9\xc2\xcb\xc0\x4d"
4882			"\x8f\xd3\x76\x96\xad\x49\x6d\x38"
4883			"\x3d\x39\x0b\x6c\x80\xb7\x54\x69"
4884			"\xf0\x2c\x90\x02\x29\x0d\x1c\x12"
4885			"\xad\x55\xc3\x8b\x68\xd9\xcc\xb3"
4886			"\xb2\x64\x33\x90\x5e\xca\x4b\xe2"
4887			"\xfb\x75\xdc\x63\xf7\x9f\x82\x74"
4888			"\xf0\xc9\xaa\x7f\xe9\x2a\x9b\x33"
4889			"\xbc\x88\x00\x7f\xca\xb2\x1f\x14"
4890			"\xdb\xc5\x8e\x7b\x11\x3c\x3e\x08"
4891			"\xf3\x83\xe8\xe0\x94\x86\x2e\x92"
4892			"\x78\x6b\x01\xc9\xc7\x83\xba\x21"
4893			"\x6a\x25\x15\x33\x4e\x45\x08\xec"
4894			"\x35\xdb\xe0\x6e\x31\x51\x79\xa9"
4895			"\x42\x44\x65\xc1\xa0\xf1\xf9\x2a"
4896			"\x70\xd5\xb6\xc6\xc1\x8c\x39\xfc"
4897			"\x25\xa6\x55\xd9\xdd\x2d\x4c\xec"
4898			"\x49\xc6\xeb\x0e\xa8\x25\x2a\x16"
4899			"\x1b\x66\x84\xda\xe2\x92\xe5\xc0"
4900			"\xc8\x53\x07\xaf\x80\x84\xec\xfd"
4901			"\xcd\xd1\x6e\xcd\x6f\x6a\xf5\x36"
4902			"\xc5\x15\xe5\x25\x7d\x77\xd1\x1a"
4903			"\x93\x36\xa9\xcf\x7c\xa4\x54\x4a"
4904			"\x06\x51\x48\x4e\xf6\x59\x87\xd2"
4905			"\x04\x02\xef\xd3\x44\xde\x76\x31"
4906			"\xb3\x34\x17\x1b\x9d\x66\x11\x9f"
4907			"\x1e\xcc\x17\xe9\xc7\x3c\x1b\xe7"
4908			"\xcb\x50\x08\xfc\xdc\x2b\x24\xdb"
4909			"\x65\x83\xd0\x3b\xe3\x30\xea\x94"
4910			"\x6c\xe7\xe8\x35\x32\xc7\xdb\x64"
4911			"\xb4\x01\xab\x36\x2c\x77\x13\xaf"
4912			"\xf8\x2b\x88\x3f\x54\x39\xc4\x44"
4913			"\xfe\xef\x6f\x68\x34\xbe\x0f\x05"
4914			"\x16\x6d\xf6\x0a\x30\xe7\xe3\xed"
4915			"\xc4\xde\x3c\x1b\x13\xd8\xdb\xfe"
4916			"\x41\x62\xe5\x28\xd4\x8d\xa3\xc7"
4917			"\x93\x97\xc6\x48\x45\x1d\x9f\x83"
4918			"\xdf\x4b\x40\x3e\x42\x25\x87\x80"
4919			"\x4c\x7d\xa8\xd4\x98\x23\x95\x75"
4920			"\x41\x8c\xda\x41\x9b\xd4\xa7\x06"
4921			"\xb5\xf1\x71\x09\x53\xbe\xca\xbf"
4922			"\x32\x03\xed\xf0\x50\x1c\x56\x39"
4923			"\x5b\xa4\x75\x18\xf7\x9b\x58\xef"
4924			"\x53\xfc\x2a\x38\x23\x15\x75\xcd"
4925			"\x45\xe5\x5a\x82\x55\xba\x21\xfa"
4926			"\xd4\xbd\xc6\x94\x7c\xc5\x80\x12"
4927			"\xf7\x4b\x32\xc4\x9a\x82\xd8\x28"
4928			"\x8f\xd9\xc2\x0f\x60\x03\xbe\x5e"
4929			"\x21\xd6\x5f\x58\xbf\x5c\xb1\x32"
4930			"\x82\x8d\xa9\xe5\xf2\x66\x1a\xc0"
4931			"\xa0\xbc\x58\x2f\x71\xf5\x2f\xed"
4932			"\xd1\x26\xb9\xd8\x49\x5a\x07\x19"
4933			"\x01\x7c\x59\xb0\xf8\xa4\xb7\xd3"
4934			"\x7b\x1a\x8c\x38\xf4\x50\xa4\x59"
4935			"\xb0\xcc\x41\x0b\x88\x7f\xe5\x31"
4936			"\xb3\x42\xba\xa2\x7e\xd4\x32\x71"
4937			"\x45\x87\x48\xa9\xc2\xf2\x89\xb3"
4938			"\xe4\xa7\x7e\x52\x15\x61\xfa\xfe"
4939			"\xc9\xdd\x81\xeb\x13\xab\xab\xc3"
4940			"\x98\x59\xd8\x16\x3d\x14\x7a\x1c"
4941			"\x3c\x41\x9a\x16\x16\x9b\xd2\xd2"
4942			"\x69\x3a\x29\x23\xac\x86\x32\xa5"
4943			"\x48\x9c\x9e\xf3\x47\x77\x81\x70"
4944			"\x24\xe8\x85\xd2\xf5\xb5\xfa\xff"
4945			"\x59\x6a\xd3\x50\x59\x43\x59\xde"
4946			"\xd9\xf1\x55\xa5\x0c\xc3\x1a\x1a"
4947			"\x18\x34\x0d\x1a\x63\x33\xed\x10"
4948			"\xe0\x1d\x2a\x18\xd2\xc0\x54\xa8"
4949			"\xca\xb5\x9a\xd3\xdd\xca\x45\x84"
4950			"\x50\xe7\x0f\xfe\xa4\x99\x5a\xbe"
4951			"\x43\x2d\x9a\xcb\x92\x3f\x5a\x1d"
4952			"\x85\xd8\xc9\xdf\x68\xc9\x12\x80"
4953			"\x56\x0c\xdc\x00\xdc\x3a\x7d\x9d"
4954			"\xa3\xa2\xe8\x4d\xbf\xf9\x70\xa0"
4955			"\xa4\x13\x4f\x6b\xaf\x0a\x89\x7f"
4956			"\xda\xf0\xbf\x9b\xc8\x1d\xe5\xf8"
4957			"\x2e\x8b\x07\xb5\x73\x1b\xcc\xa2"
4958			"\xa6\xad\x30\xbc\x78\x3c\x5b\x10"
4959			"\xfa\x5e\x62\x2d\x9e\x64\xb3\x33"
4960			"\xce\xf9\x1f\x86\xe7\x8b\xa2\xb8"
4961			"\xe8\x99\x57\x8c\x11\xed\x66\xd9"
4962			"\x3c\x72\xb9\xc3\xe6\x4e\x17\x3a"
4963			"\x6a\xcb\x42\x24\x06\xed\x3e\x4e"
4964			"\xa3\xe8\x6a\x94\xda\x0d\x4e\xd5"
4965			"\x14\x19\xcf\xb6\x26\xd8\x2e\xcc"
4966			"\x64\x76\x38\x49\x4d\xfe\x30\x6d"
4967			"\xe4\xc8\x8c\x7b\xc4\xe0\x35\xba"
4968			"\x22\x6e\x76\xe1\x1a\xf2\x53\xc3"
4969			"\x28\xa2\x82\x1f\x61\x69\xad\xc1"
4970			"\x7b\x28\x4b\x1e\x6c\x85\x95\x9b"
4971			"\x51\xb5\x17\x7f\x12\x69\x8c\x24"
4972			"\xd5\xc7\x5a\x5a\x11\x54\xff\x5a"
4973			"\xf7\x16\xc3\x91\xa6\xf0\xdc\x0a"
4974			"\xb6\xa7\x4a\x0d\x7a\x58\xfe\xa5"
4975			"\xf5\xcb\x8f\x7b\x0e\xea\x57\xe7"
4976			"\xbd\x79\xd6\x1c\x88\x23\x6c\xf2"
4977			"\x4d\x29\x77\x53\x35\x6a\x00\x8d"
4978			"\xcd\xa3\x58\xbe\x77\x99\x18\xf8"
4979			"\xe6\xe1\x8f\xe9\x37\x8f\xe3\xe2"
4980			"\x5a\x8a\x93\x25\xaf\xf3\x78\x80"
4981			"\xbe\xa6\x1b\xc6\xac\x8b\x1c\x91"
4982			"\x58\xe1\x9f\x89\x35\x9d\x1d\x21"
4983			"\x29\x9f\xf4\x99\x02\x27\x0f\xa8"
4984			"\x4f\x79\x94\x2b\x33\x2c\xda\xa2"
4985			"\x26\x39\x83\x94\xef\x27\xd8\x53"
4986			"\x8f\x66\x0d\xe4\x41\x7d\x34\xcd"
4987			"\x43\x7c\x95\x0a\x53\xef\x66\xda"
4988			"\x7e\x9b\xf3\x93\xaf\xd0\x73\x71"
4989			"\xba\x40\x9b\x74\xf8\xd7\xd7\x41"
4990			"\x6d\xaf\x72\x9c\x8d\x21\x87\x3c"
4991			"\xfd\x0a\x90\xa9\x47\x96\x9e\xd3"
4992			"\x88\xee\x73\xcf\x66\x2f\x52\x56"
4993			"\x6d\xa9\x80\x4c\xe2\x6f\x62\x88"
4994			"\x3f\x0e\x54\x17\x48\x80\x5d\xd3"
4995			"\xc3\xda\x25\x3d\xa1\xc8\xcb\x9f"
4996			"\x9b\x70\xb3\xa1\xeb\x04\x52\xa1"
4997			"\xf2\x22\x0f\xfc\xc8\x18\xfa\xf9"
4998			"\x85\x9c\xf1\xac\xeb\x0c\x02\x46"
4999			"\x75\xd2\xf5\x2c\xe3\xd2\x59\x94"
5000			"\x12\xf3\x3c\xfc\xd7\x92\xfa\x36"
5001			"\xba\x61\x34\x38\x7c\xda\x48\x3e"
5002			"\x08\xc9\x39\x23\x5e\x02\x2c\x1a"
5003			"\x18\x7e\xb4\xd9\xfd\x9e\x40\x02"
5004			"\xb1\x33\x37\x32\xe7\xde\xd6\xd0"
5005			"\x7c\x58\x65\x4b\xf8\x34\x27\x9c"
5006			"\x44\xb4\xbd\xe9\xe9\x4c\x78\x7d"
5007			"\x4b\x9f\xce\xb1\xcd\x47\xa5\x37"
5008			"\xe5\x6d\xbd\xb9\x43\x94\x0a\xd4"
5009			"\xd6\xf9\x04\x5f\xb5\x66\x6c\x1a"
5010			"\x35\x12\xe3\x36\x28\x27\x36\x58"
5011			"\x01\x2b\x79\xe4\xba\x6d\x10\x7d"
5012			"\x65\xdf\x84\x95\xf4\xd5\xb6\x8f"
5013			"\x2b\x9f\x96\x00\x86\x60\xf0\x21"
5014			"\x76\xa8\x6a\x8c\x28\x1c\xb3\x6b"
5015			"\x97\xd7\xb6\x53\x2a\xcc\xab\x40"
5016			"\x9d\x62\x79\x58\x52\xe6\x65\xb7"
5017			"\xab\x55\x67\x9c\x89\x7c\x03\xb0"
5018			"\x73\x59\xc5\x81\xf5\x18\x17\x5c"
5019			"\x89\xf3\x78\x35\x44\x62\x78\x72"
5020			"\xd0\x96\xeb\x31\xe7\x87\x77\x14"
5021			"\x99\x51\xf2\x59\x26\x9e\xb5\xa6"
5022			"\x45\xfe\x6e\xbd\x07\x4c\x94\x5a"
5023			"\xa5\x7d\xfc\xf1\x2b\x77\xe2\xfe"
5024			"\x17\xd4\x84\xa0\xac\xb5\xc7\xda"
5025			"\xa9\x1a\xb6\xf3\x74\x11\xb4\x9d"
5026			"\xfb\x79\x2e\x04\x2d\x50\x28\x83"
5027			"\xbf\xc6\x52\xd3\x34\xd6\xe8\x7a"
5028			"\xb6\xea\xe7\xa8\x6c\x15\x1e\x2c"
5029			"\x57\xbc\x48\x4e\x5f\x5c\xb6\x92"
5030			"\xd2\x49\x77\x81\x6d\x90\x70\xae"
5031			"\x98\xa1\x03\x0d\x6b\xb9\x77\x14"
5032			"\xf1\x4e\x23\xd3\xf8\x68\xbd\xc2"
5033			"\xfe\x04\xb7\x5c\xc5\x17\x60\x8f"
5034			"\x65\x54\xa4\x7a\x42\xdc\x18\x0d"
5035			"\xb5\xcf\x0f\xd3\xc7\x91\x66\x1b"
5036			"\x45\x42\x27\x75\x50\xe5\xee\xb8"
5037			"\x7f\x33\x2c\xba\x4a\x92\x4d\x2c"
5038			"\x3c\xe3\x0d\x80\x01\xba\x0d\x29"
5039			"\xd8\x3c\xe9\x13\x16\x57\xe6\xea"
5040			"\x94\x52\xe7\x00\x4d\x30\xb0\x0f"
5041			"\x35\xb8\xb8\xa7\xb1\xb5\x3b\x44"
5042			"\xe1\x2f\xfd\x88\xed\x43\xe7\x52"
5043			"\x10\x93\xb3\x8a\x30\x6b\x0a\xf7"
5044			"\x23\xc6\x50\x9d\x4a\xb0\xde\xc3"
5045			"\xdc\x9b\x2f\x01\x56\x36\x09\xc5"
5046			"\x2f\x6b\xfe\xf1\xd8\x27\x45\x03"
5047			"\x30\x5e\x5c\x5b\xb4\x62\x0e\x1a"
5048			"\xa9\x21\x2b\x92\x94\x87\x62\x57"
5049			"\x4c\x10\x74\x1a\xf1\x0a\xc5\x84"
5050			"\x3b\x9e\x72\x02\xd7\xcc\x09\x56"
5051			"\xbd\x54\xc1\xf0\xc3\xe3\xb3\xf8"
5052			"\xd2\x0d\x61\xcb\xef\xce\x0d\x05"
5053			"\xb0\x98\xd9\x8e\x4f\xf9\xbc\x93"
5054			"\xa6\xea\xc8\xcf\x10\x53\x4b\xf1"
5055			"\xec\xfc\x89\xf9\x64\xb0\x22\xbf"
5056			"\x9e\x55\x46\x9f\x7c\x50\x8e\x84"
5057			"\x54\x20\x98\xd7\x6c\x40\x1e\xdb"
5058			"\x69\x34\x78\x61\x24\x21\x9c\x8a"
5059			"\xb3\x62\x31\x8b\x6e\xf5\x2a\x35"
5060			"\x86\x13\xb1\x6c\x64\x2e\x41\xa5"
5061			"\x05\xf2\x42\xba\xd2\x3a\x0d\x8e"
5062			"\x8a\x59\x94\x3c\xcf\x36\x27\x82"
5063			"\xc2\x45\xee\x58\xcd\x88\xb4\xec"
5064			"\xde\xb2\x96\x0a\xaf\x38\x6f\x88"
5065			"\xd7\xd8\xe1\xdf\xb9\x96\xa9\x0a"
5066			"\xb1\x95\x28\x86\x20\xe9\x17\x49"
5067			"\xa2\x29\x38\xaa\xa5\xe9\x6e\xf1"
5068			"\x19\x27\xc0\xd5\x2a\x22\xc3\x0b"
5069			"\xdb\x7c\x73\x10\xb9\xba\x89\x76"
5070			"\x54\xae\x7d\x71\xb3\x93\xf6\x32"
5071			"\xe6\x47\x43\x55\xac\xa0\x0d\xc2"
5072			"\x93\x27\x4a\x8e\x0e\x74\x15\xc7"
5073			"\x0b\x85\xd9\x0c\xa9\x30\x7a\x3e"
5074			"\xea\x8f\x85\x6d\x3a\x12\x4f\x72"
5075			"\x69\x58\x7a\x80\xbb\xb5\x97\xf3"
5076			"\xcf\x70\xd2\x5d\xdd\x4d\x21\x79"
5077			"\x54\x4d\xe4\x05\xe8\xbd\xc2\x62"
5078			"\xb1\x3b\x77\x1c\xd6\x5c\xf3\xa0"
5079			"\x79\x00\xa8\x6c\x29\xd9\x18\x24"
5080			"\x36\xa2\x46\xc0\x96\x65\x7f\xbd"
5081			"\x2a\xed\x36\x16\x0c\xaa\x9f\xf4"
5082			"\xc5\xb4\xe2\x12\xed\x69\xed\x4f"
5083			"\x26\x2c\x39\x52\x89\x98\xe7\x2c"
5084			"\x99\xa4\x9e\xa3\x9b\x99\x46\x7a"
5085			"\x3a\xdc\xa8\x59\xa3\xdb\xc3\x3b"
5086			"\x95\x0d\x3b\x09\x6e\xee\x83\x5d"
5087			"\x32\x4d\xed\xab\xfa\x98\x14\x4e"
5088			"\xc3\x15\x45\x53\x61\xc4\x93\xbd"
5089			"\x90\xf4\x99\x95\x4c\xe6\x76\x92"
5090			"\x29\x90\x46\x30\x92\x69\x7d\x13"
5091			"\xf2\xa5\xcd\x69\x49\x44\xb2\x0f"
5092			"\x63\x40\x36\x5f\x09\xe2\x78\xf8"
5093			"\x91\xe3\xe2\xfa\x10\xf7\xc8\x24"
5094			"\xa8\x89\x32\x5c\x37\x25\x1d\xb2"
5095			"\xea\x17\x8a\x0a\xa9\x64\xc3\x7c"
5096			"\x3c\x7c\xbd\xc6\x79\x34\xe7\xe2"
5097			"\x85\x8e\xbf\xf8\xde\x92\xa0\xae"
5098			"\x20\xc4\xf6\xbb\x1f\x38\x19\x0e"
5099			"\xe8\x79\x9c\xa1\x23\xe9\x54\x7e"
5100			"\x37\x2f\xe2\x94\x32\xaf\xa0\x23"
5101			"\x49\xe4\xc0\xb3\xac\x00\x8f\x36"
5102			"\x05\xc4\xa6\x96\xec\x05\x98\x4f"
5103			"\x96\x67\x57\x1f\x20\x86\x1b\x2d"
5104			"\x69\xe4\x29\x93\x66\x5f\xaf\x6b"
5105			"\x88\x26\x2c\x67\x02\x4b\x52\xd0"
5106			"\x83\x7a\x43\x1f\xc0\x71\x15\x25"
5107			"\x77\x65\x08\x60\x11\x76\x4c\x8d"
5108			"\xed\xa9\x27\xc6\xb1\x2a\x2c\x6a"
5109			"\x4a\x97\xf5\xc6\xb7\x70\x42\xd3"
5110			"\x03\xd1\x24\x95\xec\x6d\xab\x38"
5111			"\x72\xce\xe2\x8b\x33\xd7\x51\x09"
5112			"\xdc\x45\xe0\x09\x96\x32\xf3\xc4"
5113			"\x84\xdc\x73\x73\x2d\x1b\x11\x98"
5114			"\xc5\x0e\x69\x28\x94\xc7\xb5\x4d"
5115			"\xc8\x8a\xd0\xaa\x13\x2e\x18\x74"
5116			"\xdd\xd1\x1e\xf3\x90\xe8\xfc\x9a"
5117			"\x72\x4a\x0e\xd1\xe4\xfb\x0d\x96"
5118			"\xd1\x0c\x79\x85\x1b\x1c\xfe\xe1"
5119			"\x62\x8f\x7a\x73\x32\xab\xc8\x18"
5120			"\x69\xe3\x34\x30\xdf\x13\xa6\xe5"
5121			"\xe8\x0e\x67\x7f\x81\x11\xb4\x60"
5122			"\xc7\xbd\x79\x65\x50\xdc\xc4\x5b"
5123			"\xde\x39\xa4\x01\x72\x63\xf3\xd1"
5124			"\x64\x4e\xdf\xfc\x27\x92\x37\x0d"
5125			"\x57\xcd\x11\x4f\x11\x04\x8e\x1d"
5126			"\x16\xf7\xcd\x92\x9a\x99\x30\x14"
5127			"\xf1\x7c\x67\x1b\x1f\x41\x0b\xe8"
5128			"\x32\xe8\xb8\xc1\x4f\x54\x86\x4f"
5129			"\xe5\x79\x81\x73\xcd\x43\x59\x68"
5130			"\x73\x02\x3b\x78\x21\x72\x43\x00"
5131			"\x49\x17\xf7\x00\xaf\x68\x24\x53"
5132			"\x05\x0a\xc3\x33\xe0\x33\x3f\x69"
5133			"\xd2\x84\x2f\x0b\xed\xde\x04\xf4"
5134			"\x11\x94\x13\x69\x51\x09\x28\xde"
5135			"\x57\x5c\xef\xdc\x9a\x49\x1c\x17"
5136			"\x97\xf3\x96\xc1\x7f\x5d\x2e\x7d"
5137			"\x55\xb8\xb3\x02\x09\xb3\x1f\xe7"
5138			"\xc9\x8d\xa3\x36\x34\x8a\x77\x13"
5139			"\x30\x63\x4c\xa5\xcd\xc3\xe0\x7e"
5140			"\x05\xa1\x7b\x0c\xcb\x74\x47\x31"
5141			"\x62\x03\x43\xf1\x87\xb4\xb0\x85"
5142			"\x87\x8e\x4b\x25\xc7\xcf\xae\x4b"
5143			"\x36\x46\x3e\x62\xbc\x6f\xeb\x5f"
5144			"\x73\xac\xe6\x07\xee\xc1\xa1\xd6"
5145			"\xc4\xab\xc9\xd6\x89\x45\xe1\xf1"
5146			"\x04\x4e\x1a\x6f\xbb\x4f\x3a\xa3"
5147			"\xa0\xcb\xa3\x0a\xd8\x71\x35\x55"
5148			"\xe4\xbc\x2e\x04\x06\xe6\xff\x5b"
5149			"\x1c\xc0\x11\x7c\xc5\x17\xf3\x38"
5150			"\xcf\xe9\xba\x0f\x0e\xef\x02\xc2"
5151			"\x8d\xc6\xbc\x4b\x67\x20\x95\xd7"
5152			"\x2c\x45\x5b\x86\x44\x8c\x6f\x2e"
5153			"\x7e\x9f\x1c\x77\xba\x6b\x0e\xa3"
5154			"\x69\xdc\xab\x24\x57\x60\x47\xc1"
5155			"\xd1\xa5\x9d\x23\xe6\xb1\x37\xfe"
5156			"\x93\xd2\x4c\x46\xf9\x0c\xc6\xfb"
5157			"\xd6\x9d\x99\x69\xab\x7a\x07\x0c"
5158			"\x65\xe7\xc4\x08\x96\xe2\xa5\x01"
5159			"\x3f\x46\x07\x05\x7e\xe8\x9a\x90"
5160			"\x50\xdc\xe9\x7a\xea\xa1\x39\x6e"
5161			"\x66\xe4\x6f\xa5\x5f\xb2\xd9\x5b"
5162			"\xf5\xdb\x2a\x32\xf0\x11\x6f\x7c"
5163			"\x26\x10\x8f\x3d\x80\xe9\x58\xf7"
5164			"\xe0\xa8\x57\xf8\xdb\x0e\xce\x99"
5165			"\x63\x19\x3d\xd5\xec\x1b\x77\x69"
5166			"\x98\xf6\xe4\x5f\x67\x17\x4b\x09"
5167			"\x85\x62\x82\x70\x18\xe2\x9a\x78"
5168			"\xe2\x62\xbd\xb4\xf1\x42\xc6\xfb"
5169			"\x08\xd0\xbd\xeb\x4e\x09\xf2\xc8"
5170			"\x1e\xdc\x3d\x32\x21\x56\x9c\x4f"
5171			"\x35\xf3\x61\x06\x72\x84\xc4\x32"
5172			"\xf2\xf1\xfa\x0b\x2f\xc3\xdb\x02"
5173			"\x04\xc2\xde\x57\x64\x60\x8d\xcf"
5174			"\xcb\x86\x5d\x97\x3e\xb1\x9c\x01"
5175			"\xd6\x28\x8f\x99\xbc\x46\xeb\x05"
5176			"\xaf\x7e\xb8\x21\x2a\x56\x85\x1c"
5177			"\xb3\x71\xa0\xde\xca\x96\xf1\x78"
5178			"\x49\xa2\x99\x81\x80\x5c\x01\xf5"
5179			"\xa0\xa2\x56\x63\xe2\x70\x07\xa5"
5180			"\x95\xd6\x85\xeb\x36\x9e\xa9\x51"
5181			"\x66\x56\x5f\x1d\x02\x19\xe2\xf6"
5182			"\x4f\x73\x38\x09\x75\x64\x48\xe0"
5183			"\xf1\x7e\x0e\xe8\x9d\xf9\xed\x94"
5184			"\xfe\x16\x26\x62\x49\x74\xf4\xb0"
5185			"\xd4\xa9\x6c\xb0\xfd\x53\xe9\x81"
5186			"\xe0\x7a\xbf\xcf\xb5\xc4\x01\x81"
5187			"\x79\x99\x77\x01\x3b\xe9\xa2\xb6"
5188			"\xe6\x6a\x8a\x9e\x56\x1c\x8d\x1e"
5189			"\x8f\x06\x55\x2c\x6c\xdc\x92\x87"
5190			"\x64\x3b\x4b\x19\xa1\x13\x64\x1d"
5191			"\x4a\xe9\xc0\x00\xb8\x95\xef\x6b"
5192			"\x1a\x86\x6d\x37\x52\x02\xc2\xe0"
5193			"\xc8\xbb\x42\x0c\x02\x21\x4a\xc9"
5194			"\xef\xa0\x54\xe4\x5e\x16\x53\x81"
5195			"\x70\x62\x10\xaf\xde\xb8\xb5\xd3"
5196			"\xe8\x5e\x6c\xc3\x8a\x3e\x18\x07"
5197			"\xf2\x2f\x7d\xa7\xe1\x3d\x4e\xb4"
5198			"\x26\xa7\xa3\x93\x86\xb2\x04\x1e"
5199			"\x53\x5d\x86\xd6\xde\x65\xca\xe3"
5200			"\x4e\xc1\xcf\xef\xc8\x70\x1b\x83"
5201			"\x13\xdd\x18\x8b\x0d\x76\xd2\xf6"
5202			"\x37\x7a\x93\x7a\x50\x11\x9f\x96"
5203			"\x86\x25\xfd\xac\xdc\xbe\x18\x93"
5204			"\x19\x6b\xec\x58\x4f\xb9\x75\xa7"
5205			"\xdd\x3f\x2f\xec\xc8\x5a\x84\xab"
5206			"\xd5\xe4\x8a\x07\xf6\x4d\x23\xd6"
5207			"\x03\xfb\x03\x6a\xea\x66\xbf\xd4"
5208			"\xb1\x34\xfb\x78\xe9\x55\xdc\x7c"
5209			"\x3d\x9c\xe5\x9a\xac\xc3\x7a\x80"
5210			"\x24\x6d\xa0\xef\x25\x7c\xb7\xea"
5211			"\xce\x4d\x5f\x18\x60\xce\x87\x22"
5212			"\x66\x2f\xd5\xdd\xdd\x02\x21\x75"
5213			"\x82\xa0\x1f\x58\xc6\xd3\x62\xf7"
5214			"\x32\xd8\xaf\x1e\x07\x77\x51\x96"
5215			"\xd5\x6b\x1e\x7e\x80\x02\xe8\x67"
5216			"\xea\x17\x0b\x10\xd2\x3f\x28\x25"
5217			"\x4f\x05\x77\x02\x14\x69\xf0\x2c"
5218			"\xbe\x0c\xf1\x74\x30\xd1\xb9\x9b"
5219			"\xfc\x8c\xbb\x04\x16\xd9\xba\xc3"
5220			"\xbc\x91\x8a\xc4\x30\xa4\xb0\x12"
5221			"\x4c\x21\x87\xcb\xc9\x1d\x16\x96"
5222			"\x07\x6f\x23\x54\xb9\x6f\x79\xe5"
5223			"\x64\xc0\x64\xda\xb1\xae\xdd\x60"
5224			"\x6c\x1a\x9d\xd3\x04\x8e\x45\xb0"
5225			"\x92\x61\xd0\x48\x81\xed\x5e\x1d"
5226			"\xa0\xc9\xa4\x33\xc7\x13\x51\x5d"
5227			"\x7f\x83\x73\xb6\x70\x18\x65\x3e"
5228			"\x2f\x0e\x7a\x12\x39\x98\xab\xd8"
5229			"\x7e\x6f\xa3\xd1\xba\x56\xad\xbd"
5230			"\xf0\x03\x01\x1c\x85\x35\x9f\xeb"
5231			"\x19\x63\xa1\xaf\xfe\x2d\x35\x50"
5232			"\x39\xa0\x65\x7c\x95\x7e\x6b\xfe"
5233			"\xc1\xac\x07\x7c\x98\x4f\xbe\x57"
5234			"\xa7\x22\xec\xe2\x7e\x29\x09\x53"
5235			"\xe8\xbf\xb4\x7e\x3f\x8f\xfc\x14"
5236			"\xce\x54\xf9\x18\x58\xb5\xff\x44"
5237			"\x05\x9d\xce\x1b\xb6\x82\x23\xc8"
5238			"\x2e\xbc\x69\xbb\x4a\x29\x0f\x65"
5239			"\x94\xf0\x63\x06\x0e\xef\x8c\xbd"
5240			"\xff\xfd\xb0\x21\x6e\x57\x05\x75"
5241			"\xda\xd5\xc4\xeb\x8d\x32\xf7\x50"
5242			"\xd3\x6f\x22\xed\x5f\x8e\xa2\x5b"
5243			"\x80\x8c\xc8\x78\x40\x24\x4b\x89"
5244			"\x30\xce\x7a\x97\x0e\xc4\xaf\xef"
5245			"\x9b\xb4\xcd\x66\x74\x14\x04\x2b"
5246			"\xf7\xce\x0b\x1c\x6e\xc2\x78\x8c"
5247			"\xca\xc5\xd0\x1c\x95\x4a\x91\x2d"
5248			"\xa7\x20\xeb\x86\x52\xb7\x67\xd8"
5249			"\x0c\xd6\x04\x14\xde\x51\x74\x75"
5250			"\xe7\x11\xb4\x87\xa3\x3d\x2d\xad"
5251			"\x4f\xef\xa0\x0f\x70\x00\x6d\x13"
5252			"\x19\x1d\x41\x50\xe9\xd8\xf0\x32"
5253			"\x71\xbc\xd3\x11\xf2\xac\xbe\xaf"
5254			"\x75\x46\x65\x4e\x07\x34\x37\xa3"
5255			"\x89\xfe\x75\xd4\x70\x4c\xc6\x3f"
5256			"\x69\x24\x0e\x38\x67\x43\x8c\xde"
5257			"\x06\xb5\xb8\xe7\xc4\xf0\x41\x8f"
5258			"\xf0\xbd\x2f\x0b\xb9\x18\xf8\xde"
5259			"\x64\xb1\xdb\xee\x00\x50\x77\xe1"
5260			"\xc7\xff\xa6\xfa\xdd\x70\xf4\xe3"
5261			"\x93\xe9\x77\x35\x3d\x4b\x2f\x2b"
5262			"\x6d\x55\xf0\xfc\x88\x54\x4e\x89"
5263			"\xc1\x8a\x23\x31\x2d\x14\x2a\xb8"
5264			"\x1b\x15\xdd\x9e\x6e\x7b\xda\x05"
5265			"\x91\x7d\x62\x64\x96\x72\xde\xfc"
5266			"\xc1\xec\xf0\x23\x51\x6f\xdb\x5b"
5267			"\x1d\x08\x57\xce\x09\xb8\xf6\xcd"
5268			"\x8d\x95\xf2\x20\xbf\x0f\x20\x57"
5269			"\x98\x81\x84\x4f\x15\x5c\x76\xe7"
5270			"\x3e\x0a\x3a\x6c\xc4\x8a\xbe\x78"
5271			"\x74\x77\xc3\x09\x4b\x5d\x48\xe4"
5272			"\xc8\xcb\x0b\xea\x17\x28\xcf\xcf"
5273			"\x31\x32\x44\xa4\xe5\x0e\x1a\x98"
5274			"\x94\xc4\xf0\xff\xae\x3e\x44\xe8"
5275			"\xa5\xb3\xb5\x37\x2f\xe8\xaf\x6f"
5276			"\x28\xc1\x37\x5f\x31\xd2\xb9\x33"
5277			"\xb1\xb2\x52\x94\x75\x2c\x29\x59"
5278			"\x06\xc2\x25\xe8\x71\x65\x4e\xed"
5279			"\xc0\x9c\xb1\xbb\x25\xdc\x6c\xe7"
5280			"\x4b\xa5\x7a\x54\x7a\x60\xff\x7a"
5281			"\xe0\x50\x40\x96\x35\x63\xe4\x0b"
5282			"\x76\xbd\xa4\x65\x00\x1b\x57\x88"
5283			"\xae\xed\x39\x88\x42\x11\x3c\xed"
5284			"\x85\x67\x7d\xb9\x68\x82\xe9\x43"
5285			"\x3c\x47\x53\xfa\xe8\xf8\x9f\x1f"
5286			"\x9f\xef\x0f\xf7\x30\xd9\x30\x0e"
5287			"\xb9\x9f\x69\x18\x2f\x7e\xf8\xf8"
5288			"\xf8\x8c\x0f\xd4\x02\x4d\xea\xcd"
5289			"\x0a\x9c\x6f\x71\x6d\x5a\x4c\x60"
5290			"\xce\x20\x56\x32\xc6\xc5\x99\x1f"
5291			"\x09\xe6\x4e\x18\x1a\x15\x13\xa8"
5292			"\x7d\xb1\x6b\xc0\xb2\x6d\xf8\x26"
5293			"\x66\xf8\x3d\x18\x74\x70\x66\x7a"
5294			"\x34\x17\xde\xba\x47\xf1\x06\x18"
5295			"\xcb\xaf\xeb\x4a\x1e\x8f\xa7\x77"
5296			"\xe0\x3b\x78\x62\x66\xc9\x10\xea"
5297			"\x1f\xb7\x29\x0a\x45\xa1\x1d\x1e"
5298			"\x1d\xe2\x65\x61\x50\x9c\xd7\x05"
5299			"\xf2\x0b\x5b\x12\x61\x02\xc8\xe5"
5300			"\x63\x4f\x20\x0c\x07\x17\x33\x5e"
5301			"\x03\x9a\x53\x0f\x2e\x55\xfe\x50"
5302			"\x43\x7d\xd0\xb6\x7e\x5a\xda\xae"
5303			"\x58\xef\x15\xa9\x83\xd9\x46\xb1"
5304			"\x42\xaa\xf5\x02\x6c\xce\x92\x06"
5305			"\x1b\xdb\x66\x45\x91\x79\xc2\x2d"
5306			"\xe6\x53\xd3\x14\xfd\xbb\x44\x63"
5307			"\xc6\xd7\x3d\x7a\x0c\x75\x78\x9d"
5308			"\x5c\xa6\x39\xb3\xe5\x63\xca\x8b"
5309			"\xfe\xd3\xef\x60\x83\xf6\x8e\x70"
5310			"\xb6\x67\xc7\x77\xed\x23\xef\x4c"
5311			"\xf0\xed\x2d\x07\x59\x6f\xc1\x01"
5312			"\x34\x37\x08\xab\xd9\x1f\x09\xb1"
5313			"\xce\x5b\x17\xff\x74\xf8\x9c\xd5"
5314			"\x2c\x56\x39\x79\x0f\x69\x44\x75"
5315			"\x58\x27\x01\xc4\xbf\xa7\xa1\x1d"
5316			"\x90\x17\x77\x86\x5a\x3f\xd9\xd1"
5317			"\x0e\xa0\x10\xf8\xec\x1e\xa5\x7f"
5318			"\x5e\x36\xd1\xe3\x04\x2c\x70\xf7"
5319			"\x8e\xc0\x98\x2f\x6c\x94\x2b\x41"
5320			"\xb7\x60\x00\xb7\x2e\xb8\x02\x8d"
5321			"\xb8\xb0\xd3\x86\xba\x1d\xd7\x90"
5322			"\xd6\xb6\xe1\xfc\xd7\xd8\x28\x06"
5323			"\x63\x9b\xce\x61\x24\x79\xc0\x70"
5324			"\x52\xd0\xb6\xd4\x28\x95\x24\x87"
5325			"\x03\x1f\xb7\x9a\xda\xa3\xfb\x52"
5326			"\x5b\x68\xe7\x4c\x8c\x24\xe1\x42"
5327			"\xf7\xd5\xfd\xad\x06\x32\x9f\xba"
5328			"\xc1\xfc\xdd\xc6\xfc\xfc\xb3\x38"
5329			"\x74\x56\x58\x40\x02\x37\x52\x2c"
5330			"\x55\xcc\xb3\x9e\x7a\xe9\xd4\x38"
5331			"\x41\x5e\x0c\x35\xe2\x11\xd1\x13"
5332			"\xf8\xb7\x8d\x72\x6b\x22\x2a\xb0"
5333			"\xdb\x08\xba\x35\xb9\x3f\xc8\xd3"
5334			"\x24\x90\xec\x58\xd2\x09\xc7\x2d"
5335			"\xed\x38\x80\x36\x72\x43\x27\x49"
5336			"\x4a\x80\x8a\xa2\xe8\xd3\xda\x30"
5337			"\x7d\xb6\x82\x37\x86\x92\x86\x3e"
5338			"\x08\xb2\x28\x5a\x55\x44\x24\x7d"
5339			"\x40\x48\x8a\xb6\x89\x58\x08\xa0"
5340			"\xd6\x6d\x3a\x17\xbf\xf6\x54\xa2"
5341			"\xf5\xd3\x8c\x0f\x78\x12\x57\x8b"
5342			"\xd5\xc2\xfd\x58\x5b\x7f\x38\xe3"
5343			"\xcc\xb7\x7c\x48\xb3\x20\xe8\x81"
5344			"\x14\x32\x45\x05\xe0\xdb\x9f\x75"
5345			"\x85\xb4\x6a\xfc\x95\xe3\x54\x22"
5346			"\x12\xee\x30\xfe\xd8\x30\xef\x34"
5347			"\x50\xab\x46\x30\x98\x2f\xb7\xc0"
5348			"\x15\xa2\x83\xb6\xf2\x06\x21\xa2"
5349			"\xc3\x26\x37\x14\xd1\x4d\xb5\x10"
5350			"\x52\x76\x4d\x6a\xee\xb5\x2b\x15"
5351			"\xb7\xf9\x51\xe8\x2a\xaf\xc7\xfa"
5352			"\x77\xaf\xb0\x05\x4d\xd1\x68\x8e"
5353			"\x74\x05\x9f\x9d\x93\xa5\x3e\x7f"
5354			"\x4e\x5f\x9d\xcb\x09\xc7\x83\xe3"
5355			"\x02\x9d\x27\x1f\xef\x85\x05\x8d"
5356			"\xec\x55\x88\x0f\x0d\x7c\x4c\xe8"
5357			"\xa1\x75\xa0\xd8\x06\x47\x14\xef"
5358			"\xaa\x61\xcf\x26\x15\xad\xd8\xa3"
5359			"\xaa\x75\xf2\x78\x4a\x5a\x61\xdf"
5360			"\x8b\xc7\x04\xbc\xb2\x32\xd2\x7e"
5361			"\x42\xee\xb4\x2f\x51\xff\x7b\x2e"
5362			"\xd3\x02\xe8\xdc\x5d\x0d\x50\xdc"
5363			"\xae\xb7\x46\xf9\xa8\xe6\xd0\x16"
5364			"\xcc\xe6\x2c\x81\xc7\xad\xe9\xf0"
5365			"\x05\x72\x6d\x3d\x0a\x7a\xa9\x02"
5366			"\xac\x82\x93\x6e\xb6\x1c\x28\xfc"
5367			"\x44\x12\xfb\x73\x77\xd4\x13\x39"
5368			"\x29\x88\x8a\xf3\x5c\xa6\x36\xa0"
5369			"\x2a\xed\x7e\xb1\x1d\xd6\x4c\x6b"
5370			"\x41\x01\x18\x5d\x5d\x07\x97\xa6"
5371			"\x4b\xef\x31\x18\xea\xac\xb1\x84"
5372			"\x21\xed\xda\x86",
5373		.rlen = 4100,
5374		.np	= 2,
5375		.tap	= { 4064, 36 },
5376	},
5377};
5378
5379static struct cipher_testvec aes_ctr_rfc3686_dec_tv_template[] = {
5380	{ /* From RFC 3686 */
5381		.key	= "\xae\x68\x52\xf8\x12\x10\x67\xcc"
5382			  "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e"
5383			  "\x00\x00\x00\x30",
5384		.klen	= 20,
5385		.iv	= "\x00\x00\x00\x00\x00\x00\x00\x00",
5386		.input	= "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79"
5387			  "\x2d\x61\x75\xa3\x26\x13\x11\xb8",
5388		.ilen	= 16,
5389		.result	= "Single block msg",
5390		.rlen	= 16,
5391	}, {
5392		.key	= "\x7e\x24\x06\x78\x17\xfa\xe0\xd7"
5393			  "\x43\xd6\xce\x1f\x32\x53\x91\x63"
5394			  "\x00\x6c\xb6\xdb",
5395		.klen	= 20,
5396		.iv	= "\xc0\x54\x3b\x59\xda\x48\xd9\x0b",
5397		.input	= "\x51\x04\xa1\x06\x16\x8a\x72\xd9"
5398			  "\x79\x0d\x41\xee\x8e\xda\xd3\x88"
5399			  "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8"
5400			  "\xfc\xe6\x30\xdf\x91\x41\xbe\x28",
5401		.ilen	= 32,
5402		.result	= "\x00\x01\x02\x03\x04\x05\x06\x07"
5403			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5404			  "\x10\x11\x12\x13\x14\x15\x16\x17"
5405			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5406		.rlen	= 32,
5407	}, {
5408		.key	= "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79"
5409			  "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed"
5410			  "\x86\x3d\x06\xcc\xfd\xb7\x85\x15"
5411			  "\x00\x00\x00\x48",
5412		.klen	= 28,
5413		.iv	= "\x36\x73\x3c\x14\x7d\x6d\x93\xcb",
5414		.input	= "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8"
5415			  "\x4e\x79\x35\xa0\x03\xcb\xe9\x28",
5416		.ilen	= 16,
5417		.result	= "Single block msg",
5418		.rlen	= 16,
5419	}, {
5420		.key	= "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c"
5421			  "\x19\xe7\x34\x08\x19\xe0\xf6\x9c"
5422			  "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a"
5423			  "\x00\x96\xb0\x3b",
5424		.klen	= 28,
5425		.iv	= "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d",
5426		.input	= "\x45\x32\x43\xfc\x60\x9b\x23\x32"
5427			  "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f"
5428			  "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c"
5429			  "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00",
5430		.ilen	= 32,
5431		.result	= "\x00\x01\x02\x03\x04\x05\x06\x07"
5432			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5433			  "\x10\x11\x12\x13\x14\x15\x16\x17"
5434			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5435		.rlen	= 32,
5436	}, {
5437		.key	= "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f"
5438			  "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c"
5439			  "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3"
5440			  "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04"
5441			  "\x00\x00\x00\x60",
5442		.klen	= 36,
5443		.iv	= "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2",
5444		.input	= "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7"
5445			  "\x56\x08\x63\xdc\x71\xe3\xe0\xc0",
5446		.ilen	= 16,
5447		.result	= "Single block msg",
5448		.rlen	= 16,
5449	}, {
5450		.key	= "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb"
5451			  "\x07\x96\x36\x58\x79\xef\xf8\x86"
5452			  "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74"
5453			  "\x4b\x50\x59\x0c\x87\xa2\x38\x84"
5454			  "\x00\xfa\xac\x24",
5455		.klen	= 36,
5456		.iv	= "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75",
5457		.input	= "\xf0\x5e\x23\x1b\x38\x94\x61\x2c"
5458			  "\x49\xee\x00\x0b\x80\x4e\xb2\xa9"
5459			  "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a"
5460			  "\x55\x30\x83\x1d\x93\x44\xaf\x1c",
5461		.ilen	= 32,
5462		.result	= "\x00\x01\x02\x03\x04\x05\x06\x07"
5463			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5464			  "\x10\x11\x12\x13\x14\x15\x16\x17"
5465			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5466		.rlen	= 32,
5467	},
5468};
5469
5470static struct aead_testvec aes_gcm_enc_tv_template[] = {
5471	{ /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */
5472		.key    = zeroed_string,
5473		.klen	= 16,
5474		.result	= "\x58\xe2\xfc\xce\xfa\x7e\x30\x61"
5475			  "\x36\x7f\x1d\x57\xa4\xe7\x45\x5a",
5476		.rlen	= 16,
5477	}, {
5478		.key    = zeroed_string,
5479		.klen	= 16,
5480		.input  = zeroed_string,
5481		.ilen	= 16,
5482		.result = "\x03\x88\xda\xce\x60\xb6\xa3\x92"
5483			  "\xf3\x28\xc2\xb9\x71\xb2\xfe\x78"
5484			  "\xab\x6e\x47\xd4\x2c\xec\x13\xbd"
5485			  "\xf5\x3a\x67\xb2\x12\x57\xbd\xdf",
5486		.rlen	= 32,
5487	}, {
5488		.key	= "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5489			  "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5490		.klen	= 16,
5491		.iv	= "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5492			  "\xde\xca\xf8\x88",
5493		.input	= "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5494			  "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5495			  "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5496			  "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5497			  "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5498			  "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5499			  "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5500			  "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5501		.ilen	= 64,
5502		.result = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5503			  "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5504			  "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5505			  "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5506			  "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5507			  "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5508			  "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5509			  "\x3d\x58\xe0\x91\x47\x3f\x59\x85"
5510			  "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6"
5511			  "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4",
5512		.rlen	= 80,
5513	}, {
5514		.key	= "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5515			  "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5516		.klen	= 16,
5517		.iv	= "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5518			  "\xde\xca\xf8\x88",
5519		.input	= "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5520			  "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5521			  "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5522			  "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5523			  "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5524			  "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5525			  "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5526			  "\xba\x63\x7b\x39",
5527		.ilen	= 60,
5528		.assoc	= "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5529			  "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5530			  "\xab\xad\xda\xd2",
5531		.alen	= 20,
5532		.result = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5533			  "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5534			  "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5535			  "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5536			  "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5537			  "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5538			  "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5539			  "\x3d\x58\xe0\x91"
5540			  "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb"
5541			  "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47",
5542		.rlen	= 76,
5543	}, {
5544		.key    = zeroed_string,
5545		.klen	= 24,
5546		.result	= "\xcd\x33\xb2\x8a\xc7\x73\xf7\x4b"
5547			  "\xa0\x0e\xd1\xf3\x12\x57\x24\x35",
5548		.rlen	= 16,
5549	}, {
5550		.key    = zeroed_string,
5551		.klen	= 24,
5552		.input  = zeroed_string,
5553		.ilen	= 16,
5554		.result = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41"
5555			  "\x1c\x26\x7e\x43\x84\xb0\xf6\x00"
5556			  "\x2f\xf5\x8d\x80\x03\x39\x27\xab"
5557			  "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb",
5558		.rlen	= 32,
5559	}, {
5560		.key	= "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5561			  "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5562			  "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5563		.klen	= 24,
5564		.iv	= "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5565			  "\xde\xca\xf8\x88",
5566		.input	= "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5567			  "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5568			  "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5569			  "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5570			  "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5571			  "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5572			  "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5573			  "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5574		.ilen	= 64,
5575		.result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5576			  "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5577			  "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5578			  "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5579			  "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5580			  "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5581			  "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5582			  "\xcc\xda\x27\x10\xac\xad\xe2\x56"
5583			  "\x99\x24\xa7\xc8\x58\x73\x36\xbf"
5584			  "\xb1\x18\x02\x4d\xb8\x67\x4a\x14",
5585		.rlen	= 80,
5586	}, {
5587		.key	= "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5588			  "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5589			  "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5590		.klen	= 24,
5591		.iv	= "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5592			  "\xde\xca\xf8\x88",
5593		.input	= "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5594			  "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5595			  "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5596			  "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5597			  "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5598			  "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5599			  "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5600			  "\xba\x63\x7b\x39",
5601		.ilen	= 60,
5602		.assoc	= "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5603			  "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5604			  "\xab\xad\xda\xd2",
5605		.alen	= 20,
5606		.result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5607			  "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5608			  "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5609			  "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5610			  "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5611			  "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5612			  "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5613			  "\xcc\xda\x27\x10"
5614			  "\x25\x19\x49\x8e\x80\xf1\x47\x8f"
5615			  "\x37\xba\x55\xbd\x6d\x27\x61\x8c",
5616		.rlen	= 76,
5617		.np	= 2,
5618		.tap	= { 32, 28 },
5619		.anp	= 2,
5620		.atap	= { 8, 12 }
5621	}, {
5622		.key    = zeroed_string,
5623		.klen	= 32,
5624		.result	= "\x53\x0f\x8a\xfb\xc7\x45\x36\xb9"
5625			  "\xa9\x63\xb4\xf1\xc4\xcb\x73\x8b",
5626		.rlen	= 16,
5627	}
5628};
5629
5630static struct aead_testvec aes_gcm_dec_tv_template[] = {
5631	{ /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */
5632		.key    = zeroed_string,
5633		.klen	= 32,
5634		.input	= "\xce\xa7\x40\x3d\x4d\x60\x6b\x6e"
5635			  "\x07\x4e\xc5\xd3\xba\xf3\x9d\x18"
5636			  "\xd0\xd1\xc8\xa7\x99\x99\x6b\xf0"
5637			  "\x26\x5b\x98\xb5\xd4\x8a\xb9\x19",
5638		.ilen	= 32,
5639		.result  = zeroed_string,
5640		.rlen	= 16,
5641	}, {
5642		.key	= "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5643			  "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5644			  "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5645			  "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5646		.klen	= 32,
5647		.iv	= "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5648			  "\xde\xca\xf8\x88",
5649		.input	= "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
5650			  "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d"
5651			  "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9"
5652			  "\x75\x98\xa2\xbd\x25\x55\xd1\xaa"
5653			  "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d"
5654			  "\xa7\xb0\x8b\x10\x56\x82\x88\x38"
5655			  "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a"
5656			  "\xbc\xc9\xf6\x62\x89\x80\x15\xad"
5657			  "\xb0\x94\xda\xc5\xd9\x34\x71\xbd"
5658			  "\xec\x1a\x50\x22\x70\xe3\xcc\x6c",
5659		.ilen	= 80,
5660		.result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5661			  "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5662			  "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5663			  "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5664			  "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5665			  "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5666			  "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5667			  "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5668		.rlen	= 64,
5669	}, {
5670		.key	= "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5671			  "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5672			  "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5673			  "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5674		.klen	= 32,
5675		.iv	= "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5676			  "\xde\xca\xf8\x88",
5677		.input	= "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
5678			  "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d"
5679			  "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9"
5680			  "\x75\x98\xa2\xbd\x25\x55\xd1\xaa"
5681			  "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d"
5682			  "\xa7\xb0\x8b\x10\x56\x82\x88\x38"
5683			  "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a"
5684			  "\xbc\xc9\xf6\x62"
5685			  "\x76\xfc\x6e\xce\x0f\x4e\x17\x68"
5686			  "\xcd\xdf\x88\x53\xbb\x2d\x55\x1b",
5687		.ilen	= 76,
5688		.assoc	= "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5689			  "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5690			  "\xab\xad\xda\xd2",
5691		.alen	= 20,
5692		.result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5693			  "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5694			  "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5695			  "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5696			  "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5697			  "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5698			  "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5699			  "\xba\x63\x7b\x39",
5700		.rlen	= 60,
5701		.np     = 2,
5702		.tap    = { 48, 28 },
5703		.anp	= 3,
5704		.atap	= { 8, 8, 4 }
5705	}, {
5706		.key	= "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5707			  "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5708		.klen	= 16,
5709		.iv	= "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5710			  "\xde\xca\xf8\x88",
5711		.input	= "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5712			  "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5713			  "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5714			  "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5715			  "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5716			  "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5717			  "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5718			  "\x3d\x58\xe0\x91\x47\x3f\x59\x85"
5719			  "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6"
5720			  "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4",
5721		.ilen	= 80,
5722		.result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5723			  "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5724			  "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5725			  "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5726			  "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5727			  "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5728			  "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5729			  "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5730		.rlen	= 64,
5731	}, {
5732		.key	= "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5733			  "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5734		.klen	= 16,
5735		.iv	= "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5736			  "\xde\xca\xf8\x88",
5737		.input	= "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5738			  "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5739			  "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5740			  "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5741			  "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5742			  "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5743			  "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5744			  "\x3d\x58\xe0\x91"
5745			  "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb"
5746			  "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47",
5747		.ilen	= 76,
5748		.assoc	= "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5749			  "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5750			  "\xab\xad\xda\xd2",
5751		.alen	= 20,
5752		.result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5753			  "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5754			  "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5755			  "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5756			  "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5757			  "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5758			  "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5759			  "\xba\x63\x7b\x39",
5760		.rlen	= 60,
5761	}, {
5762		.key    = zeroed_string,
5763		.klen	= 24,
5764		.input	= "\x98\xe7\x24\x7c\x07\xf0\xfe\x41"
5765			  "\x1c\x26\x7e\x43\x84\xb0\xf6\x00"
5766			  "\x2f\xf5\x8d\x80\x03\x39\x27\xab"
5767			  "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb",
5768		.ilen	= 32,
5769		.result  = zeroed_string,
5770		.rlen	= 16,
5771	}, {
5772		.key	= "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5773			  "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5774			  "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5775		.klen	= 24,
5776		.iv	= "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5777			  "\xde\xca\xf8\x88",
5778		.input	= "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5779			  "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5780			  "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5781			  "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5782			  "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5783			  "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5784			  "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5785			  "\xcc\xda\x27\x10\xac\xad\xe2\x56"
5786			  "\x99\x24\xa7\xc8\x58\x73\x36\xbf"
5787			  "\xb1\x18\x02\x4d\xb8\x67\x4a\x14",
5788		.ilen	= 80,
5789		.result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5790			  "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5791			  "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5792			  "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5793			  "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5794			  "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5795			  "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5796			  "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5797		.rlen	= 64,
5798	}, {
5799		.key	= "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5800			  "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5801			  "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5802		.klen	= 24,
5803		.iv	= "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5804			  "\xde\xca\xf8\x88",
5805		.input	= "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5806			  "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5807			  "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5808			  "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5809			  "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5810			  "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5811			  "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5812			  "\xcc\xda\x27\x10"
5813			  "\x25\x19\x49\x8e\x80\xf1\x47\x8f"
5814			  "\x37\xba\x55\xbd\x6d\x27\x61\x8c",
5815		.ilen	= 76,
5816		.assoc	= "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5817			  "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5818			  "\xab\xad\xda\xd2",
5819		.alen	= 20,
5820		.result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5821			  "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5822			  "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5823			  "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5824			  "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5825			  "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5826			  "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5827			  "\xba\x63\x7b\x39",
5828		.rlen	= 60,
5829	}
5830};
5831
5832static struct aead_testvec aes_ccm_enc_tv_template[] = {
5833	{ /* From RFC 3610 */
5834		.key	= "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5835			  "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5836		.klen	= 16,
5837		.iv	= "\x01\x00\x00\x00\x03\x02\x01\x00"
5838			  "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5839		.assoc	= "\x00\x01\x02\x03\x04\x05\x06\x07",
5840		.alen	= 8,
5841		.input	= "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5842			  "\x10\x11\x12\x13\x14\x15\x16\x17"
5843			  "\x18\x19\x1a\x1b\x1c\x1d\x1e",
5844		.ilen	= 23,
5845		.result	= "\x58\x8c\x97\x9a\x61\xc6\x63\xd2"
5846			  "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80"
5847			  "\x6d\x5f\x6b\x61\xda\xc3\x84\x17"
5848			  "\xe8\xd1\x2c\xfd\xf9\x26\xe0",
5849		.rlen	= 31,
5850	}, {
5851		.key	= "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5852			  "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5853		.klen	= 16,
5854		.iv	= "\x01\x00\x00\x00\x07\x06\x05\x04"
5855			  "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5856		.assoc	= "\x00\x01\x02\x03\x04\x05\x06\x07"
5857			  "\x08\x09\x0a\x0b",
5858		.alen	= 12,
5859		.input	= "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5860			  "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5861			  "\x1c\x1d\x1e\x1f",
5862		.ilen	= 20,
5863		.result	= "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb"
5864			  "\x9d\x4e\x13\x12\x53\x65\x8a\xd8"
5865			  "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07"
5866			  "\x7d\x9c\x2d\x93",
5867		.rlen	= 28,
5868	}, {
5869		.key	= "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5870			  "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5871		.klen	= 16,
5872		.iv	= "\x01\x00\x00\x00\x0b\x0a\x09\x08"
5873			  "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5874		.assoc	= "\x00\x01\x02\x03\x04\x05\x06\x07",
5875		.alen	= 8,
5876		.input	= "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5877			  "\x10\x11\x12\x13\x14\x15\x16\x17"
5878			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
5879			  "\x20",
5880		.ilen	= 25,
5881		.result	= "\x82\x53\x1a\x60\xcc\x24\x94\x5a"
5882			  "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d"
5883			  "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1"
5884			  "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1"
5885			  "\x7e\x5f\x4e",
5886		.rlen	= 35,
5887	}, {
5888		.key	= "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5889			  "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5890		.klen	= 16,
5891		.iv	= "\x01\x00\x00\x00\x0c\x0b\x0a\x09"
5892			  "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5893		.assoc	= "\x00\x01\x02\x03\x04\x05\x06\x07"
5894			  "\x08\x09\x0a\x0b",
5895		.alen	= 12,
5896		.input	= "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5897			  "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5898			  "\x1c\x1d\x1e",
5899		.ilen	= 19,
5900		.result	= "\x07\x34\x25\x94\x15\x77\x85\x15"
5901			  "\x2b\x07\x40\x98\x33\x0a\xbb\x14"
5902			  "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b"
5903			  "\x4d\x99\x99\x88\xdd",
5904		.rlen	= 29,
5905	}, {
5906		.key	= "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5907			  "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5908		.klen	= 16,
5909		.iv	= "\x01\x00\x33\x56\x8e\xf7\xb2\x63"
5910			  "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5911		.assoc	= "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb",
5912		.alen	= 8,
5913		.input	= "\x90\x20\xea\x6f\x91\xbd\xd8\x5a"
5914			  "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf"
5915			  "\xb7\x9c\x70\x28\x94\x9c\xd0\xec",
5916		.ilen	= 24,
5917		.result	= "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa"
5918			  "\xa0\x72\x6c\x55\xd3\x78\x06\x12"
5919			  "\x98\xc8\x5c\x92\x81\x4a\xbc\x33"
5920			  "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a",
5921		.rlen	= 32,
5922	}, {
5923		.key	= "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5924			  "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5925		.klen	= 16,
5926		.iv	= "\x01\x00\xd5\x60\x91\x2d\x3f\x70"
5927			  "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5928		.assoc	= "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81"
5929			  "\x20\xea\x60\xc0",
5930		.alen	= 12,
5931		.input	= "\x64\x35\xac\xba\xfb\x11\xa8\x2e"
5932			  "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9"
5933			  "\x3a\x80\x3b\xa8\x7f",
5934		.ilen	= 21,
5935		.result	= "\x00\x97\x69\xec\xab\xdf\x48\x62"
5936			  "\x55\x94\xc5\x92\x51\xe6\x03\x57"
5937			  "\x22\x67\x5e\x04\xc8\x47\x09\x9e"
5938			  "\x5a\xe0\x70\x45\x51",
5939		.rlen	= 29,
5940	}, {
5941		.key	= "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5942			  "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5943		.klen	= 16,
5944		.iv	= "\x01\x00\x42\xff\xf8\xf1\x95\x1c"
5945			  "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5946		.assoc	= "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8",
5947		.alen	= 8,
5948		.input	= "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01"
5949			  "\x8e\x5e\x67\x01\xc9\x17\x87\x65"
5950			  "\x98\x09\xd6\x7d\xbe\xdd\x18",
5951		.ilen	= 23,
5952		.result	= "\xbc\x21\x8d\xaa\x94\x74\x27\xb6"
5953			  "\xdb\x38\x6a\x99\xac\x1a\xef\x23"
5954			  "\xad\xe0\xb5\x29\x39\xcb\x6a\x63"
5955			  "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6"
5956			  "\xba",
5957		.rlen	= 33,
5958	},
5959};
5960
5961static struct aead_testvec aes_ccm_dec_tv_template[] = {
5962	{ /* From RFC 3610 */
5963		.key	= "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5964			  "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5965		.klen	= 16,
5966		.iv	= "\x01\x00\x00\x00\x03\x02\x01\x00"
5967			  "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5968		.assoc	= "\x00\x01\x02\x03\x04\x05\x06\x07",
5969		.alen	= 8,
5970		.input	= "\x58\x8c\x97\x9a\x61\xc6\x63\xd2"
5971			  "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80"
5972			  "\x6d\x5f\x6b\x61\xda\xc3\x84\x17"
5973			  "\xe8\xd1\x2c\xfd\xf9\x26\xe0",
5974		.ilen	= 31,
5975		.result	= "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5976			  "\x10\x11\x12\x13\x14\x15\x16\x17"
5977			  "\x18\x19\x1a\x1b\x1c\x1d\x1e",
5978		.rlen	= 23,
5979	}, {
5980		.key	= "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5981			  "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5982		.klen	= 16,
5983		.iv	= "\x01\x00\x00\x00\x07\x06\x05\x04"
5984			  "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5985		.assoc	= "\x00\x01\x02\x03\x04\x05\x06\x07"
5986			  "\x08\x09\x0a\x0b",
5987		.alen	= 12,
5988		.input	= "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb"
5989			  "\x9d\x4e\x13\x12\x53\x65\x8a\xd8"
5990			  "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07"
5991			  "\x7d\x9c\x2d\x93",
5992		.ilen	= 28,
5993		.result	= "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5994			  "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5995			  "\x1c\x1d\x1e\x1f",
5996		.rlen	= 20,
5997	}, {
5998		.key	= "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5999			  "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
6000		.klen	= 16,
6001		.iv	= "\x01\x00\x00\x00\x0b\x0a\x09\x08"
6002			  "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
6003		.assoc	= "\x00\x01\x02\x03\x04\x05\x06\x07",
6004		.alen	= 8,
6005		.input	= "\x82\x53\x1a\x60\xcc\x24\x94\x5a"
6006			  "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d"
6007			  "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1"
6008			  "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1"
6009			  "\x7e\x5f\x4e",
6010		.ilen	= 35,
6011		.result	= "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
6012			  "\x10\x11\x12\x13\x14\x15\x16\x17"
6013			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
6014			  "\x20",
6015		.rlen	= 25,
6016	}, {
6017		.key	= "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
6018			  "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
6019		.klen	= 16,
6020		.iv	= "\x01\x00\x00\x00\x0c\x0b\x0a\x09"
6021			  "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
6022		.assoc	= "\x00\x01\x02\x03\x04\x05\x06\x07"
6023			  "\x08\x09\x0a\x0b",
6024		.alen	= 12,
6025		.input	= "\x07\x34\x25\x94\x15\x77\x85\x15"
6026			  "\x2b\x07\x40\x98\x33\x0a\xbb\x14"
6027			  "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b"
6028			  "\x4d\x99\x99\x88\xdd",
6029		.ilen	= 29,
6030		.result	= "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
6031			  "\x14\x15\x16\x17\x18\x19\x1a\x1b"
6032			  "\x1c\x1d\x1e",
6033		.rlen	= 19,
6034	}, {
6035		.key	= "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
6036			  "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
6037		.klen	= 16,
6038		.iv	= "\x01\x00\x33\x56\x8e\xf7\xb2\x63"
6039			  "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
6040		.assoc	= "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb",
6041		.alen	= 8,
6042		.input	= "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa"
6043			  "\xa0\x72\x6c\x55\xd3\x78\x06\x12"
6044			  "\x98\xc8\x5c\x92\x81\x4a\xbc\x33"
6045			  "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a",
6046		.ilen	= 32,
6047		.result	= "\x90\x20\xea\x6f\x91\xbd\xd8\x5a"
6048			  "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf"
6049			  "\xb7\x9c\x70\x28\x94\x9c\xd0\xec",
6050		.rlen	= 24,
6051	}, {
6052		.key	= "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
6053			  "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
6054		.klen	= 16,
6055		.iv	= "\x01\x00\xd5\x60\x91\x2d\x3f\x70"
6056			  "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
6057		.assoc	= "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81"
6058			  "\x20\xea\x60\xc0",
6059		.alen	= 12,
6060		.input	= "\x00\x97\x69\xec\xab\xdf\x48\x62"
6061			  "\x55\x94\xc5\x92\x51\xe6\x03\x57"
6062			  "\x22\x67\x5e\x04\xc8\x47\x09\x9e"
6063			  "\x5a\xe0\x70\x45\x51",
6064		.ilen	= 29,
6065		.result	= "\x64\x35\xac\xba\xfb\x11\xa8\x2e"
6066			  "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9"
6067			  "\x3a\x80\x3b\xa8\x7f",
6068		.rlen	= 21,
6069	}, {
6070		.key	= "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
6071			  "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
6072		.klen	= 16,
6073		.iv	= "\x01\x00\x42\xff\xf8\xf1\x95\x1c"
6074			  "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
6075		.assoc	= "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8",
6076		.alen	= 8,
6077		.input	= "\xbc\x21\x8d\xaa\x94\x74\x27\xb6"
6078			  "\xdb\x38\x6a\x99\xac\x1a\xef\x23"
6079			  "\xad\xe0\xb5\x29\x39\xcb\x6a\x63"
6080			  "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6"
6081			  "\xba",
6082		.ilen	= 33,
6083		.result	= "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01"
6084			  "\x8e\x5e\x67\x01\xc9\x17\x87\x65"
6085			  "\x98\x09\xd6\x7d\xbe\xdd\x18",
6086		.rlen	= 23,
6087	},
6088};
6089
6090/*
6091 * rfc4309 refers to section 8 of rfc3610 for test vectors, but they all
6092 * use a 13-byte nonce, we only support an 11-byte nonce. Similarly, all of
6093 * Special Publication 800-38C's test vectors also use nonce lengths our
6094 * implementation doesn't support. The following are taken from fips cavs
6095 * fax files on hand at Red Hat.
6096 *
6097 * nb: actual key lengths are (klen - 3), the last 3 bytes are actually
6098 * part of the nonce which combine w/the iv, but need to be input this way.
6099 */
6100static struct aead_testvec aes_ccm_rfc4309_enc_tv_template[] = {
6101	{
6102		.key	= "\x83\xac\x54\x66\xc2\xeb\xe5\x05"
6103			  "\x2e\x01\xd1\xfc\x5d\x82\x66\x2e"
6104			  "\x96\xac\x59",
6105		.klen	= 19,
6106		.iv	= "\x30\x07\xa1\xe2\xa2\xc7\x55\x24",
6107		.alen	= 0,
6108		.input	= "\x19\xc8\x81\xf6\xe9\x86\xff\x93"
6109			  "\x0b\x78\x67\xe5\xbb\xb7\xfc\x6e"
6110			  "\x83\x77\xb3\xa6\x0c\x8c\x9f\x9c"
6111			  "\x35\x2e\xad\xe0\x62\xf9\x91\xa1",
6112		.ilen	= 32,
6113		.result	= "\xab\x6f\xe1\x69\x1d\x19\x99\xa8"
6114			  "\x92\xa0\xc4\x6f\x7e\xe2\x8b\xb1"
6115			  "\x70\xbb\x8c\xa6\x4c\x6e\x97\x8a"
6116			  "\x57\x2b\xbe\x5d\x98\xa6\xb1\x32"
6117			  "\xda\x24\xea\xd9\xa1\x39\x98\xfd"
6118			  "\xa4\xbe\xd9\xf2\x1a\x6d\x22\xa8",
6119		.rlen	= 48,
6120	}, {
6121		.key	= "\x1e\x2c\x7e\x01\x41\x9a\xef\xc0"
6122			  "\x0d\x58\x96\x6e\x5c\xa2\x4b\xd3"
6123			  "\x4f\xa3\x19",
6124		.klen	= 19,
6125		.iv	= "\xd3\x01\x5a\xd8\x30\x60\x15\x56",
6126		.assoc	= "\xda\xe6\x28\x9c\x45\x2d\xfd\x63"
6127			  "\x5e\xda\x4c\xb6\xe6\xfc\xf9\xb7"
6128			  "\x0c\x56\xcb\xe4\xe0\x05\x7a\xe1"
6129			  "\x0a\x63\x09\x78\xbc\x2c\x55\xde",
6130		.alen	= 32,
6131		.input	= "\x87\xa3\x36\xfd\x96\xb3\x93\x78"
6132			  "\xa9\x28\x63\xba\x12\xa3\x14\x85"
6133			  "\x57\x1e\x06\xc9\x7b\x21\xef\x76"
6134			  "\x7f\x38\x7e\x8e\x29\xa4\x3e\x7e",
6135		.ilen	= 32,
6136		.result	= "\x8a\x1e\x11\xf0\x02\x6b\xe2\x19"
6137			  "\xfc\x70\xc4\x6d\x8e\xb7\x99\xab"
6138			  "\xc5\x4b\xa2\xac\xd3\xf3\x48\xff"
6139			  "\x3b\xb5\xce\x53\xef\xde\xbb\x02"
6140			  "\xa9\x86\x15\x6c\x13\xfe\xda\x0a"
6141			  "\x22\xb8\x29\x3d\xd8\x39\x9a\x23",
6142		.rlen	= 48,
6143	}, {
6144		.key	= "\xf4\x6b\xc2\x75\x62\xfe\xb4\xe1"
6145			  "\xa3\xf0\xff\xdd\x4e\x4b\x12\x75"
6146			  "\x53\x14\x73\x66\x8d\x88\xf6\x80"
6147			  "\xa0\x20\x35",
6148		.klen	= 27,
6149		.iv	= "\x26\xf2\x21\x8d\x50\x20\xda\xe2",
6150		.assoc	= "\x5b\x9e\x13\x67\x02\x5e\xef\xc1"
6151			  "\x6c\xf9\xd7\x1e\x52\x8f\x7a\x47"
6152			  "\xe9\xd4\xcf\x20\x14\x6e\xf0\x2d"
6153			  "\xd8\x9e\x2b\x56\x10\x23\x56\xe7",
6154		.alen	= 32,
6155		.ilen	= 0,
6156		.result	= "\x36\xea\x7a\x70\x08\xdc\x6a\xbc"
6157			  "\xad\x0c\x7a\x63\xf6\x61\xfd\x9b",
6158		.rlen	= 16,
6159	}, {
6160		.key	= "\x56\xdf\x5c\x8f\x26\x3f\x0e\x42"
6161			  "\xef\x7a\xd3\xce\xfc\x84\x60\x62"
6162			  "\xca\xb4\x40\xaf\x5f\xc9\xc9\x01"
6163			  "\xd6\x3c\x8c",
6164		.klen	= 27,
6165		.iv	= "\x86\x84\xb6\xcd\xef\x09\x2e\x94",
6166		.assoc	= "\x02\x65\x78\x3c\xe9\x21\x30\x91"
6167			  "\xb1\xb9\xda\x76\x9a\x78\x6d\x95"
6168			  "\xf2\x88\x32\xa3\xf2\x50\xcb\x4c"
6169			  "\xe3\x00\x73\x69\x84\x69\x87\x79",
6170		.alen	= 32,
6171		.input	= "\x9f\xd2\x02\x4b\x52\x49\x31\x3c"
6172			  "\x43\x69\x3a\x2d\x8e\x70\xad\x7e"
6173			  "\xe0\xe5\x46\x09\x80\x89\x13\xb2"
6174			  "\x8c\x8b\xd9\x3f\x86\xfb\xb5\x6b",
6175		.ilen	= 32,
6176		.result	= "\x39\xdf\x7c\x3c\x5a\x29\xb9\x62"
6177			  "\x5d\x51\xc2\x16\xd8\xbd\x06\x9f"
6178			  "\x9b\x6a\x09\x70\xc1\x51\x83\xc2"
6179			  "\x66\x88\x1d\x4f\x9a\xda\xe0\x1e"
6180			  "\xc7\x79\x11\x58\xe5\x6b\x20\x40"
6181			  "\x7a\xea\x46\x42\x8b\xe4\x6f\xe1",
6182		.rlen	= 48,
6183	}, {
6184		.key	= "\xe0\x8d\x99\x71\x60\xd7\x97\x1a"
6185			  "\xbd\x01\x99\xd5\x8a\xdf\x71\x3a"
6186			  "\xd3\xdf\x24\x4b\x5e\x3d\x4b\x4e"
6187			  "\x30\x7a\xb9\xd8\x53\x0a\x5e\x2b"
6188			  "\x1e\x29\x91",
6189		.klen	= 35,
6190		.iv	= "\xad\x8e\xc1\x53\x0a\xcf\x2d\xbe",
6191		.assoc	= "\x19\xb6\x1f\x57\xc4\xf3\xf0\x8b"
6192			  "\x78\x2b\x94\x02\x29\x0f\x42\x27"
6193			  "\x6b\x75\xcb\x98\x34\x08\x7e\x79"
6194			  "\xe4\x3e\x49\x0d\x84\x8b\x22\x87",
6195		.alen	= 32,
6196		.input	= "\xe1\xd9\xd8\x13\xeb\x3a\x75\x3f"
6197			  "\x9d\xbd\x5f\x66\xbe\xdc\xbb\x66"
6198			  "\xbf\x17\x99\x62\x4a\x39\x27\x1f"
6199			  "\x1d\xdc\x24\xae\x19\x2f\x98\x4c",
6200		.ilen	= 32,
6201		.result	= "\x19\xb8\x61\x33\x45\x2b\x43\x96"
6202			  "\x6f\x51\xd0\x20\x30\x7d\x9b\xc6"
6203			  "\x26\x3d\xf8\xc9\x65\x16\xa8\x9f"
6204			  "\xf0\x62\x17\x34\xf2\x1e\x8d\x75"
6205			  "\x4e\x13\xcc\xc0\xc3\x2a\x54\x2d",
6206		.rlen	= 40,
6207	}, {
6208		.key	= "\x7c\xc8\x18\x3b\x8d\x99\xe0\x7c"
6209			  "\x45\x41\xb8\xbd\x5c\xa7\xc2\x32"
6210			  "\x8a\xb8\x02\x59\xa4\xfe\xa9\x2c"
6211			  "\x09\x75\x9a\x9b\x3c\x9b\x27\x39"
6212			  "\xf9\xd9\x4e",
6213		.klen	= 35,
6214		.iv	= "\x63\xb5\x3d\x9d\x43\xf6\x1e\x50",
6215		.assoc	= "\x57\xf5\x6b\x8b\x57\x5c\x3d\x3b"
6216			  "\x13\x02\x01\x0c\x83\x4c\x96\x35"
6217			  "\x8e\xd6\x39\xcf\x7d\x14\x9b\x94"
6218			  "\xb0\x39\x36\xe6\x8f\x57\xe0\x13",
6219		.alen	= 32,
6220		.input	= "\x3b\x6c\x29\x36\xb6\xef\x07\xa6"
6221			  "\x83\x72\x07\x4f\xcf\xfa\x66\x89"
6222			  "\x5f\xca\xb1\xba\xd5\x8f\x2c\x27"
6223			  "\x30\xdb\x75\x09\x93\xd4\x65\xe4",
6224		.ilen	= 32,
6225		.result	= "\xb0\x88\x5a\x33\xaa\xe5\xc7\x1d"
6226			  "\x85\x23\xc7\xc6\x2f\xf4\x1e\x3d"
6227			  "\xcc\x63\x44\x25\x07\x78\x4f\x9e"
6228			  "\x96\xb8\x88\xeb\xbc\x48\x1f\x06"
6229			  "\x39\xaf\x39\xac\xd8\x4a\x80\x39"
6230			  "\x7b\x72\x8a\xf7",
6231		.rlen	= 44,
6232	}, {
6233		.key	= "\xab\xd0\xe9\x33\x07\x26\xe5\x83"
6234			  "\x8c\x76\x95\xd4\xb6\xdc\xf3\x46"
6235			  "\xf9\x8f\xad\xe3\x02\x13\x83\x77"
6236			  "\x3f\xb0\xf1\xa1\xa1\x22\x0f\x2b"
6237			  "\x24\xa7\x8b",
6238		.klen	= 35,
6239		.iv	= "\x07\xcb\xcc\x0e\xe6\x33\xbf\xf5",
6240		.assoc	= "\xd4\xdb\x30\x1d\x03\xfe\xfd\x5f"
6241			  "\x87\xd4\x8c\xb6\xb6\xf1\x7a\x5d"
6242			  "\xab\x90\x65\x8d\x8e\xca\x4d\x4f"
6243			  "\x16\x0c\x40\x90\x4b\xc7\x36\x73",
6244		.alen	= 32,
6245		.input	= "\xf5\xc6\x7d\x48\xc1\xb7\xe6\x92"
6246			  "\x97\x5a\xca\xc4\xa9\x6d\xf9\x3d"
6247			  "\x6c\xde\xbc\xf1\x90\xea\x6a\xb2"
6248			  "\x35\x86\x36\xaf\x5c\xfe\x4b\x3a",
6249		.ilen	= 32,
6250		.result	= "\x83\x6f\x40\x87\x72\xcf\xc1\x13"
6251			  "\xef\xbb\x80\x21\x04\x6c\x58\x09"
6252			  "\x07\x1b\xfc\xdf\xc0\x3f\x5b\xc7"
6253			  "\xe0\x79\xa8\x6e\x71\x7c\x3f\xcf"
6254			  "\x5c\xda\xb2\x33\xe5\x13\xe2\x0d"
6255			  "\x74\xd1\xef\xb5\x0f\x3a\xb5\xf8",
6256		.rlen	= 48,
6257	},
6258};
6259
6260static struct aead_testvec aes_ccm_rfc4309_dec_tv_template[] = {
6261	{
6262		.key	= "\xab\x2f\x8a\x74\xb7\x1c\xd2\xb1"
6263			  "\xff\x80\x2e\x48\x7d\x82\xf8\xb9"
6264			  "\xc6\xfb\x7d",
6265		.klen	= 19,
6266		.iv	= "\x80\x0d\x13\xab\xd8\xa6\xb2\xd8",
6267		.alen	= 0,
6268		.input	= "\xd5\xe8\x93\x9f\xc7\x89\x2e\x2b",
6269		.ilen	= 8,
6270		.result	= "\x00",
6271		.rlen	= 0,
6272		.novrfy	= 1,
6273	}, {
6274		.key	= "\xab\x2f\x8a\x74\xb7\x1c\xd2\xb1"
6275			  "\xff\x80\x2e\x48\x7d\x82\xf8\xb9"
6276			  "\xaf\x94\x87",
6277		.klen	= 19,
6278		.iv	= "\x78\x35\x82\x81\x7f\x88\x94\x68",
6279		.alen	= 0,
6280		.input	= "\x41\x3c\xb8\x87\x73\xcb\xf3\xf3",
6281		.ilen	= 8,
6282		.result	= "\x00",
6283		.rlen	= 0,
6284	}, {
6285		.key	= "\x61\x0e\x8c\xae\xe3\x23\xb6\x38"
6286			  "\x76\x1c\xf6\x3a\x67\xa3\x9c\xd8"
6287			  "\xc6\xfb\x7d",
6288		.klen	= 19,
6289		.iv	= "\x80\x0d\x13\xab\xd8\xa6\xb2\xd8",
6290		.assoc	= "\xf3\x94\x87\x78\x35\x82\x81\x7f"
6291			  "\x88\x94\x68\xb1\x78\x6b\x2b\xd6"
6292			  "\x04\x1f\x4e\xed\x78\xd5\x33\x66"
6293			  "\xd8\x94\x99\x91\x81\x54\x62\x57",
6294		.alen	= 32,
6295		.input	= "\xf0\x7c\x29\x02\xae\x1c\x2f\x55"
6296			  "\xd0\xd1\x3d\x1a\xa3\x6d\xe4\x0a"
6297			  "\x86\xb0\x87\x6b\x62\x33\x8c\x34"
6298			  "\xce\xab\x57\xcc\x79\x0b\xe0\x6f"
6299			  "\x5c\x3e\x48\x1f\x6c\x46\xf7\x51"
6300			  "\x8b\x84\x83\x2a\xc1\x05\xb8\xc5",
6301		.ilen	= 48,
6302		.result	= "\x50\x82\x3e\x07\xe2\x1e\xb6\xfb"
6303			  "\x33\xe4\x73\xce\xd2\xfb\x95\x79"
6304			  "\xe8\xb4\xb5\x77\x11\x10\x62\x6f"
6305			  "\x6a\x82\xd1\x13\xec\xf5\xd0\x48",
6306		.rlen	= 32,
6307		.novrfy	= 1,
6308	}, {
6309		.key	= "\x61\x0e\x8c\xae\xe3\x23\xb6\x38"
6310			  "\x76\x1c\xf6\x3a\x67\xa3\x9c\xd8"
6311			  "\x05\xe0\xc9",
6312		.klen	= 19,
6313		.iv	= "\x0f\xed\x34\xea\x97\xd4\x3b\xdf",
6314		.assoc	= "\x49\x5c\x50\x1f\x1d\x94\xcc\x81"
6315			  "\xba\xb7\xb6\x03\xaf\xa5\xc1\xa1"
6316			  "\xd8\x5c\x42\x68\xe0\x6c\xda\x89"
6317			  "\x05\xac\x56\xac\x1b\x2a\xd3\x86",
6318		.alen	= 32,
6319		.input	= "\x39\xbe\x7d\x15\x62\x77\xf3\x3c"
6320			  "\xad\x83\x52\x6d\x71\x03\x25\x1c"
6321			  "\xed\x81\x3a\x9a\x16\x7d\x19\x80"
6322			  "\x72\x04\x72\xd0\xf6\xff\x05\x0f"
6323			  "\xb7\x14\x30\x00\x32\x9e\xa0\xa6"
6324			  "\x9e\x5a\x18\xa1\xb8\xfe\xdb\xd3",
6325		.ilen	= 48,
6326		.result	= "\x75\x05\xbe\xc2\xd9\x1e\xde\x60"
6327			  "\x47\x3d\x8c\x7d\xbd\xb5\xd9\xb7"
6328			  "\xf2\xae\x61\x05\x8f\x82\x24\x3f"
6329			  "\x9c\x67\x91\xe1\x38\x4f\xe4\x0c",
6330		.rlen	= 32,
6331	}, {
6332		.key	= "\x39\xbb\xa7\xbe\x59\x97\x9e\x73"
6333			  "\xa2\xbc\x6b\x98\xd7\x75\x7f\xe3"
6334			  "\xa4\x48\x93\x39\x26\x71\x4a\xc6"
6335			  "\xee\x49\x83",
6336		.klen	= 27,
6337		.iv	= "\xe9\xa9\xff\xe9\x57\xba\xfd\x9e",
6338		.assoc	= "\x44\xa6\x2c\x05\xe9\xe1\x43\xb1"
6339			  "\x58\x7c\xf2\x5c\x6d\x39\x0a\x64"
6340			  "\xa4\xf0\x13\x05\xd1\x77\x99\x67"
6341			  "\x11\xc4\xc6\xdb\x00\x56\x36\x61",
6342		.alen	= 32,
6343		.input	= "\x71\x99\xfa\xf4\x44\x12\x68\x9b",
6344		.ilen	= 8,
6345		.result	= "\x00",
6346		.rlen	= 0,
6347	}, {
6348		.key	= "\x58\x5d\xa0\x96\x65\x1a\x04\xd7"
6349			  "\x96\xe5\xc5\x68\xaa\x95\x35\xe0"
6350			  "\x29\xa0\xba\x9e\x48\x78\xd1\xba"
6351			  "\xee\x49\x83",
6352		.klen	= 27,
6353		.iv	= "\xe9\xa9\xff\xe9\x57\xba\xfd\x9e",
6354		.assoc	= "\x44\xa6\x2c\x05\xe9\xe1\x43\xb1"
6355			  "\x58\x7c\xf2\x5c\x6d\x39\x0a\x64"
6356			  "\xa4\xf0\x13\x05\xd1\x77\x99\x67"
6357			  "\x11\xc4\xc6\xdb\x00\x56\x36\x61",
6358		.alen	= 32,
6359		.input	= "\xfb\xe5\x5d\x34\xbe\xe5\xe8\xe7"
6360			  "\x5a\xef\x2f\xbf\x1f\x7f\xd4\xb2"
6361			  "\x66\xca\x61\x1e\x96\x7a\x61\xb3"
6362			  "\x1c\x16\x45\x52\xba\x04\x9c\x9f"
6363			  "\xb1\xd2\x40\xbc\x52\x7c\x6f\xb1",
6364		.ilen	= 40,
6365		.result	= "\x85\x34\x66\x42\xc8\x92\x0f\x36"
6366			  "\x58\xe0\x6b\x91\x3c\x98\x5c\xbb"
6367			  "\x0a\x85\xcc\x02\xad\x7a\x96\xe9"
6368			  "\x65\x43\xa4\xc3\x0f\xdc\x55\x81",
6369		.rlen	= 32,
6370	}, {
6371		.key	= "\x58\x5d\xa0\x96\x65\x1a\x04\xd7"
6372			  "\x96\xe5\xc5\x68\xaa\x95\x35\xe0"
6373			  "\x29\xa0\xba\x9e\x48\x78\xd1\xba"
6374			  "\xd1\xfc\x57",
6375		.klen	= 27,
6376		.iv	= "\x9c\xfe\xb8\x9c\xad\x71\xaa\x1f",
6377		.assoc	= "\x86\x67\xa5\xa9\x14\x5f\x0d\xc6"
6378			  "\xff\x14\xc7\x44\xbf\x6c\x3a\xc3"
6379			  "\xff\xb6\x81\xbd\xe2\xd5\x06\xc7"
6380			  "\x3c\xa1\x52\x13\x03\x8a\x23\x3a",
6381		.alen	= 32,
6382		.input	= "\x3f\x66\xb0\x9d\xe5\x4b\x38\x00"
6383			  "\xc6\x0e\x6e\xe5\xd6\x98\xa6\x37"
6384			  "\x8c\x26\x33\xc6\xb2\xa2\x17\xfa"
6385			  "\x64\x19\xc0\x30\xd7\xfc\x14\x6b"
6386			  "\xe3\x33\xc2\x04\xb0\x37\xbe\x3f"
6387			  "\xa9\xb4\x2d\x68\x03\xa3\x44\xef",
6388		.ilen	= 48,
6389		.result	= "\x02\x87\x4d\x28\x80\x6e\xb2\xed"
6390			  "\x99\x2a\xa8\xca\x04\x25\x45\x90"
6391			  "\x1d\xdd\x5a\xd9\xe4\xdb\x9c\x9c"
6392			  "\x49\xe9\x01\xfe\xa7\x80\x6d\x6b",
6393		.rlen	= 32,
6394		.novrfy	= 1,
6395	}, {
6396		.key	= "\xa4\x4b\x54\x29\x0a\xb8\x6d\x01"
6397			  "\x5b\x80\x2a\xcf\x25\xc4\xb7\x5c"
6398			  "\x20\x2c\xad\x30\xc2\x2b\x41\xfb"
6399			  "\x0e\x85\xbc\x33\xad\x0f\x2b\xff"
6400			  "\xee\x49\x83",
6401		.klen	= 35,
6402		.iv	= "\xe9\xa9\xff\xe9\x57\xba\xfd\x9e",
6403		.alen	= 0,
6404		.input	= "\x1f\xb8\x8f\xa3\xdd\x54\x00\xf2",
6405		.ilen	= 8,
6406		.result	= "\x00",
6407		.rlen	= 0,
6408	}, {
6409		.key	= "\x39\xbb\xa7\xbe\x59\x97\x9e\x73"
6410			  "\xa2\xbc\x6b\x98\xd7\x75\x7f\xe3"
6411			  "\xa4\x48\x93\x39\x26\x71\x4a\xc6"
6412			  "\xae\x8f\x11\x4c\xc2\x9c\x4a\xbb"
6413			  "\x85\x34\x66",
6414		.klen	= 35,
6415		.iv	= "\x42\xc8\x92\x0f\x36\x58\xe0\x6b",
6416		.alen	= 0,
6417		.input	= "\x48\x01\x5e\x02\x24\x04\x66\x47"
6418			  "\xa1\xea\x6f\xaf\xe8\xfc\xfb\xdd"
6419			  "\xa5\xa9\x87\x8d\x84\xee\x2e\x77"
6420			  "\xbb\x86\xb9\xf5\x5c\x6c\xff\xf6"
6421			  "\x72\xc3\x8e\xf7\x70\xb1\xb2\x07"
6422			  "\xbc\xa8\xa3\xbd\x83\x7c\x1d\x2a",
6423		.ilen	= 48,
6424		.result	= "\xdc\x56\xf2\x71\xb0\xb1\xa0\x6c"
6425			  "\xf0\x97\x3a\xfb\x6d\xe7\x32\x99"
6426			  "\x3e\xaf\x70\x5e\xb2\x4d\xea\x39"
6427			  "\x89\xd4\x75\x7a\x63\xb1\xda\x93",
6428		.rlen	= 32,
6429		.novrfy	= 1,
6430	}, {
6431		.key	= "\x58\x5d\xa0\x96\x65\x1a\x04\xd7"
6432			  "\x96\xe5\xc5\x68\xaa\x95\x35\xe0"
6433			  "\x29\xa0\xba\x9e\x48\x78\xd1\xba"
6434			  "\x0d\x1a\x53\x3b\xb5\xe3\xf8\x8b"
6435			  "\xcf\x76\x3f",
6436		.klen	= 35,
6437		.iv	= "\xd9\x95\x75\x8f\x44\x89\x40\x7b",
6438		.assoc	= "\x8f\x86\x6c\x4d\x1d\xc5\x39\x88"
6439			  "\xc8\xf3\x5c\x52\x10\x63\x6f\x2b"
6440			  "\x8a\x2a\xc5\x6f\x30\x23\x58\x7b"
6441			  "\xfb\x36\x03\x11\xb4\xd9\xf2\xfe",
6442		.alen	= 32,
6443		.input	= "\x48\x58\xd6\xf3\xad\x63\x58\xbf"
6444			  "\xae\xc7\x5e\xae\x83\x8f\x7b\xe4"
6445			  "\x78\x5c\x4c\x67\x71\x89\x94\xbf"
6446			  "\x47\xf1\x63\x7e\x1c\x59\xbd\xc5"
6447			  "\x7f\x44\x0a\x0c\x01\x18\x07\x92"
6448			  "\xe1\xd3\x51\xce\x32\x6d\x0c\x5b",
6449		.ilen	= 48,
6450		.result	= "\xc2\x54\xc8\xde\x78\x87\x77\x40"
6451			  "\x49\x71\xe4\xb7\xe7\xcb\x76\x61"
6452			  "\x0a\x41\xb9\xe9\xc0\x76\x54\xab"
6453			  "\x04\x49\x3b\x19\x93\x57\x25\x5d",
6454		.rlen	= 32,
6455	},
6456};
6457
6458/*
6459 * ANSI X9.31 Continuous Pseudo-Random Number Generator (AES mode)
6460 * test vectors, taken from Appendix B.2.9 and B.2.10:
6461 *     http://csrc.nist.gov/groups/STM/cavp/documents/rng/RNGVS.pdf
6462 * Only AES-128 is supported at this time.
6463 */
6464#define ANSI_CPRNG_AES_TEST_VECTORS	6
6465
6466static struct cprng_testvec ansi_cprng_aes_tv_template[] = {
6467	{
6468		.key	= "\xf3\xb1\x66\x6d\x13\x60\x72\x42"
6469			  "\xed\x06\x1c\xab\xb8\xd4\x62\x02",
6470		.klen	= 16,
6471		.dt	= "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62"
6472			  "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xf9",
6473		.dtlen	= 16,
6474		.v	= "\x80\x00\x00\x00\x00\x00\x00\x00"
6475			  "\x00\x00\x00\x00\x00\x00\x00\x00",
6476		.vlen	= 16,
6477		.result	= "\x59\x53\x1e\xd1\x3b\xb0\xc0\x55"
6478			  "\x84\x79\x66\x85\xc1\x2f\x76\x41",
6479		.rlen	= 16,
6480		.loops	= 1,
6481	}, {
6482		.key	= "\xf3\xb1\x66\x6d\x13\x60\x72\x42"
6483			  "\xed\x06\x1c\xab\xb8\xd4\x62\x02",
6484		.klen	= 16,
6485		.dt	= "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62"
6486			  "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xfa",
6487		.dtlen	= 16,
6488		.v	= "\xc0\x00\x00\x00\x00\x00\x00\x00"
6489			  "\x00\x00\x00\x00\x00\x00\x00\x00",
6490		.vlen	= 16,
6491		.result	= "\x7c\x22\x2c\xf4\xca\x8f\xa2\x4c"
6492			  "\x1c\x9c\xb6\x41\xa9\xf3\x22\x0d",
6493		.rlen	= 16,
6494		.loops	= 1,
6495	}, {
6496		.key	= "\xf3\xb1\x66\x6d\x13\x60\x72\x42"
6497			  "\xed\x06\x1c\xab\xb8\xd4\x62\x02",
6498		.klen	= 16,
6499		.dt	= "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62"
6500			  "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xfb",
6501		.dtlen	= 16,
6502		.v	= "\xe0\x00\x00\x00\x00\x00\x00\x00"
6503			  "\x00\x00\x00\x00\x00\x00\x00\x00",
6504		.vlen	= 16,
6505		.result	= "\x8a\xaa\x00\x39\x66\x67\x5b\xe5"
6506			  "\x29\x14\x28\x81\xa9\x4d\x4e\xc7",
6507		.rlen	= 16,
6508		.loops	= 1,
6509	}, {
6510		.key	= "\xf3\xb1\x66\x6d\x13\x60\x72\x42"
6511			  "\xed\x06\x1c\xab\xb8\xd4\x62\x02",
6512		.klen	= 16,
6513		.dt	= "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62"
6514			  "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xfc",
6515		.dtlen	= 16,
6516		.v	= "\xf0\x00\x00\x00\x00\x00\x00\x00"
6517			  "\x00\x00\x00\x00\x00\x00\x00\x00",
6518		.vlen	= 16,
6519		.result	= "\x88\xdd\xa4\x56\x30\x24\x23\xe5"
6520			  "\xf6\x9d\xa5\x7e\x7b\x95\xc7\x3a",
6521		.rlen	= 16,
6522		.loops	= 1,
6523	}, {
6524		.key	= "\xf3\xb1\x66\x6d\x13\x60\x72\x42"
6525			  "\xed\x06\x1c\xab\xb8\xd4\x62\x02",
6526		.klen	= 16,
6527		.dt	= "\xe6\xb3\xbe\x78\x2a\x23\xfa\x62"
6528			  "\xd7\x1d\x4a\xfb\xb0\xe9\x22\xfd",
6529		.dtlen	= 16,
6530		.v	= "\xf8\x00\x00\x00\x00\x00\x00\x00"
6531			  "\x00\x00\x00\x00\x00\x00\x00\x00",
6532		.vlen	= 16,
6533		.result	= "\x05\x25\x92\x46\x61\x79\xd2\xcb"
6534			  "\x78\xc4\x0b\x14\x0a\x5a\x9a\xc8",
6535		.rlen	= 16,
6536		.loops	= 1,
6537	}, {	/* Monte Carlo Test */
6538		.key	= "\x9f\x5b\x51\x20\x0b\xf3\x34\xb5"
6539			  "\xd8\x2b\xe8\xc3\x72\x55\xc8\x48",
6540		.klen	= 16,
6541		.dt	= "\x63\x76\xbb\xe5\x29\x02\xba\x3b"
6542			  "\x67\xc9\x25\xfa\x70\x1f\x11\xac",
6543		.dtlen	= 16,
6544		.v	= "\x57\x2c\x8e\x76\x87\x26\x47\x97"
6545			  "\x7e\x74\xfb\xdd\xc4\x95\x01\xd1",
6546		.vlen	= 16,
6547		.result	= "\x48\xe9\xbd\x0d\x06\xee\x18\xfb"
6548			  "\xe4\x57\x90\xd5\xc3\xfc\x9b\x73",
6549		.rlen	= 16,
6550		.loops	= 10000,
6551	},
6552};
6553
6554/* Cast5 test vectors from RFC 2144 */
6555#define CAST5_ENC_TEST_VECTORS	3
6556#define CAST5_DEC_TEST_VECTORS	3
6557
6558static struct cipher_testvec cast5_enc_tv_template[] = {
6559	{
6560		.key	= "\x01\x23\x45\x67\x12\x34\x56\x78"
6561			  "\x23\x45\x67\x89\x34\x56\x78\x9a",
6562		.klen	= 16,
6563		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6564		.ilen	= 8,
6565		.result	= "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2",
6566		.rlen	= 8,
6567	}, {
6568		.key	= "\x01\x23\x45\x67\x12\x34\x56\x78"
6569			  "\x23\x45",
6570		.klen	= 10,
6571		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6572		.ilen	= 8,
6573		.result	= "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b",
6574		.rlen	= 8,
6575	}, {
6576		.key	= "\x01\x23\x45\x67\x12",
6577		.klen	= 5,
6578		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6579		.ilen	= 8,
6580		.result	= "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e",
6581		.rlen	= 8,
6582	},
6583};
6584
6585static struct cipher_testvec cast5_dec_tv_template[] = {
6586	{
6587		.key	= "\x01\x23\x45\x67\x12\x34\x56\x78"
6588			  "\x23\x45\x67\x89\x34\x56\x78\x9a",
6589		.klen	= 16,
6590		.input	= "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2",
6591		.ilen	= 8,
6592		.result	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6593		.rlen	= 8,
6594	}, {
6595		.key	= "\x01\x23\x45\x67\x12\x34\x56\x78"
6596			  "\x23\x45",
6597		.klen	= 10,
6598		.input	= "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b",
6599		.ilen	= 8,
6600		.result	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6601		.rlen	= 8,
6602	}, {
6603		.key	= "\x01\x23\x45\x67\x12",
6604		.klen	= 5,
6605		.input	= "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e",
6606		.ilen	= 8,
6607		.result	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6608		.rlen	= 8,
6609	},
6610};
6611
6612/*
6613 * ARC4 test vectors from OpenSSL
6614 */
6615#define ARC4_ENC_TEST_VECTORS	7
6616#define ARC4_DEC_TEST_VECTORS	7
6617
6618static struct cipher_testvec arc4_enc_tv_template[] = {
6619	{
6620		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6621		.klen	= 8,
6622		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6623		.ilen	= 8,
6624		.result	= "\x75\xb7\x87\x80\x99\xe0\xc5\x96",
6625		.rlen	= 8,
6626	}, {
6627		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6628		.klen	= 8,
6629		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00",
6630		.ilen	= 8,
6631		.result	= "\x74\x94\xc2\xe7\x10\x4b\x08\x79",
6632		.rlen	= 8,
6633	}, {
6634		.key	= "\x00\x00\x00\x00\x00\x00\x00\x00",
6635		.klen	= 8,
6636		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00",
6637		.ilen	= 8,
6638		.result	= "\xde\x18\x89\x41\xa3\x37\x5d\x3a",
6639		.rlen	= 8,
6640	}, {
6641		.key	= "\xef\x01\x23\x45",
6642		.klen	= 4,
6643		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00"
6644			  "\x00\x00\x00\x00\x00\x00\x00\x00"
6645			  "\x00\x00\x00\x00",
6646		.ilen	= 20,
6647		.result	= "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6648			  "\xbd\x61\x5a\x11\x62\xe1\xc7\xba"
6649			  "\x36\xb6\x78\x58",
6650		.rlen	= 20,
6651	}, {
6652		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6653		.klen	= 8,
6654		.input	= "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6655			  "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6656			  "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6657			  "\x12\x34\x56\x78",
6658		.ilen	= 28,
6659		.result	= "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89"
6660			  "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c"
6661			  "\x89\x2e\xbe\x30\x14\x3c\xe2\x87"
6662			  "\x40\x01\x1e\xcf",
6663		.rlen	= 28,
6664	}, {
6665		.key	= "\xef\x01\x23\x45",
6666		.klen	= 4,
6667		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00"
6668			  "\x00\x00",
6669		.ilen	= 10,
6670		.result	= "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6671			  "\xbd\x61",
6672		.rlen	= 10,
6673	}, {
6674		.key	= "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
6675			"\x00\x00\x00\x00\x00\x00\x00\x00",
6676		.klen	= 16,
6677		.input	= "\x01\x23\x45\x67\x89\xAB\xCD\xEF",
6678		.ilen	= 8,
6679		.result	= "\x69\x72\x36\x59\x1B\x52\x42\xB1",
6680		.rlen	= 8,
6681	},
6682};
6683
6684static struct cipher_testvec arc4_dec_tv_template[] = {
6685	{
6686		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6687		.klen	= 8,
6688		.input	= "\x75\xb7\x87\x80\x99\xe0\xc5\x96",
6689		.ilen	= 8,
6690		.result	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6691		.rlen	= 8,
6692	}, {
6693		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6694		.klen	= 8,
6695		.input	= "\x74\x94\xc2\xe7\x10\x4b\x08\x79",
6696		.ilen	= 8,
6697		.result	= "\x00\x00\x00\x00\x00\x00\x00\x00",
6698		.rlen	= 8,
6699	}, {
6700		.key	= "\x00\x00\x00\x00\x00\x00\x00\x00",
6701		.klen	= 8,
6702		.input	= "\xde\x18\x89\x41\xa3\x37\x5d\x3a",
6703		.ilen	= 8,
6704		.result	= "\x00\x00\x00\x00\x00\x00\x00\x00",
6705		.rlen	= 8,
6706	}, {
6707		.key	= "\xef\x01\x23\x45",
6708		.klen	= 4,
6709		.input	= "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6710			  "\xbd\x61\x5a\x11\x62\xe1\xc7\xba"
6711			  "\x36\xb6\x78\x58",
6712		.ilen	= 20,
6713		.result	= "\x00\x00\x00\x00\x00\x00\x00\x00"
6714			  "\x00\x00\x00\x00\x00\x00\x00\x00"
6715			  "\x00\x00\x00\x00",
6716		.rlen	= 20,
6717	}, {
6718		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef",
6719		.klen	= 8,
6720		.input	= "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89"
6721			  "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c"
6722			  "\x89\x2e\xbe\x30\x14\x3c\xe2\x87"
6723			  "\x40\x01\x1e\xcf",
6724		.ilen	= 28,
6725		.result	= "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6726			  "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6727			  "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6728			  "\x12\x34\x56\x78",
6729		.rlen	= 28,
6730	}, {
6731		.key	= "\xef\x01\x23\x45",
6732		.klen	= 4,
6733		.input	= "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6734			  "\xbd\x61",
6735		.ilen	= 10,
6736		.result	= "\x00\x00\x00\x00\x00\x00\x00\x00"
6737			  "\x00\x00",
6738		.rlen	= 10,
6739	}, {
6740		.key	= "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
6741			"\x00\x00\x00\x00\x00\x00\x00\x00",
6742		.klen	= 16,
6743		.input	= "\x69\x72\x36\x59\x1B\x52\x42\xB1",
6744		.ilen	= 8,
6745		.result	= "\x01\x23\x45\x67\x89\xAB\xCD\xEF",
6746		.rlen	= 8,
6747	},
6748};
6749
6750/*
6751 * TEA test vectors
6752 */
6753#define TEA_ENC_TEST_VECTORS	4
6754#define TEA_DEC_TEST_VECTORS	4
6755
6756static struct cipher_testvec tea_enc_tv_template[] = {
6757	{
6758		.key    = zeroed_string,
6759		.klen	= 16,
6760		.input  = zeroed_string,
6761		.ilen	= 8,
6762		.result	= "\x0a\x3a\xea\x41\x40\xa9\xba\x94",
6763		.rlen	= 8,
6764	}, {
6765		.key	= "\x2b\x02\x05\x68\x06\x14\x49\x76"
6766			  "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6767		.klen	= 16,
6768		.input	= "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6769		.ilen	= 8,
6770		.result	= "\x77\x5d\x2a\x6a\xf6\xce\x92\x09",
6771		.rlen	= 8,
6772	}, {
6773		.key	= "\x09\x65\x43\x11\x66\x44\x39\x25"
6774			  "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6775		.klen	= 16,
6776		.input	= "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6777			  "\x65\x73\x74\x5f\x76\x65\x63\x74",
6778		.ilen	= 16,
6779		.result	= "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e"
6780			  "\xdd\x89\xa1\x25\x04\x21\xdf\x95",
6781		.rlen	= 16,
6782	}, {
6783		.key	= "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6784			  "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6785		.klen	= 16,
6786		.input	= "\x54\x65\x61\x20\x69\x73\x20\x67"
6787			  "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6788			  "\x79\x6f\x75\x21\x21\x21\x20\x72"
6789			  "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6790		.ilen	= 32,
6791		.result	= "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47"
6792			  "\x94\x18\x95\x91\xa9\xfc\x49\xf8"
6793			  "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a"
6794			  "\x07\x89\x73\xc2\x45\x92\xc6\x90",
6795		.rlen	= 32,
6796	}
6797};
6798
6799static struct cipher_testvec tea_dec_tv_template[] = {
6800	{
6801		.key    = zeroed_string,
6802		.klen	= 16,
6803		.input	= "\x0a\x3a\xea\x41\x40\xa9\xba\x94",
6804		.ilen	= 8,
6805		.result = zeroed_string,
6806		.rlen	= 8,
6807	}, {
6808		.key	= "\x2b\x02\x05\x68\x06\x14\x49\x76"
6809			  "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6810		.klen	= 16,
6811		.input	= "\x77\x5d\x2a\x6a\xf6\xce\x92\x09",
6812		.ilen	= 8,
6813		.result	= "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6814		.rlen	= 8,
6815	}, {
6816		.key	= "\x09\x65\x43\x11\x66\x44\x39\x25"
6817			  "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6818		.klen	= 16,
6819		.input	= "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e"
6820			  "\xdd\x89\xa1\x25\x04\x21\xdf\x95",
6821		.ilen   = 16,
6822		.result	= "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6823			  "\x65\x73\x74\x5f\x76\x65\x63\x74",
6824		.rlen	= 16,
6825	}, {
6826		.key	= "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6827			  "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6828		.klen	= 16,
6829		.input	= "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47"
6830			  "\x94\x18\x95\x91\xa9\xfc\x49\xf8"
6831			  "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a"
6832			  "\x07\x89\x73\xc2\x45\x92\xc6\x90",
6833		.ilen	= 32,
6834		.result	= "\x54\x65\x61\x20\x69\x73\x20\x67"
6835			  "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6836			  "\x79\x6f\x75\x21\x21\x21\x20\x72"
6837			  "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6838		.rlen	= 32,
6839	}
6840};
6841
6842/*
6843 * XTEA test vectors
6844 */
6845#define XTEA_ENC_TEST_VECTORS	4
6846#define XTEA_DEC_TEST_VECTORS	4
6847
6848static struct cipher_testvec xtea_enc_tv_template[] = {
6849	{
6850		.key    = zeroed_string,
6851		.klen	= 16,
6852		.input  = zeroed_string,
6853		.ilen	= 8,
6854		.result	= "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7",
6855		.rlen	= 8,
6856	}, {
6857		.key	= "\x2b\x02\x05\x68\x06\x14\x49\x76"
6858			  "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6859		.klen	= 16,
6860		.input	= "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6861		.ilen	= 8,
6862		.result	= "\x94\xeb\xc8\x96\x84\x6a\x49\xa8",
6863		.rlen	= 8,
6864	}, {
6865		.key	= "\x09\x65\x43\x11\x66\x44\x39\x25"
6866			  "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6867		.klen	= 16,
6868		.input	= "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6869			  "\x65\x73\x74\x5f\x76\x65\x63\x74",
6870		.ilen	= 16,
6871		.result	= "\x3e\xce\xae\x22\x60\x56\xa8\x9d"
6872			  "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a",
6873		.rlen	= 16,
6874	}, {
6875		.key	= "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6876			  "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6877		.klen	= 16,
6878		.input	= "\x54\x65\x61\x20\x69\x73\x20\x67"
6879			  "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6880			  "\x79\x6f\x75\x21\x21\x21\x20\x72"
6881			  "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6882		.ilen	= 32,
6883		.result	= "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a"
6884			  "\x86\xff\x6f\xd0\xe3\x87\x70\x07"
6885			  "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4"
6886			  "\x73\xa2\xfa\xc9\x16\x59\x5d\x81",
6887		.rlen	= 32,
6888	}
6889};
6890
6891static struct cipher_testvec xtea_dec_tv_template[] = {
6892	{
6893		.key    = zeroed_string,
6894		.klen	= 16,
6895		.input	= "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7",
6896		.ilen	= 8,
6897		.result = zeroed_string,
6898		.rlen	= 8,
6899	}, {
6900		.key	= "\x2b\x02\x05\x68\x06\x14\x49\x76"
6901			  "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6902		.klen	= 16,
6903		.input	= "\x94\xeb\xc8\x96\x84\x6a\x49\xa8",
6904		.ilen	= 8,
6905		.result	= "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6906		.rlen	= 8,
6907	}, {
6908		.key	= "\x09\x65\x43\x11\x66\x44\x39\x25"
6909			  "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6910		.klen	= 16,
6911		.input	= "\x3e\xce\xae\x22\x60\x56\xa8\x9d"
6912			  "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a",
6913		.ilen	= 16,
6914		.result	= "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6915			  "\x65\x73\x74\x5f\x76\x65\x63\x74",
6916		.rlen	= 16,
6917	}, {
6918		.key	= "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6919			  "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6920		.klen	= 16,
6921		.input	= "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a"
6922			  "\x86\xff\x6f\xd0\xe3\x87\x70\x07"
6923			  "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4"
6924			  "\x73\xa2\xfa\xc9\x16\x59\x5d\x81",
6925		.ilen	= 32,
6926		.result	= "\x54\x65\x61\x20\x69\x73\x20\x67"
6927			  "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6928			  "\x79\x6f\x75\x21\x21\x21\x20\x72"
6929			  "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6930		.rlen	= 32,
6931	}
6932};
6933
6934/*
6935 * KHAZAD test vectors.
6936 */
6937#define KHAZAD_ENC_TEST_VECTORS 5
6938#define KHAZAD_DEC_TEST_VECTORS 5
6939
6940static struct cipher_testvec khazad_enc_tv_template[] = {
6941	{
6942		.key	= "\x80\x00\x00\x00\x00\x00\x00\x00"
6943			  "\x00\x00\x00\x00\x00\x00\x00\x00",
6944		.klen	= 16,
6945		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00",
6946		.ilen	= 8,
6947		.result	= "\x49\xa4\xce\x32\xac\x19\x0e\x3f",
6948		.rlen	= 8,
6949	}, {
6950		.key	= "\x38\x38\x38\x38\x38\x38\x38\x38"
6951			  "\x38\x38\x38\x38\x38\x38\x38\x38",
6952		.klen	= 16,
6953		.input	= "\x38\x38\x38\x38\x38\x38\x38\x38",
6954		.ilen	= 8,
6955		.result	= "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9",
6956		.rlen	= 8,
6957	}, {
6958		.key	= "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2"
6959			"\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6960		.klen	= 16,
6961		.input	= "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6962		.ilen	= 8,
6963		.result	= "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c",
6964		.rlen	= 8,
6965	}, {
6966		.key	= "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6967			"\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6968		.klen	= 16,
6969		.input	= "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6970		.ilen	= 8,
6971		.result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6972		.rlen	= 8,
6973	}, {
6974		.key	= "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6975			"\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6976		.klen	= 16,
6977		.input	= "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6978			"\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6979		.ilen	= 16,
6980		.result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8"
6981			"\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6982		.rlen	= 16,
6983	},
6984};
6985
6986static struct cipher_testvec khazad_dec_tv_template[] = {
6987	{
6988		.key	= "\x80\x00\x00\x00\x00\x00\x00\x00"
6989			  "\x00\x00\x00\x00\x00\x00\x00\x00",
6990		.klen	= 16,
6991		.input	= "\x49\xa4\xce\x32\xac\x19\x0e\x3f",
6992		.ilen	= 8,
6993		.result	= "\x00\x00\x00\x00\x00\x00\x00\x00",
6994		.rlen	= 8,
6995	}, {
6996		.key	= "\x38\x38\x38\x38\x38\x38\x38\x38"
6997			  "\x38\x38\x38\x38\x38\x38\x38\x38",
6998		.klen	= 16,
6999		.input	= "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9",
7000		.ilen	= 8,
7001		.result	= "\x38\x38\x38\x38\x38\x38\x38\x38",
7002		.rlen	= 8,
7003	}, {
7004		.key	= "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2"
7005			"\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
7006		.klen	= 16,
7007		.input	= "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c",
7008		.ilen	= 8,
7009		.result	= "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
7010		.rlen	= 8,
7011	}, {
7012		.key	= "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
7013			"\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
7014		.klen	= 16,
7015		.input  = "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
7016		.ilen	= 8,
7017		.result	= "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
7018		.rlen	= 8,
7019	}, {
7020		.key	= "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
7021			"\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
7022		.klen	= 16,
7023		.input  = "\x04\x74\xf5\x70\x50\x16\xd3\xb8"
7024			"\x04\x74\xf5\x70\x50\x16\xd3\xb8",
7025		.ilen	= 16,
7026		.result	= "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
7027			"\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
7028		.rlen	= 16,
7029	},
7030};
7031
7032/*
7033 * Anubis test vectors.
7034 */
7035
7036#define ANUBIS_ENC_TEST_VECTORS			5
7037#define ANUBIS_DEC_TEST_VECTORS			5
7038#define ANUBIS_CBC_ENC_TEST_VECTORS		2
7039#define ANUBIS_CBC_DEC_TEST_VECTORS		2
7040
7041static struct cipher_testvec anubis_enc_tv_template[] = {
7042	{
7043		.key	= "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7044			  "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7045		.klen	= 16,
7046		.input	= "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7047			  "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7048		.ilen	= 16,
7049		.result	= "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
7050			  "\x08\xb7\x52\x8e\x6e\x6e\x86\x90",
7051		.rlen	= 16,
7052	}, {
7053
7054		.key	= "\x03\x03\x03\x03\x03\x03\x03\x03"
7055			  "\x03\x03\x03\x03\x03\x03\x03\x03"
7056			  "\x03\x03\x03\x03",
7057		.klen	= 20,
7058		.input	= "\x03\x03\x03\x03\x03\x03\x03\x03"
7059			  "\x03\x03\x03\x03\x03\x03\x03\x03",
7060		.ilen	= 16,
7061		.result	= "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49"
7062			  "\x87\x41\x6f\x82\x0a\x98\x64\xae",
7063		.rlen	= 16,
7064	}, {
7065		.key	= "\x24\x24\x24\x24\x24\x24\x24\x24"
7066			  "\x24\x24\x24\x24\x24\x24\x24\x24"
7067			  "\x24\x24\x24\x24\x24\x24\x24\x24"
7068			  "\x24\x24\x24\x24",
7069		.klen	= 28,
7070		.input	= "\x24\x24\x24\x24\x24\x24\x24\x24"
7071			  "\x24\x24\x24\x24\x24\x24\x24\x24",
7072		.ilen	= 16,
7073		.result	= "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d"
7074			  "\x06\xd3\x61\x27\xfd\x13\x9e\xde",
7075		.rlen	= 16,
7076	}, {
7077		.key	= "\x25\x25\x25\x25\x25\x25\x25\x25"
7078			  "\x25\x25\x25\x25\x25\x25\x25\x25"
7079			  "\x25\x25\x25\x25\x25\x25\x25\x25"
7080			  "\x25\x25\x25\x25\x25\x25\x25\x25",
7081		.klen	= 32,
7082		.input	= "\x25\x25\x25\x25\x25\x25\x25\x25"
7083			  "\x25\x25\x25\x25\x25\x25\x25\x25",
7084		.ilen	= 16,
7085		.result	= "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4"
7086			"\x17\xd9\xff\x40\x3b\x0e\xe5\xfe",
7087		.rlen	= 16,
7088	}, {
7089		.key	= "\x35\x35\x35\x35\x35\x35\x35\x35"
7090			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7091			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7092			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7093			  "\x35\x35\x35\x35\x35\x35\x35\x35",
7094		.klen	= 40,
7095		.input	= "\x35\x35\x35\x35\x35\x35\x35\x35"
7096			  "\x35\x35\x35\x35\x35\x35\x35\x35",
7097		.ilen	= 16,
7098		.result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
7099			  "\x9e\xc6\x84\x0f\x17\x21\x07\xee",
7100		.rlen	= 16,
7101	},
7102};
7103
7104static struct cipher_testvec anubis_dec_tv_template[] = {
7105	{
7106		.key	= "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7107			  "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7108		.klen	= 16,
7109		.input	= "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
7110			  "\x08\xb7\x52\x8e\x6e\x6e\x86\x90",
7111		.ilen	= 16,
7112		.result	= "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7113			  "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7114		.rlen	= 16,
7115	}, {
7116
7117		.key	= "\x03\x03\x03\x03\x03\x03\x03\x03"
7118			  "\x03\x03\x03\x03\x03\x03\x03\x03"
7119			  "\x03\x03\x03\x03",
7120		.klen	= 20,
7121		.input	= "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49"
7122			  "\x87\x41\x6f\x82\x0a\x98\x64\xae",
7123		.ilen	= 16,
7124		.result	= "\x03\x03\x03\x03\x03\x03\x03\x03"
7125			  "\x03\x03\x03\x03\x03\x03\x03\x03",
7126		.rlen	= 16,
7127	}, {
7128		.key	= "\x24\x24\x24\x24\x24\x24\x24\x24"
7129			  "\x24\x24\x24\x24\x24\x24\x24\x24"
7130			  "\x24\x24\x24\x24\x24\x24\x24\x24"
7131			  "\x24\x24\x24\x24",
7132		.klen	= 28,
7133		.input	= "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d"
7134			  "\x06\xd3\x61\x27\xfd\x13\x9e\xde",
7135		.ilen	= 16,
7136		.result	= "\x24\x24\x24\x24\x24\x24\x24\x24"
7137			  "\x24\x24\x24\x24\x24\x24\x24\x24",
7138		.rlen	= 16,
7139	}, {
7140		.key	= "\x25\x25\x25\x25\x25\x25\x25\x25"
7141			  "\x25\x25\x25\x25\x25\x25\x25\x25"
7142			  "\x25\x25\x25\x25\x25\x25\x25\x25"
7143			  "\x25\x25\x25\x25\x25\x25\x25\x25",
7144		.klen	= 32,
7145		.input	= "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4"
7146			"\x17\xd9\xff\x40\x3b\x0e\xe5\xfe",
7147		.ilen	= 16,
7148		.result	= "\x25\x25\x25\x25\x25\x25\x25\x25"
7149			  "\x25\x25\x25\x25\x25\x25\x25\x25",
7150		.rlen	= 16,
7151	}, {
7152		.key	= "\x35\x35\x35\x35\x35\x35\x35\x35"
7153			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7154			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7155			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7156			  "\x35\x35\x35\x35\x35\x35\x35\x35",
7157		.input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
7158			 "\x9e\xc6\x84\x0f\x17\x21\x07\xee",
7159		.klen	= 40,
7160		.ilen	= 16,
7161		.result	= "\x35\x35\x35\x35\x35\x35\x35\x35"
7162			  "\x35\x35\x35\x35\x35\x35\x35\x35",
7163		.rlen	= 16,
7164	},
7165};
7166
7167static struct cipher_testvec anubis_cbc_enc_tv_template[] = {
7168	{
7169		.key	= "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7170			  "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7171		.klen	= 16,
7172		.input	= "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7173			  "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7174			  "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7175			  "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7176		.ilen	= 32,
7177		.result	= "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
7178			  "\x08\xb7\x52\x8e\x6e\x6e\x86\x90"
7179			  "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66"
7180			  "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe",
7181		.rlen	= 32,
7182	}, {
7183		.key	= "\x35\x35\x35\x35\x35\x35\x35\x35"
7184			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7185			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7186			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7187			  "\x35\x35\x35\x35\x35\x35\x35\x35",
7188		.klen	= 40,
7189		.input	= "\x35\x35\x35\x35\x35\x35\x35\x35"
7190			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7191			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7192			  "\x35\x35\x35\x35\x35\x35\x35\x35",
7193		.ilen	= 32,
7194		.result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
7195			  "\x9e\xc6\x84\x0f\x17\x21\x07\xee"
7196			  "\xa2\xbc\x06\x98\xc6\x4b\xda\x75"
7197			  "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7",
7198		.rlen	= 32,
7199	},
7200};
7201
7202static struct cipher_testvec anubis_cbc_dec_tv_template[] = {
7203	{
7204		.key	= "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7205			  "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7206		.klen	= 16,
7207		.input	= "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
7208			  "\x08\xb7\x52\x8e\x6e\x6e\x86\x90"
7209			  "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66"
7210			  "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe",
7211		.ilen	= 32,
7212		.result	= "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7213			  "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7214			  "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
7215			  "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
7216		.rlen	= 32,
7217	}, {
7218		.key	= "\x35\x35\x35\x35\x35\x35\x35\x35"
7219			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7220			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7221			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7222			  "\x35\x35\x35\x35\x35\x35\x35\x35",
7223		.klen	= 40,
7224		.input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
7225			  "\x9e\xc6\x84\x0f\x17\x21\x07\xee"
7226			  "\xa2\xbc\x06\x98\xc6\x4b\xda\x75"
7227			  "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7",
7228		.ilen	= 32,
7229		.result	= "\x35\x35\x35\x35\x35\x35\x35\x35"
7230			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7231			  "\x35\x35\x35\x35\x35\x35\x35\x35"
7232			  "\x35\x35\x35\x35\x35\x35\x35\x35",
7233		.rlen	= 32,
7234	},
7235};
7236
7237/*
7238 * XETA test vectors
7239 */
7240#define XETA_ENC_TEST_VECTORS	4
7241#define XETA_DEC_TEST_VECTORS	4
7242
7243static struct cipher_testvec xeta_enc_tv_template[] = {
7244	{
7245		.key    = zeroed_string,
7246		.klen	= 16,
7247		.input  = zeroed_string,
7248		.ilen	= 8,
7249		.result	= "\xaa\x22\x96\xe5\x6c\x61\xf3\x45",
7250		.rlen	= 8,
7251	}, {
7252		.key	= "\x2b\x02\x05\x68\x06\x14\x49\x76"
7253			  "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
7254		.klen	= 16,
7255		.input	= "\x74\x65\x73\x74\x20\x6d\x65\x2e",
7256		.ilen	= 8,
7257		.result	= "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3",
7258		.rlen	= 8,
7259	}, {
7260		.key	= "\x09\x65\x43\x11\x66\x44\x39\x25"
7261			  "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
7262		.klen	= 16,
7263		.input	= "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
7264			  "\x65\x73\x74\x5f\x76\x65\x63\x74",
7265		.ilen	= 16,
7266		.result	= "\xe2\x04\xdb\xf2\x89\x85\x9e\xea"
7267			  "\x61\x35\xaa\xed\xb5\xcb\x71\x2c",
7268		.rlen	= 16,
7269	}, {
7270		.key	= "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
7271			  "\x5d\x04\x16\x36\x15\x72\x63\x2f",
7272		.klen	= 16,
7273		.input	= "\x54\x65\x61\x20\x69\x73\x20\x67"
7274			  "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
7275			  "\x79\x6f\x75\x21\x21\x21\x20\x72"
7276			  "\x65\x61\x6c\x6c\x79\x21\x21\x21",
7277		.ilen	= 32,
7278		.result	= "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1"
7279			  "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4"
7280			  "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f"
7281			  "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5",
7282		.rlen	= 32,
7283	}
7284};
7285
7286static struct cipher_testvec xeta_dec_tv_template[] = {
7287	{
7288		.key    = zeroed_string,
7289		.klen	= 16,
7290		.input	= "\xaa\x22\x96\xe5\x6c\x61\xf3\x45",
7291		.ilen	= 8,
7292		.result = zeroed_string,
7293		.rlen	= 8,
7294	}, {
7295		.key	= "\x2b\x02\x05\x68\x06\x14\x49\x76"
7296			  "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
7297		.klen	= 16,
7298		.input	= "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3",
7299		.ilen	= 8,
7300		.result	= "\x74\x65\x73\x74\x20\x6d\x65\x2e",
7301		.rlen	= 8,
7302	}, {
7303		.key	= "\x09\x65\x43\x11\x66\x44\x39\x25"
7304			  "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
7305		.klen	= 16,
7306		.input	= "\xe2\x04\xdb\xf2\x89\x85\x9e\xea"
7307			  "\x61\x35\xaa\xed\xb5\xcb\x71\x2c",
7308		.ilen	= 16,
7309		.result	= "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
7310			  "\x65\x73\x74\x5f\x76\x65\x63\x74",
7311		.rlen	= 16,
7312	}, {
7313		.key	= "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
7314			  "\x5d\x04\x16\x36\x15\x72\x63\x2f",
7315		.klen	= 16,
7316		.input	= "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1"
7317			  "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4"
7318			  "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f"
7319			  "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5",
7320		.ilen	= 32,
7321		.result	= "\x54\x65\x61\x20\x69\x73\x20\x67"
7322			  "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
7323			  "\x79\x6f\x75\x21\x21\x21\x20\x72"
7324			  "\x65\x61\x6c\x6c\x79\x21\x21\x21",
7325		.rlen	= 32,
7326	}
7327};
7328
7329/*
7330 * FCrypt test vectors
7331 */
7332#define FCRYPT_ENC_TEST_VECTORS	ARRAY_SIZE(fcrypt_pcbc_enc_tv_template)
7333#define FCRYPT_DEC_TEST_VECTORS	ARRAY_SIZE(fcrypt_pcbc_dec_tv_template)
7334
7335static struct cipher_testvec fcrypt_pcbc_enc_tv_template[] = {
7336	{ /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */
7337		.key	= "\x00\x00\x00\x00\x00\x00\x00\x00",
7338		.klen	= 8,
7339		.iv	= "\x00\x00\x00\x00\x00\x00\x00\x00",
7340		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00",
7341		.ilen	= 8,
7342		.result	= "\x0E\x09\x00\xC7\x3E\xF7\xED\x41",
7343		.rlen	= 8,
7344	}, {
7345		.key	= "\x11\x44\x77\xAA\xDD\x00\x33\x66",
7346		.klen	= 8,
7347		.iv	= "\x00\x00\x00\x00\x00\x00\x00\x00",
7348		.input	= "\x12\x34\x56\x78\x9A\xBC\xDE\xF0",
7349		.ilen	= 8,
7350		.result	= "\xD8\xED\x78\x74\x77\xEC\x06\x80",
7351		.rlen	= 8,
7352	}, { /* From Arla */
7353		.key	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7354		.klen	= 8,
7355		.iv	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7356		.input	= "The quick brown fox jumps over the lazy dogs.\0\0",
7357		.ilen	= 48,
7358		.result	= "\x00\xf0\x0e\x11\x75\xe6\x23\x82"
7359			  "\xee\xac\x98\x62\x44\x51\xe4\x84"
7360			  "\xc3\x59\xd8\xaa\x64\x60\xae\xf7"
7361			  "\xd2\xd9\x13\x79\x72\xa3\x45\x03"
7362			  "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1"
7363			  "\xf8\x91\x3c\xac\x44\x22\x92\xef",
7364		.rlen	= 48,
7365	}, {
7366		.key	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7367		.klen	= 8,
7368		.iv	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7369		.input	= "The quick brown fox jumps over the lazy dogs.\0\0",
7370		.ilen	= 48,
7371		.result	= "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7372			  "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7373			  "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7374			  "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7375			  "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7376			  "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7377		.rlen	= 48,
7378	}, { /* split-page version */
7379		.key	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7380		.klen	= 8,
7381		.iv	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7382		.input	= "The quick brown fox jumps over the lazy dogs.\0\0",
7383		.ilen	= 48,
7384		.result	= "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7385			  "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7386			  "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7387			  "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7388			  "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7389			  "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7390		.rlen	= 48,
7391		.np	= 2,
7392		.tap	= { 20, 28 },
7393	}
7394};
7395
7396static struct cipher_testvec fcrypt_pcbc_dec_tv_template[] = {
7397	{ /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */
7398		.key	= "\x00\x00\x00\x00\x00\x00\x00\x00",
7399		.klen	= 8,
7400		.iv	= "\x00\x00\x00\x00\x00\x00\x00\x00",
7401		.input	= "\x0E\x09\x00\xC7\x3E\xF7\xED\x41",
7402		.ilen	= 8,
7403		.result	= "\x00\x00\x00\x00\x00\x00\x00\x00",
7404		.rlen	= 8,
7405	}, {
7406		.key	= "\x11\x44\x77\xAA\xDD\x00\x33\x66",
7407		.klen	= 8,
7408		.iv	= "\x00\x00\x00\x00\x00\x00\x00\x00",
7409		.input	= "\xD8\xED\x78\x74\x77\xEC\x06\x80",
7410		.ilen	= 8,
7411		.result	= "\x12\x34\x56\x78\x9A\xBC\xDE\xF0",
7412		.rlen	= 8,
7413	}, { /* From Arla */
7414		.key	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7415		.klen	= 8,
7416		.iv	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7417		.input	= "\x00\xf0\x0e\x11\x75\xe6\x23\x82"
7418			  "\xee\xac\x98\x62\x44\x51\xe4\x84"
7419			  "\xc3\x59\xd8\xaa\x64\x60\xae\xf7"
7420			  "\xd2\xd9\x13\x79\x72\xa3\x45\x03"
7421			  "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1"
7422			  "\xf8\x91\x3c\xac\x44\x22\x92\xef",
7423		.ilen	= 48,
7424		.result	= "The quick brown fox jumps over the lazy dogs.\0\0",
7425		.rlen	= 48,
7426	}, {
7427		.key	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7428		.klen	= 8,
7429		.iv	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7430		.input	= "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7431			  "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7432			  "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7433			  "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7434			  "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7435			  "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7436		.ilen	= 48,
7437		.result	= "The quick brown fox jumps over the lazy dogs.\0\0",
7438		.rlen	= 48,
7439	}, { /* split-page version */
7440		.key	= "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7441		.klen	= 8,
7442		.iv	= "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7443		.input	= "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7444			  "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7445			  "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7446			  "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7447			  "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7448			  "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7449		.ilen	= 48,
7450		.result	= "The quick brown fox jumps over the lazy dogs.\0\0",
7451		.rlen	= 48,
7452		.np	= 2,
7453		.tap	= { 20, 28 },
7454	}
7455};
7456
7457/*
7458 * CAMELLIA test vectors.
7459 */
7460#define CAMELLIA_ENC_TEST_VECTORS 3
7461#define CAMELLIA_DEC_TEST_VECTORS 3
7462#define CAMELLIA_CBC_ENC_TEST_VECTORS 2
7463#define CAMELLIA_CBC_DEC_TEST_VECTORS 2
7464
7465static struct cipher_testvec camellia_enc_tv_template[] = {
7466	{
7467		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
7468			  "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7469		.klen	= 16,
7470		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
7471			  "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7472		.ilen	= 16,
7473		.result	= "\x67\x67\x31\x38\x54\x96\x69\x73"
7474			  "\x08\x57\x06\x56\x48\xea\xbe\x43",
7475		.rlen	= 16,
7476	}, {
7477		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
7478			  "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7479			  "\x00\x11\x22\x33\x44\x55\x66\x77",
7480		.klen	= 24,
7481		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
7482			  "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7483		.ilen	= 16,
7484		.result	= "\xb4\x99\x34\x01\xb3\xe9\x96\xf8"
7485			  "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9",
7486		.rlen	= 16,
7487	}, {
7488		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
7489			  "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7490			  "\x00\x11\x22\x33\x44\x55\x66\x77"
7491			  "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
7492		.klen	= 32,
7493		.input	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
7494			  "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7495		.ilen	= 16,
7496		.result	= "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c"
7497			  "\x20\xef\x7c\x91\x9e\x3a\x75\x09",
7498		.rlen	= 16,
7499	},
7500};
7501
7502static struct cipher_testvec camellia_dec_tv_template[] = {
7503	{
7504		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
7505			  "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7506		.klen	= 16,
7507		.input	= "\x67\x67\x31\x38\x54\x96\x69\x73"
7508			  "\x08\x57\x06\x56\x48\xea\xbe\x43",
7509		.ilen	= 16,
7510		.result	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
7511			  "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7512		.rlen	= 16,
7513	}, {
7514		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
7515			  "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7516			  "\x00\x11\x22\x33\x44\x55\x66\x77",
7517		.klen	= 24,
7518		.input	= "\xb4\x99\x34\x01\xb3\xe9\x96\xf8"
7519			  "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9",
7520		.ilen	= 16,
7521		.result	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
7522			  "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7523		.rlen	= 16,
7524	}, {
7525		.key	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
7526			  "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7527			  "\x00\x11\x22\x33\x44\x55\x66\x77"
7528			  "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
7529		.klen	= 32,
7530		.input	= "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c"
7531			  "\x20\xef\x7c\x91\x9e\x3a\x75\x09",
7532		.ilen	= 16,
7533		.result	= "\x01\x23\x45\x67\x89\xab\xcd\xef"
7534			  "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7535		.rlen	= 16,
7536	},
7537};
7538
7539static struct cipher_testvec camellia_cbc_enc_tv_template[] = {
7540	{
7541		.key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
7542			  "\x51\x2e\x03\xd5\x34\x12\x00\x06",
7543		.klen   = 16,
7544		.iv	= "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
7545			  "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
7546		.input	= "Single block msg",
7547		.ilen   = 16,
7548		.result = "\xea\x32\x12\x76\x3b\x50\x10\xe7"
7549			  "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51",
7550		.rlen   = 16,
7551	}, {
7552		.key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
7553			  "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
7554		.klen   = 16,
7555		.iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
7556			  "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
7557		.input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
7558			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7559			  "\x10\x11\x12\x13\x14\x15\x16\x17"
7560			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
7561		.ilen   = 32,
7562		.result = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01"
7563			  "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd"
7564			  "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0"
7565			  "\x15\x78\xe0\x5e\xf2\xcb\x87\x16",
7566		.rlen   = 32,
7567	},
7568};
7569
7570static struct cipher_testvec camellia_cbc_dec_tv_template[] = {
7571	{
7572		.key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
7573			  "\x51\x2e\x03\xd5\x34\x12\x00\x06",
7574		.klen   = 16,
7575		.iv	= "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
7576			  "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
7577		.input	= "\xea\x32\x12\x76\x3b\x50\x10\xe7"
7578			  "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51",
7579		.ilen   = 16,
7580		.result = "Single block msg",
7581		.rlen   = 16,
7582	}, {
7583		.key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
7584			  "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
7585		.klen   = 16,
7586		.iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
7587			  "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
7588		.input = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01"
7589			  "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd"
7590			  "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0"
7591			  "\x15\x78\xe0\x5e\xf2\xcb\x87\x16",
7592		.ilen   = 32,
7593		.result = "\x00\x01\x02\x03\x04\x05\x06\x07"
7594			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7595			  "\x10\x11\x12\x13\x14\x15\x16\x17"
7596			  "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
7597		.rlen   = 32,
7598	},
7599};
7600
7601/*
7602 * SEED test vectors
7603 */
7604#define SEED_ENC_TEST_VECTORS	4
7605#define SEED_DEC_TEST_VECTORS	4
7606
7607static struct cipher_testvec seed_enc_tv_template[] = {
7608	{
7609		.key    = zeroed_string,
7610		.klen	= 16,
7611		.input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
7612			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7613		.ilen	= 16,
7614		.result	= "\x5e\xba\xc6\xe0\x05\x4e\x16\x68"
7615			  "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb",
7616		.rlen	= 16,
7617	}, {
7618		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
7619			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7620		.klen	= 16,
7621		.input	= zeroed_string,
7622		.ilen	= 16,
7623		.result	= "\xc1\x1f\x22\xf2\x01\x40\x50\x50"
7624			  "\x84\x48\x35\x97\xe4\x37\x0f\x43",
7625		.rlen	= 16,
7626	}, {
7627		.key	= "\x47\x06\x48\x08\x51\xe6\x1b\xe8"
7628			  "\x5d\x74\xbf\xb3\xfd\x95\x61\x85",
7629		.klen	= 16,
7630		.input	= "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9"
7631			  "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d",
7632		.ilen	= 16,
7633		.result	= "\xee\x54\xd1\x3e\xbc\xae\x70\x6d"
7634			  "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a",
7635		.rlen	= 16,
7636	}, {
7637		.key	= "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d"
7638			  "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7",
7639		.klen	= 16,
7640		.input	= "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14"
7641			  "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7",
7642		.ilen	= 16,
7643		.result	= "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9"
7644			  "\x5d\x0b\x36\x18\xf4\x0f\x51\x22",
7645		.rlen	= 16,
7646	}
7647};
7648
7649static struct cipher_testvec seed_dec_tv_template[] = {
7650	{
7651		.key    = zeroed_string,
7652		.klen	= 16,
7653		.input	= "\x5e\xba\xc6\xe0\x05\x4e\x16\x68"
7654			  "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb",
7655		.ilen	= 16,
7656		.result	= "\x00\x01\x02\x03\x04\x05\x06\x07"
7657			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7658		.rlen	= 16,
7659	}, {
7660		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
7661			  "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7662		.klen	= 16,
7663		.input	= "\xc1\x1f\x22\xf2\x01\x40\x50\x50"
7664			  "\x84\x48\x35\x97\xe4\x37\x0f\x43",
7665		.ilen	= 16,
7666		.result	= zeroed_string,
7667		.rlen	= 16,
7668	}, {
7669		.key	= "\x47\x06\x48\x08\x51\xe6\x1b\xe8"
7670			  "\x5d\x74\xbf\xb3\xfd\x95\x61\x85",
7671		.klen	= 16,
7672		.input	= "\xee\x54\xd1\x3e\xbc\xae\x70\x6d"
7673			  "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a",
7674		.ilen	= 16,
7675		.result	= "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9"
7676			  "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d",
7677		.rlen	= 16,
7678	}, {
7679		.key	= "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d"
7680			  "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7",
7681		.klen	= 16,
7682		.input	= "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9"
7683			  "\x5d\x0b\x36\x18\xf4\x0f\x51\x22",
7684		.ilen	= 16,
7685		.result	= "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14"
7686			  "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7",
7687		.rlen	= 16,
7688	}
7689};
7690
7691#define SALSA20_STREAM_ENC_TEST_VECTORS 5
7692static struct cipher_testvec salsa20_stream_enc_tv_template[] = {
7693	/*
7694	* Testvectors from verified.test-vectors submitted to ECRYPT.
7695	* They are truncated to size 39, 64, 111, 129 to test a variety
7696	* of input length.
7697	*/
7698	{ /* Set 3, vector 0 */
7699		.key	= "\x00\x01\x02\x03\x04\x05\x06\x07"
7700			"\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F",
7701		.klen	= 16,
7702		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7703		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00"
7704			"\x00\x00\x00\x00\x00\x00\x00\x00"
7705			"\x00\x00\x00\x00\x00\x00\x00\x00"
7706			"\x00\x00\x00\x00\x00\x00\x00\x00"
7707			"\x00\x00\x00\x00\x00\x00\x00",
7708		.ilen	= 39,
7709		.result	= "\x2D\xD5\xC3\xF7\xBA\x2B\x20\xF7"
7710			 "\x68\x02\x41\x0C\x68\x86\x88\x89"
7711			 "\x5A\xD8\xC1\xBD\x4E\xA6\xC9\xB1"
7712			 "\x40\xFB\x9B\x90\xE2\x10\x49\xBF"
7713			 "\x58\x3F\x52\x79\x70\xEB\xC1",
7714		.rlen	= 39,
7715	}, { /* Set 5, vector 0 */
7716		.key	= "\x00\x00\x00\x00\x00\x00\x00\x00"
7717			"\x00\x00\x00\x00\x00\x00\x00\x00",
7718		.klen	= 16,
7719		.iv     = "\x80\x00\x00\x00\x00\x00\x00\x00",
7720		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00"
7721			"\x00\x00\x00\x00\x00\x00\x00\x00"
7722			"\x00\x00\x00\x00\x00\x00\x00\x00"
7723			"\x00\x00\x00\x00\x00\x00\x00\x00"
7724			"\x00\x00\x00\x00\x00\x00\x00\x00"
7725			"\x00\x00\x00\x00\x00\x00\x00\x00"
7726			"\x00\x00\x00\x00\x00\x00\x00\x00"
7727			"\x00\x00\x00\x00\x00\x00\x00\x00",
7728		.ilen	= 64,
7729		.result	= "\xB6\x6C\x1E\x44\x46\xDD\x95\x57"
7730			 "\xE5\x78\xE2\x23\xB0\xB7\x68\x01"
7731			 "\x7B\x23\xB2\x67\xBB\x02\x34\xAE"
7732			 "\x46\x26\xBF\x44\x3F\x21\x97\x76"
7733			 "\x43\x6F\xB1\x9F\xD0\xE8\x86\x6F"
7734			 "\xCD\x0D\xE9\xA9\x53\x8F\x4A\x09"
7735			 "\xCA\x9A\xC0\x73\x2E\x30\xBC\xF9"
7736			 "\x8E\x4F\x13\xE4\xB9\xE2\x01\xD9",
7737		.rlen	= 64,
7738	}, { /* Set 3, vector 27 */
7739		.key	= "\x1B\x1C\x1D\x1E\x1F\x20\x21\x22"
7740			"\x23\x24\x25\x26\x27\x28\x29\x2A"
7741			"\x2B\x2C\x2D\x2E\x2F\x30\x31\x32"
7742			"\x33\x34\x35\x36\x37\x38\x39\x3A",
7743		.klen	= 32,
7744		.iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7745		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00"
7746			"\x00\x00\x00\x00\x00\x00\x00\x00"
7747			"\x00\x00\x00\x00\x00\x00\x00\x00"
7748			"\x00\x00\x00\x00\x00\x00\x00\x00"
7749			"\x00\x00\x00\x00\x00\x00\x00\x00"
7750			"\x00\x00\x00\x00\x00\x00\x00\x00"
7751			"\x00\x00\x00\x00\x00\x00\x00\x00"
7752			"\x00\x00\x00\x00\x00\x00\x00\x00"
7753			"\x00\x00\x00\x00\x00\x00\x00\x00"
7754			"\x00\x00\x00\x00\x00\x00\x00\x00"
7755			"\x00\x00\x00\x00\x00\x00\x00\x00"
7756			"\x00\x00\x00\x00\x00\x00\x00\x00"
7757			"\x00\x00\x00\x00\x00\x00\x00\x00"
7758			"\x00\x00\x00\x00\x00\x00\x00",
7759		.ilen	= 111,
7760		.result	= "\xAE\x39\x50\x8E\xAC\x9A\xEC\xE7"
7761			 "\xBF\x97\xBB\x20\xB9\xDE\xE4\x1F"
7762			 "\x87\xD9\x47\xF8\x28\x91\x35\x98"
7763			 "\xDB\x72\xCC\x23\x29\x48\x56\x5E"
7764			 "\x83\x7E\x0B\xF3\x7D\x5D\x38\x7B"
7765			 "\x2D\x71\x02\xB4\x3B\xB5\xD8\x23"
7766			 "\xB0\x4A\xDF\x3C\xEC\xB6\xD9\x3B"
7767			 "\x9B\xA7\x52\xBE\xC5\xD4\x50\x59"
7768			 "\x15\x14\xB4\x0E\x40\xE6\x53\xD1"
7769			 "\x83\x9C\x5B\xA0\x92\x29\x6B\x5E"
7770			 "\x96\x5B\x1E\x2F\xD3\xAC\xC1\x92"
7771			 "\xB1\x41\x3F\x19\x2F\xC4\x3B\xC6"
7772			 "\x95\x46\x45\x54\xE9\x75\x03\x08"
7773			 "\x44\xAF\xE5\x8A\x81\x12\x09",
7774		.rlen	= 111,
7775	}, { /* Set 5, vector 27 */
7776		.key	= "\x00\x00\x00\x00\x00\x00\x00\x00"
7777			"\x00\x00\x00\x00\x00\x00\x00\x00"
7778			"\x00\x00\x00\x00\x00\x00\x00\x00"
7779			"\x00\x00\x00\x00\x00\x00\x00\x00",
7780		.klen	= 32,
7781		.iv     = "\x00\x00\x00\x10\x00\x00\x00\x00",
7782		.input	= "\x00\x00\x00\x00\x00\x00\x00\x00"
7783			"\x00\x00\x00\x00\x00\x00\x00\x00"
7784			"\x00\x00\x00\x00\x00\x00\x00\x00"
7785			"\x00\x00\x00\x00\x00\x00\x00\x00"
7786			"\x00\x00\x00\x00\x00\x00\x00\x00"
7787			"\x00\x00\x00\x00\x00\x00\x00\x00"
7788			"\x00\x00\x00\x00\x00\x00\x00\x00"
7789			"\x00\x00\x00\x00\x00\x00\x00\x00"
7790			"\x00\x00\x00\x00\x00\x00\x00\x00"
7791			"\x00\x00\x00\x00\x00\x00\x00\x00"
7792			"\x00\x00\x00\x00\x00\x00\x00\x00"
7793			"\x00\x00\x00\x00\x00\x00\x00\x00"
7794			"\x00\x00\x00\x00\x00\x00\x00\x00"
7795			"\x00\x00\x00\x00\x00\x00\x00\x00"
7796			"\x00\x00\x00\x00\x00\x00\x00\x00"
7797			"\x00\x00\x00\x00\x00\x00\x00\x00"
7798			"\x00",
7799		.ilen	= 129,
7800		.result	= "\xD2\xDB\x1A\x5C\xF1\xC1\xAC\xDB"
7801			 "\xE8\x1A\x7A\x43\x40\xEF\x53\x43"
7802			 "\x5E\x7F\x4B\x1A\x50\x52\x3F\x8D"
7803			 "\x28\x3D\xCF\x85\x1D\x69\x6E\x60"
7804			 "\xF2\xDE\x74\x56\x18\x1B\x84\x10"
7805			 "\xD4\x62\xBA\x60\x50\xF0\x61\xF2"
7806			 "\x1C\x78\x7F\xC1\x24\x34\xAF\x58"
7807			 "\xBF\x2C\x59\xCA\x90\x77\xF3\xB0"
7808			 "\x5B\x4A\xDF\x89\xCE\x2C\x2F\xFC"
7809			 "\x67\xF0\xE3\x45\xE8\xB3\xB3\x75"
7810			 "\xA0\x95\x71\xA1\x29\x39\x94\xCA"
7811			 "\x45\x2F\xBD\xCB\x10\xB6\xBE\x9F"
7812			 "\x8E\xF9\xB2\x01\x0A\x5A\x0A\xB7"
7813			 "\x6B\x9D\x70\x8E\x4B\xD6\x2F\xCD"
7814			 "\x2E\x40\x48\x75\xE9\xE2\x21\x45"
7815			 "\x0B\xC9\xB6\xB5\x66\xBC\x9A\x59"
7816			 "\x5A",
7817		.rlen	= 129,
7818	}, { /* large test vector generated using Crypto++ */
7819		.key =  "\x00\x01\x02\x03\x04\x05\x06\x07"
7820			"\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7821			"\x10\x11\x12\x13\x14\x15\x16\x17"
7822			"\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
7823		.klen = 32,
7824		.iv =	"\x00\x00\x00\x00\x00\x00\x00\x00"
7825			"\x00\x00\x00\x00\x00\x00\x00\x00",
7826		.input =
7827			"\x00\x01\x02\x03\x04\x05\x06\x07"
7828			"\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7829			"\x10\x11\x12\x13\x14\x15\x16\x17"
7830			"\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
7831			"\x20\x21\x22\x23\x24\x25\x26\x27"
7832			"\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
7833			"\x30\x31\x32\x33\x34\x35\x36\x37"
7834			"\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
7835			"\x40\x41\x42\x43\x44\x45\x46\x47"
7836			"\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
7837			"\x50\x51\x52\x53\x54\x55\x56\x57"
7838			"\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
7839			"\x60\x61\x62\x63\x64\x65\x66\x67"
7840			"\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
7841			"\x70\x71\x72\x73\x74\x75\x76\x77"
7842			"\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
7843			"\x80\x81\x82\x83\x84\x85\x86\x87"
7844			"\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
7845			"\x90\x91\x92\x93\x94\x95\x96\x97"
7846			"\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
7847			"\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
7848			"\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
7849			"\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
7850			"\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
7851			"\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
7852			"\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
7853			"\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
7854			"\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
7855			"\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
7856			"\xe8\xe9\xea\xeb\xec\xed\xee\xef"
7857			"\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
7858			"\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
7859			"\x00\x03\x06\x09\x0c\x0f\x12\x15"
7860			"\x18\x1b\x1e\x21\x24\x27\x2a\x2d"
7861			"\x30\x33\x36\x39\x3c\x3f\x42\x45"
7862			"\x48\x4b\x4e\x51\x54\x57\x5a\x5d"
7863			"\x60\x63\x66\x69\x6c\x6f\x72\x75"
7864			"\x78\x7b\x7e\x81\x84\x87\x8a\x8d"
7865			"\x90\x93\x96\x99\x9c\x9f\xa2\xa5"
7866			"\xa8\xab\xae\xb1\xb4\xb7\xba\xbd"
7867			"\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5"
7868			"\xd8\xdb\xde\xe1\xe4\xe7\xea\xed"
7869			"\xf0\xf3\xf6\xf9\xfc\xff\x02\x05"
7870			"\x08\x0b\x0e\x11\x14\x17\x1a\x1d"
7871			"\x20\x23\x26\x29\x2c\x2f\x32\x35"
7872			"\x38\x3b\x3e\x41\x44\x47\x4a\x4d"
7873			"\x50\x53\x56\x59\x5c\x5f\x62\x65"
7874			"\x68\x6b\x6e\x71\x74\x77\x7a\x7d"
7875			"\x80\x83\x86\x89\x8c\x8f\x92\x95"
7876			"\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad"
7877			"\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5"
7878			"\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd"
7879			"\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5"
7880			"\xf8\xfb\xfe\x01\x04\x07\x0a\x0d"
7881			"\x10\x13\x16\x19\x1c\x1f\x22\x25"
7882			"\x28\x2b\x2e\x31\x34\x37\x3a\x3d"
7883			"\x40\x43\x46\x49\x4c\x4f\x52\x55"
7884			"\x58\x5b\x5e\x61\x64\x67\x6a\x6d"
7885			"\x70\x73\x76\x79\x7c\x7f\x82\x85"
7886			"\x88\x8b\x8e\x91\x94\x97\x9a\x9d"
7887			"\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5"
7888			"\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd"
7889			"\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5"
7890			"\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd"
7891			"\x00\x05\x0a\x0f\x14\x19\x1e\x23"
7892			"\x28\x2d\x32\x37\x3c\x41\x46\x4b"
7893			"\x50\x55\x5a\x5f\x64\x69\x6e\x73"
7894			"\x78\x7d\x82\x87\x8c\x91\x96\x9b"
7895			"\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3"
7896			"\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb"
7897			"\xf0\xf5\xfa\xff\x04\x09\x0e\x13"
7898			"\x18\x1d\x22\x27\x2c\x31\x36\x3b"
7899			"\x40\x45\x4a\x4f\x54\x59\x5e\x63"
7900			"\x68\x6d\x72\x77\x7c\x81\x86\x8b"
7901			"\x90\x95\x9a\x9f\xa4\xa9\xae\xb3"
7902			"\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb"
7903			"\xe0\xe5\xea\xef\xf4\xf9\xfe\x03"
7904			"\x08\x0d\x12\x17\x1c\x21\x26\x2b"
7905			"\x30\x35\x3a\x3f\x44\x49\x4e\x53"
7906			"\x58\x5d\x62\x67\x6c\x71\x76\x7b"
7907			"\x80\x85\x8a\x8f\x94\x99\x9e\xa3"
7908			"\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb"
7909			"\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3"
7910			"\xf8\xfd\x02\x07\x0c\x11\x16\x1b"
7911			"\x20\x25\x2a\x2f\x34\x39\x3e\x43"
7912			"\x48\x4d\x52\x57\x5c\x61\x66\x6b"
7913			"\x70\x75\x7a\x7f\x84\x89\x8e\x93"
7914			"\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb"
7915			"\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3"
7916			"\xe8\xed\xf2\xf7\xfc\x01\x06\x0b"
7917			"\x10\x15\x1a\x1f\x24\x29\x2e\x33"
7918			"\x38\x3d\x42\x47\x4c\x51\x56\x5b"
7919			"\x60\x65\x6a\x6f\x74\x79\x7e\x83"
7920			"\x88\x8d\x92\x97\x9c\xa1\xa6\xab"
7921			"\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3"
7922			"\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb"
7923			"\x00\x07\x0e\x15\x1c\x23\x2a\x31"
7924			"\x38\x3f\x46\x4d\x54\x5b\x62\x69"
7925			"\x70\x77\x7e\x85\x8c\x93\x9a\xa1"
7926			"\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9"
7927			"\xe0\xe7\xee\xf5\xfc\x03\x0a\x11"
7928			"\x18\x1f\x26\x2d\x34\x3b\x42\x49"
7929			"\x50\x57\x5e\x65\x6c\x73\x7a\x81"
7930			"\x88\x8f\x96\x9d\xa4\xab\xb2\xb9"
7931			"\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1"
7932			"\xf8\xff\x06\x0d\x14\x1b\x22\x29"
7933			"\x30\x37\x3e\x45\x4c\x53\x5a\x61"
7934			"\x68\x6f\x76\x7d\x84\x8b\x92\x99"
7935			"\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1"
7936			"\xd8\xdf\xe6\xed\xf4\xfb\x02\x09"
7937			"\x10\x17\x1e\x25\x2c\x33\x3a\x41"
7938			"\x48\x4f\x56\x5d\x64\x6b\x72\x79"
7939			"\x80\x87\x8e\x95\x9c\xa3\xaa\xb1"
7940			"\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9"
7941			"\xf0\xf7\xfe\x05\x0c\x13\x1a\x21"
7942			"\x28\x2f\x36\x3d\x44\x4b\x52\x59"
7943			"\x60\x67\x6e\x75\x7c\x83\x8a\x91"
7944			"\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9"
7945			"\xd0\xd7\xde\xe5\xec\xf3\xfa\x01"
7946			"\x08\x0f\x16\x1d\x24\x2b\x32\x39"
7947			"\x40\x47\x4e\x55\x5c\x63\x6a\x71"
7948			"\x78\x7f\x86\x8d\x94\x9b\xa2\xa9"
7949			"\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1"
7950			"\xe8\xef\xf6\xfd\x04\x0b\x12\x19"
7951			"\x20\x27\x2e\x35\x3c\x43\x4a\x51"
7952			"\x58\x5f\x66\x6d\x74\x7b\x82\x89"
7953			"\x90\x97\x9e\xa5\xac\xb3\xba\xc1"
7954			"\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9"
7955			"\x00\x09\x12\x1b\x24\x2d\x36\x3f"
7956			"\x48\x51\x5a\x63\x6c\x75\x7e\x87"
7957			"\x90\x99\xa2\xab\xb4\xbd\xc6\xcf"
7958			"\xd8\xe1\xea\xf3\xfc\x05\x0e\x17"
7959			"\x20\x29\x32\x3b\x44\x4d\x56\x5f"
7960			"\x68\x71\x7a\x83\x8c\x95\x9e\xa7"
7961			"\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef"
7962			"\xf8\x01\x0a\x13\x1c\x25\x2e\x37"
7963			"\x40\x49\x52\x5b\x64\x6d\x76\x7f"
7964			"\x88\x91\x9a\xa3\xac\xb5\xbe\xc7"
7965			"\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f"
7966			"\x18\x21\x2a\x33\x3c\x45\x4e\x57"
7967			"\x60\x69\x72\x7b\x84\x8d\x96\x9f"
7968			"\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7"
7969			"\xf0\xf9\x02\x0b\x14\x1d\x26\x2f"
7970			"\x38\x41\x4a\x53\x5c\x65\x6e\x77"
7971			"\x80\x89\x92\x9b\xa4\xad\xb6\xbf"
7972			"\xc8\xd1\xda\xe3\xec\xf5\xfe\x07"
7973			"\x10\x19\x22\x2b\x34\x3d\x46\x4f"
7974			"\x58\x61\x6a\x73\x7c\x85\x8e\x97"
7975			"\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf"
7976			"\xe8\xf1\xfa\x03\x0c\x15\x1e\x27"
7977			"\x30\x39\x42\x4b\x54\x5d\x66\x6f"
7978			"\x78\x81\x8a\x93\x9c\xa5\xae\xb7"
7979			"\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff"
7980			"\x08\x11\x1a\x23\x2c\x35\x3e\x47"
7981			"\x50\x59\x62\x6b\x74\x7d\x86\x8f"
7982			"\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7"
7983			"\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f"
7984			"\x28\x31\x3a\x43\x4c\x55\x5e\x67"
7985			"\x70\x79\x82\x8b\x94\x9d\xa6\xaf"
7986			"\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7"
7987			"\x00\x0b\x16\x21\x2c\x37\x42\x4d"
7988			"\x58\x63\x6e\x79\x84\x8f\x9a\xa5"
7989			"\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd"
7990			"\x08\x13\x1e\x29\x34\x3f\x4a\x55"
7991			"\x60\x6b\x76\x81\x8c\x97\xa2\xad"
7992			"\xb8\xc3\xce\xd9\xe4\xef\xfa\x05"
7993			"\x10\x1b\x26\x31\x3c\x47\x52\x5d"
7994			"\x68\x73\x7e\x89\x94\x9f\xaa\xb5"
7995			"\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d"
7996			"\x18\x23\x2e\x39\x44\x4f\x5a\x65"
7997			"\x70\x7b\x86\x91\x9c\xa7\xb2\xbd"
7998			"\xc8\xd3\xde\xe9\xf4\xff\x0a\x15"
7999			"\x20\x2b\x36\x41\x4c\x57\x62\x6d"
8000			"\x78\x83\x8e\x99\xa4\xaf\xba\xc5"
8001			"\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d"
8002			"\x28\x33\x3e\x49\x54\x5f\x6a\x75"
8003			"\x80\x8b\x96\xa1\xac\xb7\xc2\xcd"
8004			"\xd8\xe3\xee\xf9\x04\x0f\x1a\x25"
8005			"\x30\x3b\x46\x51\x5c\x67\x72\x7d"
8006			"\x88\x93\x9e\xa9\xb4\xbf\xca\xd5"
8007			"\xe0\xeb\xf6\x01\x0c\x17\x22\x2d"
8008			"\x38\x43\x4e\x59\x64\x6f\x7a\x85"
8009			"\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd"
8010			"\xe8\xf3\xfe\x09\x14\x1f\x2a\x35"
8011			"\x40\x4b\x56\x61\x6c\x77\x82\x8d"
8012			"\x98\xa3\xae\xb9\xc4\xcf\xda\xe5"
8013			"\xf0\xfb\x06\x11\x1c\x27\x32\x3d"
8014			"\x48\x53\x5e\x69\x74\x7f\x8a\x95"
8015			"\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed"
8016			"\xf8\x03\x0e\x19\x24\x2f\x3a\x45"
8017			"\x50\x5b\x66\x71\x7c\x87\x92\x9d"
8018			"\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5"
8019			"\x00\x0d\x1a\x27\x34\x41\x4e\x5b"
8020			"\x68\x75\x82\x8f\x9c\xa9\xb6\xc3"
8021			"\xd0\xdd\xea\xf7\x04\x11\x1e\x2b"
8022			"\x38\x45\x52\x5f\x6c\x79\x86\x93"
8023			"\xa0\xad\xba\xc7\xd4\xe1\xee\xfb"
8024			"\x08\x15\x22\x2f\x3c\x49\x56\x63"
8025			"\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb"
8026			"\xd8\xe5\xf2\xff\x0c\x19\x26\x33"
8027			"\x40\x4d\x5a\x67\x74\x81\x8e\x9b"
8028			"\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03"
8029			"\x10\x1d\x2a\x37\x44\x51\x5e\x6b"
8030			"\x78\x85\x92\x9f\xac\xb9\xc6\xd3"
8031			"\xe0\xed\xfa\x07\x14\x21\x2e\x3b"
8032			"\x48\x55\x62\x6f\x7c\x89\x96\xa3"
8033			"\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b"
8034			"\x18\x25\x32\x3f\x4c\x59\x66\x73"
8035			"\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb"
8036			"\xe8\xf5\x02\x0f\x1c\x29\x36\x43"
8037			"\x50\x5d\x6a\x77\x84\x91\x9e\xab"
8038			"\xb8\xc5\xd2\xdf\xec\xf9\x06\x13"
8039			"\x20\x2d\x3a\x47\x54\x61\x6e\x7b"
8040			"\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3"
8041			"\xf0\xfd\x0a\x17\x24\x31\x3e\x4b"
8042			"\x58\x65\x72\x7f\x8c\x99\xa6\xb3"
8043			"\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b"
8044			"\x28\x35\x42\x4f\x5c\x69\x76\x83"
8045			"\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb"
8046			"\xf8\x05\x12\x1f\x2c\x39\x46\x53"
8047			"\x60\x6d\x7a\x87\x94\xa1\xae\xbb"
8048			"\xc8\xd5\xe2\xef\xfc\x09\x16\x23"
8049			"\x30\x3d\x4a\x57\x64\x71\x7e\x8b"
8050			"\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3"
8051			"\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69"
8052			"\x78\x87\x96\xa5\xb4\xc3\xd2\xe1"
8053			"\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59"
8054			"\x68\x77\x86\x95\xa4\xb3\xc2\xd1"
8055			"\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49"
8056			"\x58\x67\x76\x85\x94\xa3\xb2\xc1"
8057			"\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39"
8058			"\x48\x57\x66\x75\x84\x93\xa2\xb1"
8059			"\xc0\xcf\xde\xed\xfc\x0b\x1a\x29"
8060			"\x38\x47\x56\x65\x74\x83\x92\xa1"
8061			"\xb0\xbf\xce\xdd\xec\xfb\x0a\x19"
8062			"\x28\x37\x46\x55\x64\x73\x82\x91"
8063			"\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09"
8064			"\x18\x27\x36\x45\x54\x63\x72\x81"
8065			"\x90\x9f\xae\xbd\xcc\xdb\xea\xf9"
8066			"\x08\x17\x26\x35\x44\x53\x62\x71"
8067			"\x80\x8f\x9e\xad\xbc\xcb\xda\xe9"
8068			"\xf8\x07\x16\x25\x34\x43\x52\x61"
8069			"\x70\x7f\x8e\x9d\xac\xbb\xca\xd9"
8070			"\xe8\xf7\x06\x15\x24\x33\x42\x51"
8071			"\x60\x6f\x7e\x8d\x9c\xab\xba\xc9"
8072			"\xd8\xe7\xf6\x05\x14\x23\x32\x41"
8073			"\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9"
8074			"\xc8\xd7\xe6\xf5\x04\x13\x22\x31"
8075			"\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9"
8076			"\xb8\xc7\xd6\xe5\xf4\x03\x12\x21"
8077			"\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99"
8078			"\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11"
8079			"\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89"
8080			"\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01"
8081			"\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79"
8082			"\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1"
8083			"\x00\x11\x22\x33\x44\x55\x66\x77"
8084			"\x88\x99\xaa\xbb\xcc\xdd\xee\xff"
8085			"\x10\x21\x32\x43\x54\x65\x76\x87"
8086			"\x98\xa9\xba\xcb\xdc\xed\xfe\x0f"
8087			"\x20\x31\x42\x53\x64\x75\x86\x97"
8088			"\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f"
8089			"\x30\x41\x52\x63\x74\x85\x96\xa7"
8090			"\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f"
8091			"\x40\x51\x62\x73\x84\x95\xa6\xb7"
8092			"\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f"
8093			"\x50\x61\x72\x83\x94\xa5\xb6\xc7"
8094			"\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f"
8095			"\x60\x71\x82\x93\xa4\xb5\xc6\xd7"
8096			"\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f"
8097			"\x70\x81\x92\xa3\xb4\xc5\xd6\xe7"
8098			"\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f"
8099			"\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7"
8100			"\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f"
8101			"\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07"
8102			"\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f"
8103			"\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17"
8104			"\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f"
8105			"\xb0\xc1\xd2\xe3\xf4\x05\x16\x27"
8106			"\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf"
8107			"\xc0\xd1\xe2\xf3\x04\x15\x26\x37"
8108			"\x48\x59\x6a\x7b\x8c\x9d\xae\xbf"
8109			"\xd0\xe1\xf2\x03\x14\x25\x36\x47"
8110			"\x58\x69\x7a\x8b\x9c\xad\xbe\xcf"
8111			"\xe0\xf1\x02\x13\x24\x35\x46\x57"
8112			"\x68\x79\x8a\x9b\xac\xbd\xce\xdf"
8113			"\xf0\x01\x12\x23\x34\x45\x56\x67"
8114			"\x78\x89\x9a\xab\xbc\xcd\xde\xef"
8115			"\x00\x13\x26\x39\x4c\x5f\x72\x85"
8116			"\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d"
8117			"\x30\x43\x56\x69\x7c\x8f\xa2\xb5"
8118			"\xc8\xdb\xee\x01\x14\x27\x3a\x4d"
8119			"\x60\x73\x86\x99\xac\xbf\xd2\xe5"
8120			"\xf8\x0b\x1e\x31\x44\x57\x6a\x7d"
8121			"\x90\xa3\xb6\xc9\xdc\xef\x02\x15"
8122			"\x28\x3b\x4e\x61\x74\x87\x9a\xad"
8123			"\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45"
8124			"\x58\x6b\x7e\x91\xa4\xb7\xca\xdd"
8125			"\xf0\x03\x16\x29\x3c\x4f\x62\x75"
8126			"\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d"
8127			"\x20\x33\x46\x59\x6c\x7f\x92\xa5"
8128			"\xb8\xcb\xde\xf1\x04\x17\x2a\x3d"
8129			"\x50\x63\x76\x89\x9c\xaf\xc2\xd5"
8130			"\xe8\xfb\x0e\x21\x34\x47\x5a\x6d"
8131			"\x80\x93\xa6\xb9\xcc\xdf\xf2\x05"
8132			"\x18\x2b\x3e\x51\x64\x77\x8a\x9d"
8133			"\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35"
8134			"\x48\x5b\x6e\x81\x94\xa7\xba\xcd"
8135			"\xe0\xf3\x06\x19\x2c\x3f\x52\x65"
8136			"\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd"
8137			"\x10\x23\x36\x49\x5c\x6f\x82\x95"
8138			"\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d"
8139			"\x40\x53\x66\x79\x8c\x9f\xb2\xc5"
8140			"\xd8\xeb\xfe\x11\x24\x37\x4a\x5d"
8141			"\x70\x83\x96\xa9\xbc\xcf\xe2\xf5"
8142			"\x08\x1b\x2e\x41\x54\x67\x7a\x8d"
8143			"\xa0\xb3\xc6\xd9\xec\xff\x12\x25"
8144			"\x38\x4b\x5e\x71\x84\x97\xaa\xbd"
8145			"\xd0\xe3\xf6\x09\x1c\x2f\x42\x55"
8146			"\x68\x7b\x8e\xa1\xb4\xc7\xda\xed"
8147			"\x00\x15\x2a\x3f\x54\x69\x7e\x93"
8148			"\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b"
8149			"\x50\x65\x7a\x8f\xa4\xb9\xce\xe3"
8150			"\xf8\x0d\x22\x37\x4c\x61\x76\x8b"
8151			"\xa0\xb5\xca\xdf\xf4\x09\x1e\x33"
8152			"\x48\x5d\x72\x87\x9c\xb1\xc6\xdb"
8153			"\xf0\x05\x1a\x2f\x44\x59\x6e\x83"
8154			"\x98\xad\xc2\xd7\xec\x01\x16\x2b"
8155			"\x40\x55\x6a\x7f\x94\xa9\xbe\xd3"
8156			"\xe8\xfd\x12\x27\x3c\x51\x66\x7b"
8157			"\x90\xa5\xba\xcf\xe4\xf9\x0e\x23"
8158			"\x38\x4d\x62\x77\x8c\xa1\xb6\xcb"
8159			"\xe0\xf5\x0a\x1f\x34\x49\x5e\x73"
8160			"\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b"
8161			"\x30\x45\x5a\x6f\x84\x99\xae\xc3"
8162			"\xd8\xed\x02\x17\x2c\x41\x56\x6b"
8163			"\x80\x95\xaa\xbf\xd4\xe9\xfe\x13"
8164			"\x28\x3d\x52\x67\x7c\x91\xa6\xbb"
8165			"\xd0\xe5\xfa\x0f\x24\x39\x4e\x63"
8166			"\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b"
8167			"\x20\x35\x4a\x5f\x74\x89\x9e\xb3"
8168			"\xc8\xdd\xf2\x07\x1c\x31\x46\x5b"
8169			"\x70\x85\x9a\xaf\xc4\xd9\xee\x03"
8170			"\x18\x2d\x42\x57\x6c\x81\x96\xab"
8171			"\xc0\xd5\xea\xff\x14\x29\x3e\x53"
8172			"\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb"
8173			"\x10\x25\x3a\x4f\x64\x79\x8e\xa3"
8174			"\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b"
8175			"\x60\x75\x8a\x9f\xb4\xc9\xde\xf3"
8176			"\x08\x1d\x32\x47\x5c\x71\x86\x9b"
8177			"\xb0\xc5\xda\xef\x04\x19\x2e\x43"
8178			"\x58\x6d\x82\x97\xac\xc1\xd6\xeb"
8179			"\x00\x17\x2e\x45\x5c\x73\x8a\xa1"
8180			"\xb8\xcf\xe6\xfd\x14\x2b\x42\x59"
8181			"\x70\x87\x9e\xb5\xcc\xe3\xfa\x11"
8182			"\x28\x3f\x56\x6d\x84\x9b\xb2\xc9"
8183			"\xe0\xf7\x0e\x25\x3c\x53\x6a\x81"
8184			"\x98\xaf\xc6\xdd\xf4\x0b\x22\x39"
8185			"\x50\x67\x7e\x95\xac\xc3\xda\xf1"
8186			"\x08\x1f\x36\x4d\x64\x7b\x92\xa9"
8187			"\xc0\xd7\xee\x05\x1c\x33\x4a\x61"
8188			"\x78\x8f\xa6\xbd\xd4\xeb\x02\x19"
8189			"\x30\x47\x5e\x75\x8c\xa3\xba\xd1"
8190			"\xe8\xff\x16\x2d\x44\x5b\x72\x89"
8191			"\xa0\xb7\xce\xe5\xfc\x13\x2a\x41"
8192			"\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9"
8193			"\x10\x27\x3e\x55\x6c\x83\x9a\xb1"
8194			"\xc8\xdf\xf6\x0d\x24\x3b\x52\x69"
8195			"\x80\x97\xae\xc5\xdc\xf3\x0a\x21"
8196			"\x38\x4f\x66\x7d\x94\xab\xc2\xd9"
8197			"\xf0\x07\x1e\x35\x4c\x63\x7a\x91"
8198			"\xa8\xbf\xd6\xed\x04\x1b\x32\x49"
8199			"\x60\x77\x8e\xa5\xbc\xd3\xea\x01"
8200			"\x18\x2f\x46\x5d\x74\x8b\xa2\xb9"
8201			"\xd0\xe7\xfe\x15\x2c\x43\x5a\x71"
8202			"\x88\x9f\xb6\xcd\xe4\xfb\x12\x29"
8203			"\x40\x57\x6e\x85\x9c\xb3\xca\xe1"
8204			"\xf8\x0f\x26\x3d\x54\x6b\x82\x99"
8205			"\xb0\xc7\xde\xf5\x0c\x23\x3a\x51"
8206			"\x68\x7f\x96\xad\xc4\xdb\xf2\x09"
8207			"\x20\x37\x4e\x65\x7c\x93\xaa\xc1"
8208			"\xd8\xef\x06\x1d\x34\x4b\x62\x79"
8209			"\x90\xa7\xbe\xd5\xec\x03\x1a\x31"
8210			"\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9"
8211			"\x00\x19\x32\x4b\x64\x7d\x96\xaf"
8212			"\xc8\xe1\xfa\x13\x2c\x45\x5e\x77"
8213			"\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f"
8214			"\x58\x71\x8a\xa3\xbc\xd5\xee\x07"
8215			"\x20\x39\x52\x6b\x84\x9d\xb6\xcf"
8216			"\xe8\x01\x1a\x33\x4c\x65\x7e\x97"
8217			"\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f"
8218			"\x78\x91\xaa\xc3\xdc\xf5\x0e\x27"
8219			"\x40\x59\x72\x8b\xa4\xbd\xd6\xef"
8220			"\x08\x21\x3a\x53\x6c\x85\x9e\xb7"
8221			"\xd0\xe9\x02\x1b\x34\x4d\x66\x7f"
8222			"\x98\xb1\xca\xe3\xfc\x15\x2e\x47"
8223			"\x60\x79\x92\xab\xc4\xdd\xf6\x0f"
8224			"\x28\x41\x5a\x73\x8c\xa5\xbe\xd7"
8225			"\xf0\x09\x22\x3b\x54\x6d\x86\x9f"
8226			"\xb8\xd1\xea\x03\x1c\x35\x4e\x67"
8227			"\x80\x99\xb2\xcb\xe4\xfd\x16\x2f"
8228			"\x48\x61\x7a\x93\xac\xc5\xde\xf7"
8229			"\x10\x29\x42\x5b\x74\x8d\xa6\xbf"
8230			"\xd8\xf1\x0a\x23\x3c\x55\x6e\x87"
8231			"\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f"
8232			"\x68\x81\x9a\xb3\xcc\xe5\xfe\x17"
8233			"\x30\x49\x62\x7b\x94\xad\xc6\xdf"
8234			"\xf8\x11\x2a\x43\x5c\x75\x8e\xa7"
8235			"\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f"
8236			"\x88\xa1\xba\xd3\xec\x05\x1e\x37"
8237			"\x50\x69\x82\x9b\xb4\xcd\xe6\xff"
8238			"\x18\x31\x4a\x63\x7c\x95\xae\xc7"
8239			"\xe0\xf9\x12\x2b\x44\x5d\x76\x8f"
8240			"\xa8\xc1\xda\xf3\x0c\x25\x3e\x57"
8241			"\x70\x89\xa2\xbb\xd4\xed\x06\x1f"
8242			"\x38\x51\x6a\x83\x9c\xb5\xce\xe7"
8243			"\x00\x1b\x36\x51\x6c\x87\xa2\xbd"
8244			"\xd8\xf3\x0e\x29\x44\x5f\x7a\x95"
8245			"\xb0\xcb\xe6\x01\x1c\x37\x52\x6d"
8246			"\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45"
8247			"\x60\x7b\x96\xb1\xcc\xe7\x02\x1d"
8248			"\x38\x53\x6e\x89\xa4\xbf\xda\xf5"
8249			"\x10\x2b\x46\x61\x7c\x97\xb2\xcd"
8250			"\xe8\x03\x1e\x39\x54\x6f\x8a\xa5"
8251			"\xc0\xdb\xf6\x11\x2c\x47\x62\x7d"
8252			"\x98\xb3\xce\xe9\x04\x1f\x3a\x55"
8253			"\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d"
8254			"\x48\x63\x7e\x99\xb4\xcf\xea\x05"
8255			"\x20\x3b\x56\x71\x8c\xa7\xc2\xdd"
8256			"\xf8\x13\x2e\x49\x64\x7f\x9a\xb5"
8257			"\xd0\xeb\x06\x21\x3c\x57\x72\x8d"
8258			"\xa8\xc3\xde\xf9\x14\x2f\x4a\x65"
8259			"\x80\x9b\xb6\xd1\xec\x07\x22\x3d"
8260			"\x58\x73\x8e\xa9\xc4\xdf\xfa\x15"
8261			"\x30\x4b\x66\x81\x9c\xb7\xd2\xed"
8262			"\x08\x23\x3e\x59\x74\x8f\xaa\xc5"
8263			"\xe0\xfb\x16\x31\x4c\x67\x82\x9d"
8264			"\xb8\xd3\xee\x09\x24\x3f\x5a\x75"
8265			"\x90\xab\xc6\xe1\xfc\x17\x32\x4d"
8266			"\x68\x83\x9e\xb9\xd4\xef\x0a\x25"
8267			"\x40\x5b\x76\x91\xac\xc7\xe2\xfd"
8268			"\x18\x33\x4e\x69\x84\x9f\xba\xd5"
8269			"\xf0\x0b\x26\x41\x5c\x77\x92\xad"
8270			"\xc8\xe3\xfe\x19\x34\x4f\x6a\x85"
8271			"\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d"
8272			"\x78\x93\xae\xc9\xe4\xff\x1a\x35"
8273			"\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d"
8274			"\x28\x43\x5e\x79\x94\xaf\xca\xe5"
8275			"\x00\x1d\x3a\x57\x74\x91\xae\xcb"
8276			"\xe8\x05\x22\x3f\x5c\x79\x96\xb3"
8277			"\xd0\xed\x0a\x27\x44\x61\x7e\x9b"
8278			"\xb8\xd5\xf2\x0f\x2c\x49\x66\x83"
8279			"\xa0\xbd\xda\xf7\x14\x31\x4e\x6b"
8280			"\x88\xa5\xc2\xdf\xfc\x19\x36\x53"
8281			"\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b"
8282			"\x58\x75\x92\xaf\xcc\xe9\x06\x23"
8283			"\x40\x5d\x7a\x97\xb4\xd1\xee\x0b"
8284			"\x28\x45\x62\x7f\x9c\xb9\xd6\xf3"
8285			"\x10\x2d\x4a\x67\x84\xa1\xbe\xdb"
8286			"\xf8\x15\x32\x4f\x6c\x89\xa6\xc3"
8287			"\xe0\xfd\x1a\x37\x54\x71\x8e\xab"
8288			"\xc8\xe5\x02\x1f\x3c\x59\x76\x93"
8289			"\xb0\xcd\xea\x07\x24\x41\x5e\x7b"
8290			"\x98\xb5\xd2\xef\x0c\x29\x46\x63"
8291			"\x80\x9d\xba\xd7\xf4\x11\x2e\x4b"
8292			"\x68\x85\xa2\xbf\xdc\xf9\x16\x33"
8293			"\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b"
8294			"\x38\x55\x72\x8f\xac\xc9\xe6\x03"
8295			"\x20\x3d\x5a\x77\x94\xb1\xce\xeb"
8296			"\x08\x25\x42\x5f\x7c\x99\xb6\xd3"
8297			"\xf0\x0d\x2a\x47\x64\x81\x9e\xbb"
8298			"\xd8\xf5\x12\x2f\x4c\x69\x86\xa3"
8299			"\xc0\xdd\xfa\x17\x34\x51\x6e\x8b"
8300			"\xa8\xc5\xe2\xff\x1c\x39\x56\x73"
8301			"\x90\xad\xca\xe7\x04\x21\x3e\x5b"
8302			"\x78\x95\xb2\xcf\xec\x09\x26\x43"
8303			"\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b"
8304			"\x48\x65\x82\x9f\xbc\xd9\xf6\x13"
8305			"\x30\x4d\x6a\x87\xa4\xc1\xde\xfb"
8306			"\x18\x35\x52\x6f\x8c\xa9\xc6\xe3"
8307			"\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9"
8308			"\xf8\x17\x36\x55\x74\x93\xb2\xd1"
8309			"\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9"
8310			"\xe8\x07\x26\x45\x64\x83\xa2\xc1"
8311			"\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9"
8312			"\xd8\xf7\x16\x35\x54\x73\x92\xb1"
8313			"\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9"
8314			"\xc8\xe7\x06\x25\x44\x63\x82\xa1"
8315			"\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99"
8316			"\xb8\xd7\xf6\x15\x34\x53\x72\x91"
8317			"\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89"
8318			"\xa8\xc7\xe6\x05\x24\x43\x62\x81"
8319			"\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79"
8320			"\x98\xb7\xd6\xf5\x14\x33\x52\x71"
8321			"\x90\xaf\xce\xed\x0c\x2b\x4a\x69"
8322			"\x88\xa7\xc6\xe5\x04\x23\x42\x61"
8323			"\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59"
8324			"\x78\x97\xb6\xd5\xf4\x13\x32\x51"
8325			"\x70\x8f\xae\xcd\xec\x0b\x2a\x49"
8326			"\x68\x87\xa6\xc5\xe4\x03\x22\x41"
8327			"\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39"
8328			"\x58\x77\x96\xb5\xd4\xf3\x12\x31"
8329			"\x50\x6f\x8e\xad\xcc\xeb\x0a\x29"
8330			"\x48\x67\x86\xa5\xc4\xe3\x02\x21"
8331			"\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19"
8332			"\x38\x57\x76\x95\xb4\xd3\xf2\x11"
8333			"\x30\x4f\x6e\x8d\xac\xcb\xea\x09"
8334			"\x28\x47\x66\x85\xa4\xc3\xe2\x01"
8335			"\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9"
8336			"\x18\x37\x56\x75\x94\xb3\xd2\xf1"
8337			"\x10\x2f\x4e\x6d\x8c\xab\xca\xe9"
8338			"\x08\x27\x46\x65\x84\xa3\xc2\xe1"
8339			"\x00\x21\x42\x63",
8340		.ilen = 4100,
8341		.result =
8342			"\xb5\x81\xf5\x64\x18\x73\xe3\xf0"
8343			"\x4c\x13\xf2\x77\x18\x60\x65\x5e"
8344			"\x29\x01\xce\x98\x55\x53\xf9\x0c"
8345			"\x2a\x08\xd5\x09\xb3\x57\x55\x56"
8346			"\xc5\xe9\x56\x90\xcb\x6a\xa3\xc0"
8347			"\xff\xc4\x79\xb4\xd2\x97\x5d\xc4"
8348			"\x43\xd1\xfe\x94\x7b\x88\x06\x5a"
8349			"\xb2\x9e\x2c\xfc\x44\x03\xb7\x90"
8350			"\xa0\xc1\xba\x6a\x33\xb8\xc7\xb2"
8351			"\x9d\xe1\x12\x4f\xc0\x64\xd4\x01"
8352			"\xfe\x8c\x7a\x66\xf7\xe6\x5a\x91"
8353			"\xbb\xde\x56\x86\xab\x65\x21\x30"
8354			"\x00\x84\x65\x24\xa5\x7d\x85\xb4"
8355			"\xe3\x17\xed\x3a\xb7\x6f\xb4\x0b"
8356			"\x0b\xaf\x15\xae\x5a\x8f\xf2\x0c"
8357			"\x2f\x27\xf4\x09\xd8\xd2\x96\xb7"
8358			"\x71\xf2\xc5\x99\x4d\x7e\x7f\x75"
8359			"\x77\x89\x30\x8b\x59\xdb\xa2\xb2"
8360			"\xa0\xf3\x19\x39\x2b\xc5\x7e\x3f"
8361			"\x4f\xd9\xd3\x56\x28\x97\x44\xdc"
8362			"\xc0\x8b\x77\x24\xd9\x52\xe7\xc5"
8363			"\xaf\xf6\x7d\x59\xb2\x44\x05\x1d"
8364			"\xb1\xb0\x11\xa5\x0f\xec\x33\xe1"
8365			"\x6d\x1b\x4e\x1f\xff\x57\x91\xb4"
8366			"\x5b\x9a\x96\xc5\x53\xbc\xae\x20"
8367			"\x3c\xbb\x14\xe2\xe8\x22\x33\xc1"
8368			"\x5e\x76\x9e\x46\x99\xf6\x2a\x15"
8369			"\xc6\x97\x02\xa0\x66\x43\xd1\xa6"
8370			"\x31\xa6\x9f\xfb\xf4\xd3\x69\xe5"
8371			"\xcd\x76\x95\xb8\x7a\x82\x7f\x21"
8372			"\x45\xff\x3f\xce\x55\xf6\x95\x10"
8373			"\x08\x77\x10\x43\xc6\xf3\x09\xe5"
8374			"\x68\xe7\x3c\xad\x00\x52\x45\x0d"
8375			"\xfe\x2d\xc6\xc2\x94\x8c\x12\x1d"
8376			"\xe6\x25\xae\x98\x12\x8e\x19\x9c"
8377			"\x81\x68\xb1\x11\xf6\x69\xda\xe3"
8378			"\x62\x08\x18\x7a\x25\x49\x28\xac"
8379			"\xba\x71\x12\x0b\xe4\xa2\xe5\xc7"
8380			"\x5d\x8e\xec\x49\x40\x21\xbf\x5a"
8381			"\x98\xf3\x02\x68\x55\x03\x7f\x8a"
8382			"\xe5\x94\x0c\x32\x5c\x07\x82\x63"
8383			"\xaf\x6f\x91\x40\x84\x8e\x52\x25"
8384			"\xd0\xb0\x29\x53\x05\xe2\x50\x7a"
8385			"\x34\xeb\xc9\x46\x20\xa8\x3d\xde"
8386			"\x7f\x16\x5f\x36\xc5\x2e\xdc\xd1"
8387			"\x15\x47\xc7\x50\x40\x6d\x91\xc5"
8388			"\xe7\x93\x95\x1a\xd3\x57\xbc\x52"
8389			"\x33\xee\x14\x19\x22\x52\x89\xa7"
8390			"\x4a\x25\x56\x77\x4b\xca\xcf\x0a"
8391			"\xe1\xf5\x35\x85\x30\x7e\x59\x4a"
8392			"\xbd\x14\x5b\xdf\xe3\x46\xcb\xac"
8393			"\x1f\x6c\x96\x0e\xf4\x81\xd1\x99"
8394			"\xca\x88\x63\x3d\x02\x58\x6b\xa9"
8395			"\xe5\x9f\xb3\x00\xb2\x54\xc6\x74"
8396			"\x1c\xbf\x46\xab\x97\xcc\xf8\x54"
8397			"\x04\x07\x08\x52\xe6\xc0\xda\x93"
8398			"\x74\x7d\x93\x99\x5d\x78\x68\xa6"
8399			"\x2e\x6b\xd3\x6a\x69\xcc\x12\x6b"
8400			"\xd4\xc7\xa5\xc6\xe7\xf6\x03\x04"
8401			"\x5d\xcd\x61\x5e\x17\x40\xdc\xd1"
8402			"\x5c\xf5\x08\xdf\x5c\x90\x85\xa4"
8403			"\xaf\xf6\x78\xbb\x0d\xf1\xf4\xa4"
8404			"\x54\x26\x72\x9e\x61\xfa\x86\xcf"
8405			"\xe8\x9e\xa1\xe0\xc7\x48\x23\xae"
8406			"\x5a\x90\xae\x75\x0a\x74\x18\x89"
8407			"\x05\xb1\x92\xb2\x7f\xd0\x1b\xa6"
8408			"\x62\x07\x25\x01\xc7\xc2\x4f\xf9"
8409			"\xe8\xfe\x63\x95\x80\x07\xb4\x26"
8410			"\xcc\xd1\x26\xb6\xc4\x3f\x9e\xcb"
8411			"\x8e\x3b\x2e\x44\x16\xd3\x10\x9a"
8412			"\x95\x08\xeb\xc8\xcb\xeb\xbf\x6f"
8413			"\x0b\xcd\x1f\xc8\xca\x86\xaa\xec"
8414			"\x33\xe6\x69\xf4\x45\x25\x86\x3a"
8415			"\x22\x94\x4f\x00\x23\x6a\x44\xc2"
8416			"\x49\x97\x33\xab\x36\x14\x0a\x70"
8417			"\x24\xc3\xbe\x04\x3b\x79\xa0\xf9"
8418			"\xb8\xe7\x76\x29\x22\x83\xd7\xf2"
8419			"\x94\xf4\x41\x49\xba\x5f\x7b\x07"
8420			"\xb5\xfb\xdb\x03\x1a\x9f\xb6\x4c"
8421			"\xc2\x2e\x37\x40\x49\xc3\x38\x16"
8422			"\xe2\x4f\x77\x82\xb0\x68\x4c\x71"
8423			"\x1d\x57\x61\x9c\xd9\x4e\x54\x99"
8424			"\x47\x13\x28\x73\x3c\xbb\x00\x90"
8425			"\xf3\x4d\xc9\x0e\xfd\xe7\xb1\x71"
8426			"\xd3\x15\x79\xbf\xcc\x26\x2f\xbd"
8427			"\xad\x6c\x50\x69\x6c\x3e\x6d\x80"
8428			"\x9a\xea\x78\xaf\x19\xb2\x0d\x4d"
8429			"\xad\x04\x07\xae\x22\x90\x4a\x93"
8430			"\x32\x0e\x36\x9b\x1b\x46\xba\x3b"
8431			"\xb4\xac\xc6\xd1\xa2\x31\x53\x3b"
8432			"\x2a\x3d\x45\xfe\x03\x61\x10\x85"
8433			"\x17\x69\xa6\x78\xcc\x6c\x87\x49"
8434			"\x53\xf9\x80\x10\xde\x80\xa2\x41"
8435			"\x6a\xc3\x32\x02\xad\x6d\x3c\x56"
8436			"\x00\x71\x51\x06\xa7\xbd\xfb\xef"
8437			"\x3c\xb5\x9f\xfc\x48\x7d\x53\x7c"
8438			"\x66\xb0\x49\x23\xc4\x47\x10\x0e"
8439			"\xe5\x6c\x74\x13\xe6\xc5\x3f\xaa"
8440			"\xde\xff\x07\x44\xdd\x56\x1b\xad"
8441			"\x09\x77\xfb\x5b\x12\xb8\x0d\x38"
8442			"\x17\x37\x35\x7b\x9b\xbc\xfe\xd4"
8443			"\x7e\x8b\xda\x7e\x5b\x04\xa7\x22"
8444			"\xa7\x31\xa1\x20\x86\xc7\x1b\x99"
8445			"\xdb\xd1\x89\xf4\x94\xa3\x53\x69"
8446			"\x8d\xe7\xe8\x74\x11\x8d\x74\xd6"
8447			"\x07\x37\x91\x9f\xfd\x67\x50\x3a"
8448			"\xc9\xe1\xf4\x36\xd5\xa0\x47\xd1"
8449			"\xf9\xe5\x39\xa3\x31\xac\x07\x36"
8450			"\x23\xf8\x66\x18\x14\x28\x34\x0f"
8451			"\xb8\xd0\xe7\x29\xb3\x04\x4b\x55"
8452			"\x01\x41\xb2\x75\x8d\xcb\x96\x85"
8453			"\x3a\xfb\xab\x2b\x9e\xfa\x58\x20"
8454			"\x44\x1f\xc0\x14\x22\x75\x61\xe8"
8455			"\xaa\x19\xcf\xf1\x82\x56\xf4\xd7"
8456			"\x78\x7b\x3d\x5f\xb3\x9e\x0b\x8a"
8457			"\x57\x50\xdb\x17\x41\x65\x4d\xa3"
8458			"\x02\xc9\x9c\x9c\x53\xfb\x39\x39"
8459			"\x9b\x1d\x72\x24\xda\xb7\x39\xbe"
8460			"\x13\x3b\xfa\x29\xda\x9e\x54\x64"
8461			"\x6e\xba\xd8\xa1\xcb\xb3\x36\xfa"
8462			"\xcb\x47\x85\xe9\x61\x38\xbc\xbe"
8463			"\xc5\x00\x38\x2a\x54\xf7\xc4\xb9"
8464			"\xb3\xd3\x7b\xa0\xa0\xf8\x72\x7f"
8465			"\x8c\x8e\x82\x0e\xc6\x1c\x75\x9d"
8466			"\xca\x8e\x61\x87\xde\xad\x80\xd2"
8467			"\xf5\xf9\x80\xef\x15\x75\xaf\xf5"
8468			"\x80\xfb\xff\x6d\x1e\x25\xb7\x40"
8469			"\x61\x6a\x39\x5a\x6a\xb5\x31\xab"
8470			"\x97\x8a\x19\x89\x44\x40\xc0\xa6"
8471			"\xb4\x4e\x30\x32\x7b\x13\xe7\x67"
8472			"\xa9\x8b\x57\x04\xc2\x01\xa6\xf4"
8473			"\x28\x99\xad\x2c\x76\xa3\x78\xc2"
8474			"\x4a\xe6\xca\x5c\x50\x6a\xc1\xb0"
8475			"\x62\x4b\x10\x8e\x7c\x17\x43\xb3"
8476			"\x17\x66\x1c\x3e\x8d\x69\xf0\x5a"
8477			"\x71\xf5\x97\xdc\xd1\x45\xdd\x28"
8478			"\xf3\x5d\xdf\x53\x7b\x11\xe5\xbc"
8479			"\x4c\xdb\x1b\x51\x6b\xe9\xfb\x3d"
8480			"\xc1\xc3\x2c\xb9\x71\xf5\xb6\xb2"
8481			"\x13\x36\x79\x80\x53\xe8\xd3\xa6"
8482			"\x0a\xaf\xfd\x56\x97\xf7\x40\x8e"
8483			"\x45\xce\xf8\xb0\x9e\x5c\x33\x82"
8484			"\xb0\x44\x56\xfc\x05\x09\xe9\x2a"
8485			"\xac\x26\x80\x14\x1d\xc8\x3a\x35"
8486			"\x4c\x82\x97\xfd\x76\xb7\xa9\x0a"
8487			"\x35\x58\x79\x8e\x0f\x66\xea\xaf"
8488			"\x51\x6c\x09\xa9\x6e\x9b\xcb\x9a"
8489			"\x31\x47\xa0\x2f\x7c\x71\xb4\x4a"
8490			"\x11\xaa\x8c\x66\xc5\x64\xe6\x3a"
8491			"\x54\xda\x24\x6a\xc4\x41\x65\x46"
8492			"\x82\xa0\x0a\x0f\x5f\xfb\x25\xd0"
8493			"\x2c\x91\xa7\xee\xc4\x81\x07\x86"
8494			"\x75\x5e\x33\x69\x97\xe4\x2c\xa8"
8495			"\x9d\x9f\x0b\x6a\xbe\xad\x98\xda"
8496			"\x6d\x94\x41\xda\x2c\x1e\x89\xc4"
8497			"\xc2\xaf\x1e\x00\x05\x0b\x83\x60"
8498			"\xbd\x43\xea\x15\x23\x7f\xb9\xac"
8499			"\xee\x4f\x2c\xaf\x2a\xf3\xdf\xd0"
8500			"\xf3\x19\x31\xbb\x4a\x74\x84\x17"
8501			"\x52\x32\x2c\x7d\x61\xe4\xcb\xeb"
8502			"\x80\x38\x15\x52\xcb\x6f\xea\xe5"
8503			"\x73\x9c\xd9\x24\x69\xc6\x95\x32"
8504			"\x21\xc8\x11\xe4\xdc\x36\xd7\x93"
8505			"\x38\x66\xfb\xb2\x7f\x3a\xb9\xaf"
8506			"\x31\xdd\x93\x75\x78\x8a\x2c\x94"
8507			"\x87\x1a\x58\xec\x9e\x7d\x4d\xba"
8508			"\xe1\xe5\x4d\xfc\xbc\xa4\x2a\x14"
8509			"\xef\xcc\xa7\xec\xab\x43\x09\x18"
8510			"\xd3\xab\x68\xd1\x07\x99\x44\x47"
8511			"\xd6\x83\x85\x3b\x30\xea\xa9\x6b"
8512			"\x63\xea\xc4\x07\xfb\x43\x2f\xa4"
8513			"\xaa\xb0\xab\x03\x89\xce\x3f\x8c"
8514			"\x02\x7c\x86\x54\xbc\x88\xaf\x75"
8515			"\xd2\xdc\x63\x17\xd3\x26\xf6\x96"
8516			"\xa9\x3c\xf1\x61\x8c\x11\x18\xcc"
8517			"\xd6\xea\x5b\xe2\xcd\xf0\xf1\xb2"
8518			"\xe5\x35\x90\x1f\x85\x4c\x76\x5b"
8519			"\x66\xce\x44\xa4\x32\x9f\xe6\x7b"
8520			"\x71\x6e\x9f\x58\x15\x67\x72\x87"
8521			"\x64\x8e\x3a\x44\x45\xd4\x76\xfa"
8522			"\xc2\xf6\xef\x85\x05\x18\x7a\x9b"
8523			"\xba\x41\x54\xac\xf0\xfc\x59\x12"
8524			"\x3f\xdf\xa0\xe5\x8a\x65\xfd\x3a"
8525			"\x62\x8d\x83\x2c\x03\xbe\x05\x76"
8526			"\x2e\x53\x49\x97\x94\x33\xae\x40"
8527			"\x81\x15\xdb\x6e\xad\xaa\xf5\x4b"
8528			"\xe3\x98\x70\xdf\xe0\x7c\xcd\xdb"
8529			"\x02\xd4\x7d\x2f\xc1\xe6\xb4\xf3"
8530			"\xd7\x0d\x7a\xd9\x23\x9e\x87\x2d"
8531			"\xce\x87\xad\xcc\x72\x05\x00\x29"
8532			"\xdc\x73\x7f\x64\xc1\x15\x0e\xc2"
8533			"\xdf\xa7\x5f\xeb\x41\xa1\xcd\xef"
8534			"\x5c\x50\x79\x2a\x56\x56\x71\x8c"
8535			"\xac\xc0\x79\x50\x69\xca\x59\x32"
8536			"\x65\xf2\x54\xe4\x52\x38\x76\xd1"
8537			"\x5e\xde\x26\x9e\xfb\x75\x2e\x11"
8538			"\xb5\x10\xf4\x17\x73\xf5\x89\xc7"
8539			"\x4f\x43\x5c\x8e\x7c\xb9\x05\x52"
8540			"\x24\x40\x99\xfe\x9b\x85\x0b\x6c"
8541			"\x22\x3e\x8b\xae\x86\xa1\xd2\x79"
8542			"\x05\x68\x6b\xab\xe3\x41\x49\xed"
8543			"\x15\xa1\x8d\x40\x2d\x61\xdf\x1a"
8544			"\x59\xc9\x26\x8b\xef\x30\x4c\x88"
8545			"\x4b\x10\xf8\x8d\xa6\x92\x9f\x4b"
8546			"\xf3\xc4\x53\x0b\x89\x5d\x28\x92"
8547			"\xcf\x78\xb2\xc0\x5d\xed\x7e\xfc"
8548			"\xc0\x12\x23\x5f\x5a\x78\x86\x43"
8549			"\x6e\x27\xf7\x5a\xa7\x6a\xed\x19"
8550			"\x04\xf0\xb3\x12\xd1\xbd\x0e\x89"
8551			"\x6e\xbc\x96\xa8\xd8\x49\x39\x9f"
8552			"\x7e\x67\xf0\x2e\x3e\x01\xa9\xba"
8553			"\xec\x8b\x62\x8e\xcb\x4a\x70\x43"
8554			"\xc7\xc2\xc4\xca\x82\x03\x73\xe9"
8555			"\x11\xdf\xcf\x54\xea\xc9\xb0\x95"
8556			"\x51\xc0\x13\x3d\x92\x05\xfa\xf4"
8557			"\xa9\x34\xc8\xce\x6c\x3d\x54\xcc"
8558			"\xc4\xaf\xf1\xdc\x11\x44\x26\xa2"
8559			"\xaf\xf1\x85\x75\x7d\x03\x61\x68"
8560			"\x4e\x78\xc6\x92\x7d\x86\x7d\x77"
8561			"\xdc\x71\x72\xdb\xc6\xae\xa1\xcb"
8562			"\x70\x9a\x0b\x19\xbe\x4a\x6c\x2a"
8563			"\xe2\xba\x6c\x64\x9a\x13\x28\xdf"
8564			"\x85\x75\xe6\x43\xf6\x87\x08\x68"
8565			"\x6e\xba\x6e\x79\x9f\x04\xbc\x23"
8566			"\x50\xf6\x33\x5c\x1f\x24\x25\xbe"
8567			"\x33\x47\x80\x45\x56\xa3\xa7\xd7"
8568			"\x7a\xb1\x34\x0b\x90\x3c\x9c\xad"
8569			"\x44\x5f\x9e\x0e\x9d\xd4\xbd\x93"
8570			"\x5e\xfa\x3c\xe0\xb0\xd9\xed\xf3"
8571			"\xd6\x2e\xff\x24\xd8\x71\x6c\xed"
8572			"\xaf\x55\xeb\x22\xac\x93\x68\x32"
8573			"\x05\x5b\x47\xdd\xc6\x4a\xcb\xc7"
8574			"\x10\xe1\x3c\x92\x1a\xf3\x23\x78"
8575			"\x2b\xa1\xd2\x80\xf4\x12\xb1\x20"
8576			"\x8f\xff\x26\x35\xdd\xfb\xc7\x4e"
8577			"\x78\xf1\x2d\x50\x12\x77\xa8\x60"
8578			"\x7c\x0f\xf5\x16\x2f\x63\x70\x2a"
8579			"\xc0\x96\x80\x4e\x0a\xb4\x93\x35"
8580			"\x5d\x1d\x3f\x56\xf7\x2f\xbb\x90"
8581			"\x11\x16\x8f\xa2\xec\x47\xbe\xac"
8582			"\x56\x01\x26\x56\xb1\x8c\xb2\x10"
8583			"\xf9\x1a\xca\xf5\xd1\xb7\x39\x20"
8584			"\x63\xf1\x69\x20\x4f\x13\x12\x1f"
8585			"\x5b\x65\xfc\x98\xf7\xc4\x7a\xbe"
8586			"\xf7\x26\x4d\x2b\x84\x7b\x42\xad"
8587			"\xd8\x7a\x0a\xb4\xd8\x74\xbf\xc1"
8588			"\xf0\x6e\xb4\x29\xa3\xbb\xca\x46"
8589			"\x67\x70\x6a\x2d\xce\x0e\xa2\x8a"
8590			"\xa9\x87\xbf\x05\xc4\xc1\x04\xa3"
8591			"\xab\xd4\x45\x43\x8c\xb6\x02\xb0"
8592			"\x41\xc8\xfc\x44\x3d\x59\xaa\x2e"
8593			"\x44\x21\x2a\x8d\x88\x9d\x57\xf4"
8594			"\xa0\x02\x77\xb8\xa6\xa0\xe6\x75"
8595			"\x5c\x82\x65\x3e\x03\x5c\x29\x8f"
8596			"\x38\x55\xab\x33\x26\xef\x9f\x43"
8597			"\x52\xfd\x68\xaf\x36\xb4\xbb\x9a"
8598			"\x58\x09\x09\x1b\xc3\x65\x46\x46"
8599			"\x1d\xa7\x94\x18\x23\x50\x2c\xca"
8600			"\x2c\x55\x19\x97\x01\x9d\x93\x3b"
8601			"\x63\x86\xf2\x03\x67\x45\xd2\x72"
8602			"\x28\x52\x6c\xf4\xe3\x1c\xb5\x11"
8603			"\x13\xf1\xeb\x21\xc7\xd9\x56\x82"
8604			"\x2b\x82\x39\xbd\x69\x54\xed\x62"
8605			"\xc3\xe2\xde\x73\xd4\x6a\x12\xae"
8606			"\x13\x21\x7f\x4b\x5b\xfc\xbf\xe8"
8607			"\x2b\xbe\x56\xba\x68\x8b\x9a\xb1"
8608			"\x6e\xfa\xbf\x7e\x5a\x4b\xf1\xac"
8609			"\x98\x65\x85\xd1\x93\x53\xd3\x7b"
8610			"\x09\xdd\x4b\x10\x6d\x84\xb0\x13"
8611			"\x65\xbd\xcf\x52\x09\xc4\x85\xe2"
8612			"\x84\x74\x15\x65\xb7\xf7\x51\xaf"
8613			"\x55\xad\xa4\xd1\x22\x54\x70\x94"
8614			"\xa0\x1c\x90\x41\xfd\x99\xd7\x5a"
8615			"\x31\xef\xaa\x25\xd0\x7f\x4f\xea"
8616			"\x1d\x55\x42\xe5\x49\xb0\xd0\x46"
8617			"\x62\x36\x43\xb2\x82\x15\x75\x50"
8618			"\xa4\x72\xeb\x54\x27\x1f\x8a\xe4"
8619			"\x7d\xe9\x66\xc5\xf1\x53\xa4\xd1"
8620			"\x0c\xeb\xb8\xf8\xbc\xd4\xe2\xe7"
8621			"\xe1\xf8\x4b\xcb\xa9\xa1\xaf\x15"
8622			"\x83\xcb\x72\xd0\x33\x79\x00\x2d"
8623			"\x9f\xd7\xf1\x2e\x1e\x10\xe4\x45"
8624			"\xc0\x75\x3a\x39\xea\x68\xf7\x5d"
8625			"\x1b\x73\x8f\xe9\x8e\x0f\x72\x47"
8626			"\xae\x35\x0a\x31\x7a\x14\x4d\x4a"
8627			"\x6f\x47\xf7\x7e\x91\x6e\x74\x8b"
8628			"\x26\x47\xf9\xc3\xf9\xde\x70\xf5"
8629			"\x61\xab\xa9\x27\x9f\x82\xe4\x9c"
8630			"\x89\x91\x3f\x2e\x6a\xfd\xb5\x49"
8631			"\xe9\xfd\x59\x14\x36\x49\x40\x6d"
8632			"\x32\xd8\x85\x42\xf3\xa5\xdf\x0c"
8633			"\xa8\x27\xd7\x54\xe2\x63\x2f\xf2"
8634			"\x7e\x8b\x8b\xe7\xf1\x9a\x95\x35"
8635			"\x43\xdc\x3a\xe4\xb6\xf4\xd0\xdf"
8636			"\x9c\xcb\x94\xf3\x21\xa0\x77\x50"
8637			"\xe2\xc6\xc4\xc6\x5f\x09\x64\x5b"
8638			"\x92\x90\xd8\xe1\xd1\xed\x4b\x42"
8639			"\xd7\x37\xaf\x65\x3d\x11\x39\xb6"
8640			"\x24\x8a\x60\xae\xd6\x1e\xbf\x0e"
8641			"\x0d\xd7\xdc\x96\x0e\x65\x75\x4e"
8642			"\x29\x06\x9d\xa4\x51\x3a\x10\x63"
8643			"\x8f\x17\x07\xd5\x8e\x3c\xf4\x28"
8644			"\x00\x5a\x5b\x05\x19\xd8\xc0\x6c"
8645			"\xe5\x15\xe4\x9c\x9d\x71\x9d\x5e"
8646			"\x94\x29\x1a\xa7\x80\xfa\x0e\x33"
8647			"\x03\xdd\xb7\x3e\x9a\xa9\x26\x18"
8648			"\x37\xa9\x64\x08\x4d\x94\x5a\x88"
8649			"\xca\x35\xce\x81\x02\xe3\x1f\x1b"
8650			"\x89\x1a\x77\x85\xe3\x41\x6d\x32"
8651			"\x42\x19\x23\x7d\xc8\x73\xee\x25"
8652			"\x85\x0d\xf8\x31\x25\x79\x1b\x6f"
8653			"\x79\x25\xd2\xd8\xd4\x23\xfd\xf7"
8654			"\x82\x36\x6a\x0c\x46\x22\x15\xe9"
8655			"\xff\x72\x41\x91\x91\x7d\x3a\xb7"
8656			"\xdd\x65\x99\x70\xf6\x8d\x84\xf8"
8657			"\x67\x15\x20\x11\xd6\xb2\x55\x7b"
8658			"\xdb\x87\xee\xef\x55\x89\x2a\x59"
8659			"\x2b\x07\x8f\x43\x8a\x59\x3c\x01"
8660			"\x8b\x65\x54\xa1\x66\xd5\x38\xbd"
8661			"\xc6\x30\xa9\xcc\x49\xb6\xa8\x1b"
8662			"\xb8\xc0\x0e\xe3\x45\x28\xe2\xff"
8663			"\x41\x9f\x7e\x7c\xd1\xae\x9e\x25"
8664			"\x3f\x4c\x7c\x7c\xf4\xa8\x26\x4d"
8665			"\x5c\xfd\x4b\x27\x18\xf9\x61\x76"
8666			"\x48\xba\x0c\x6b\xa9\x4d\xfc\xf5"
8667			"\x3b\x35\x7e\x2f\x4a\xa9\xc2\x9a"
8668			"\xae\xab\x86\x09\x89\xc9\xc2\x40"
8669			"\x39\x2c\x81\xb3\xb8\x17\x67\xc2"
8670			"\x0d\x32\x4a\x3a\x67\x81\xd7\x1a"
8671			"\x34\x52\xc5\xdb\x0a\xf5\x63\x39"
8672			"\xea\x1f\xe1\x7c\xa1\x9e\xc1\x35"
8673			"\xe3\xb1\x18\x45\x67\xf9\x22\x38"
8674			"\x95\xd9\x34\x34\x86\xc6\x41\x94"
8675			"\x15\xf9\x5b\x41\xa6\x87\x8b\xf8"
8676			"\xd5\xe1\x1b\xe2\x5b\xf3\x86\x10"
8677			"\xff\xe6\xae\x69\x76\xbc\x0d\xb4"
8678			"\x09\x90\x0c\xa2\x65\x0c\xad\x74"
8679			"\xf5\xd7\xff\xda\xc1\xce\x85\xbe"
8680			"\x00\xa7\xff\x4d\x2f\x65\xd3\x8c"
8681			"\x86\x2d\x05\xe8\xed\x3e\x6b\x8b"
8682			"\x0f\x3d\x83\x8c\xf1\x1d\x5b\x96"
8683			"\x2e\xb1\x9c\xc2\x98\xe1\x70\xb9"
8684			"\xba\x5c\x8a\x43\xd6\x34\xa7\x2d"
8685			"\xc9\x92\xae\xf2\xa5\x7b\x05\x49"
8686			"\xa7\x33\x34\x86\xca\xe4\x96\x23"
8687			"\x76\x5b\xf2\xc6\xf1\x51\x28\x42"
8688			"\x7b\xcc\x76\x8f\xfa\xa2\xad\x31"
8689			"\xd4\xd6\x7a\x6d\x25\x25\x54\xe4"
8690			"\x3f\x50\x59\xe1\x5c\x05\xb7\x27"
8691			"\x48\xbf\x07\xec\x1b\x13\xbe\x2b"
8692			"\xa1\x57\x2b\xd5\xab\xd7\xd0\x4c"
8693			"\x1e\xcb\x71\x9b\xc5\x90\x85\xd3"
8694			"\xde\x59\xec\x71\xeb\x89\xbb\xd0"
8695			"\x09\x50\xe1\x16\x3f\xfd\x1c\x34"
8696			"\xc3\x1c\xa1\x10\x77\x53\x98\xef"
8697			"\xf2\xfd\xa5\x01\x59\xc2\x9b\x26"
8698			"\xc7\x42\xd9\x49\xda\x58\x2b\x6e"
8699			"\x9f\x53\x19\x76\x7e\xd9\xc9\x0e"
8700			"\x68\xc8\x7f\x51\x22\x42\xef\x49"
8701			"\xa4\x55\xb6\x36\xac\x09\xc7\x31"
8702			"\x88\x15\x4b\x2e\x8f\x3a\x08\xf7"
8703			"\xd8\xf7\xa8\xc5\xa9\x33\xa6\x45"
8704			"\xe4\xc4\x94\x76\xf3\x0d\x8f\x7e"
8705			"\xc8\xf6\xbc\x23\x0a\xb6\x4c\xd3"
8706			"\x6a\xcd\x36\xc2\x90\x5c\x5c\x3c"
8707			"\x65\x7b\xc2\xd6\xcc\xe6\x0d\x87"
8708			"\x73\x2e\x71\x79\x16\x06\x63\x28"
8709			"\x09\x15\xd8\x89\x38\x38\x3d\xb5"
8710			"\x42\x1c\x08\x24\xf7\x2a\xd2\x9d"
8711			"\xc8\xca\xef\xf9\x27\xd8\x07\x86"
8712			"\xf7\x43\x0b\x55\x15\x3f\x9f\x83"
8713			"\xef\xdc\x49\x9d\x2a\xc1\x54\x62"
8714			"\xbd\x9b\x66\x55\x9f\xb7\x12\xf3"
8715			"\x1b\x4d\x9d\x2a\x5c\xed\x87\x75"
8716			"\x87\x26\xec\x61\x2c\xb4\x0f\x89"
8717			"\xb0\xfb\x2e\x68\x5d\x15\xc7\x8d"
8718			"\x2e\xc0\xd9\xec\xaf\x4f\xd2\x25"
8719			"\x29\xe8\xd2\x26\x2b\x67\xe9\xfc"
8720			"\x2b\xa8\x67\x96\x12\x1f\x5b\x96"
8721			"\xc6\x14\x53\xaf\x44\xea\xd6\xe2"
8722			"\x94\x98\xe4\x12\x93\x4c\x92\xe0"
8723			"\x18\xa5\x8d\x2d\xe4\x71\x3c\x47"
8724			"\x4c\xf7\xe6\x47\x9e\xc0\x68\xdf"
8725			"\xd4\xf5\x5a\x74\xb1\x2b\x29\x03"
8726			"\x19\x07\xaf\x90\x62\x5c\x68\x98"
8727			"\x48\x16\x11\x02\x9d\xee\xb4\x9b"
8728			"\xe5\x42\x7f\x08\xfd\x16\x32\x0b"
8729			"\xd0\xb3\xfa\x2b\xb7\x99\xf9\x29"
8730			"\xcd\x20\x45\x9f\xb3\x1a\x5d\xa2"
8731			"\xaf\x4d\xe0\xbd\x42\x0d\xbc\x74"
8732			"\x99\x9c\x8e\x53\x1a\xb4\x3e\xbd"
8733			"\xa2\x9a\x2d\xf7\xf8\x39\x0f\x67"
8734			"\x63\xfc\x6b\xc0\xaf\xb3\x4b\x4f"
8735			"\x55\xc4\xcf\xa7\xc8\x04\x11\x3e"
8736			"\x14\x32\xbb\x1b\x38\x77\xd6\x7f"
8737			"\x54\x4c\xdf\x75\xf3\x07\x2d\x33"
8738			"\x9b\xa8\x20\xe1\x7b\x12\xb5\xf3"
8739			"\xef\x2f\xce\x72\xe5\x24\x60\xc1"
8740			"\x30\xe2\xab\xa1\x8e\x11\x09\xa8"
8741			"\x21\x33\x44\xfe\x7f\x35\x32\x93"
8742			"\x39\xa7\xad\x8b\x79\x06\xb2\xcb"
8743			"\x4e\xa9\x5f\xc7\xba\x74\x29\xec"
8744			"\x93\xa0\x4e\x54\x93\xc0\xbc\x55"
8745			"\x64\xf0\x48\xe5\x57\x99\xee\x75"
8746			"\xd6\x79\x0f\x66\xb7\xc6\x57\x76"
8747			"\xf7\xb7\xf3\x9c\xc5\x60\xe8\x7f"
8748			"\x83\x76\xd6\x0e\xaa\xe6\x90\x39"
8749			"\x1d\xa6\x32\x6a\x34\xe3\x55\xf8"
8750			"\x58\xa0\x58\x7d\x33\xe0\x22\x39"
8751			"\x44\x64\x87\x86\x5a\x2f\xa7\x7e"
8752			"\x0f\x38\xea\xb0\x30\xcc\x61\xa5"
8753			"\x6a\x32\xae\x1e\xf7\xe9\xd0\xa9"
8754			"\x0c\x32\x4b\xb5\x49\x28\xab\x85"
8755			"\x2f\x8e\x01\x36\x38\x52\xd0\xba"
8756			"\xd6\x02\x78\xf8\x0e\x3e\x9c\x8b"
8757			"\x6b\x45\x99\x3f\x5c\xfe\x58\xf1"
8758			"\x5c\x94\x04\xe1\xf5\x18\x6d\x51"
8759			"\xb2\x5d\x18\x20\xb6\xc2\x9a\x42"
8760			"\x1d\xb3\xab\x3c\xb6\x3a\x13\x03"
8761			"\xb2\x46\x82\x4f\xfc\x64\xbc\x4f"
8762			"\xca\xfa\x9c\xc0\xd5\xa7\xbd\x11"
8763			"\xb7\xe4\x5a\xf6\x6f\x4d\x4d\x54"
8764			"\xea\xa4\x98\x66\xd4\x22\x3b\xd3"
8765			"\x8f\x34\x47\xd9\x7c\xf4\x72\x3b"
8766			"\x4d\x02\x77\xf6\xd6\xdd\x08\x0a"
8767			"\x81\xe1\x86\x89\x3e\x56\x10\x3c"
8768			"\xba\xd7\x81\x8c\x08\xbc\x8b\xe2"
8769			"\x53\xec\xa7\x89\xee\xc8\x56\xb5"
8770			"\x36\x2c\xb2\x03\xba\x99\xdd\x7c"
8771			"\x48\xa0\xb0\xbc\x91\x33\xe9\xa8"
8772			"\xcb\xcd\xcf\x59\x5f\x1f\x15\xe2"
8773			"\x56\xf5\x4e\x01\x35\x27\x45\x77"
8774			"\x47\xc8\xbc\xcb\x7e\x39\xc1\x97"
8775			"\x28\xd3\x84\xfc\x2c\x3e\xc8\xad"
8776			"\x9c\xf8\x8a\x61\x9c\x28\xaa\xc5"
8777			"\x99\x20\x43\x85\x9d\xa5\xe2\x8b"
8778			"\xb8\xae\xeb\xd0\x32\x0d\x52\x78"
8779			"\x09\x56\x3f\xc7\xd8\x7e\x26\xfc"
8780			"\x37\xfb\x6f\x04\xfc\xfa\x92\x10"
8781			"\xac\xf8\x3e\x21\xdc\x8c\x21\x16"
8782			"\x7d\x67\x6e\xf6\xcd\xda\xb6\x98"
8783			"\x23\xab\x23\x3c\xb2\x10\xa0\x53"
8784			"\x5a\x56\x9f\xc5\xd0\xff\xbb\xe4"
8785			"\x98\x3c\x69\x1e\xdb\x38\x8f\x7e"
8786			"\x0f\xd2\x98\x88\x81\x8b\x45\x67"
8787			"\xea\x33\xf1\xeb\xe9\x97\x55\x2e"
8788			"\xd9\xaa\xeb\x5a\xec\xda\xe1\x68"
8789			"\xa8\x9d\x3c\x84\x7c\x05\x3d\x62"
8790			"\x87\x8f\x03\x21\x28\x95\x0c\x89"
8791			"\x25\x22\x4a\xb0\x93\xa9\x50\xa2"
8792			"\x2f\x57\x6e\x18\x42\x19\x54\x0c"
8793			"\x55\x67\xc6\x11\x49\xf4\x5c\xd2"
8794			"\xe9\x3d\xdd\x8b\x48\x71\x21\x00"
8795			"\xc3\x9a\x6c\x85\x74\x28\x83\x4a"
8796			"\x1b\x31\x05\xe1\x06\x92\xe7\xda"
8797			"\x85\x73\x78\x45\x20\x7f\xae\x13"
8798			"\x7c\x33\x06\x22\xf4\x83\xf9\x35"
8799			"\x3f\x6c\x71\xa8\x4e\x48\xbe\x9b"
8800			"\xce\x8a\xba\xda\xbe\x28\x08\xf7"
8801			"\xe2\x14\x8c\x71\xea\x72\xf9\x33"
8802			"\xf2\x88\x3f\xd7\xbb\x69\x6c\x29"
8803			"\x19\xdc\x84\xce\x1f\x12\x4f\xc8"
8804			"\xaf\xa5\x04\xba\x5a\xab\xb0\xd9"
8805			"\x14\x1f\x6c\x68\x98\x39\x89\x7a"
8806			"\xd9\xd8\x2f\xdf\xa8\x47\x4a\x25"
8807			"\xe2\xfb\x33\xf4\x59\x78\xe1\x68"
8808			"\x85\xcf\xfe\x59\x20\xd4\x05\x1d"
8809			"\x80\x99\xae\xbc\xca\xae\x0f\x2f"
8810			"\x65\x43\x34\x8e\x7e\xac\xd3\x93"
8811			"\x2f\xac\x6d\x14\x3d\x02\x07\x70"
8812			"\x9d\xa4\xf3\x1b\x5c\x36\xfc\x01"
8813			"\x73\x34\x85\x0c\x6c\xd6\xf1\xbd"
8814			"\x3f\xdf\xee\xf5\xd9\xba\x56\xef"
8815			"\xf4\x9b\x6b\xee\x9f\x5a\x78\x6d"
8816			"\x32\x19\xf4\xf7\xf8\x4c\x69\x0b"
8817			"\x4b\xbc\xbb\xb7\xf2\x85\xaf\x70"
8818			"\x75\x24\x6c\x54\xa7\x0e\x4d\x1d"
8819			"\x01\xbf\x08\xac\xcf\x7f\x2c\xe3"
8820			"\x14\x89\x5e\x70\x5a\x99\x92\xcd"
8821			"\x01\x84\xc8\xd2\xab\xe5\x4f\x58"
8822			"\xe7\x0f\x2f\x0e\xff\x68\xea\xfd"
8823			"\x15\xb3\x17\xe6\xb0\xe7\x85\xd8"
8824			"\x23\x2e\x05\xc7\xc9\xc4\x46\x1f"
8825			"\xe1\x9e\x49\x20\x23\x24\x4d\x7e"
8826			"\x29\x65\xff\xf4\xb6\xfd\x1a\x85"
8827			"\xc4\x16\xec\xfc\xea\x7b\xd6\x2c"
8828			"\x43\xf8\xb7\xbf\x79\xc0\x85\xcd"
8829			"\xef\xe1\x98\xd3\xa5\xf7\x90\x8c"
8830			"\xe9\x7f\x80\x6b\xd2\xac\x4c\x30"
8831			"\xa7\xc6\x61\x6c\xd2\xf9\x2c\xff"
8832			"\x30\xbc\x22\x81\x7d\x93\x12\xe4"
8833			"\x0a\xcd\xaf\xdd\xe8\xab\x0a\x1e"
8834			"\x13\xa4\x27\xc3\x5f\xf7\x4b\xbb"
8835			"\x37\x09\x4b\x91\x6f\x92\x4f\xaf"
8836			"\x52\xee\xdf\xef\x09\x6f\xf7\x5c"
8837			"\x6e\x12\x17\x72\x63\x57\xc7\xba"
8838			"\x3b\x6b\x38\x32\x73\x1b\x9c\x80"
8839			"\xc1\x7a\xc6\xcf\xcd\x35\xc0\x6b"
8840			"\x31\x1a\x6b\xe9\xd8\x2c\x29\x3f"
8841			"\x96\xfb\xb6\xcd\x13\x91\x3b\xc2"
8842			"\xd2\xa3\x31\x8d\xa4\xcd\x57\xcd"
8843			"\x13\x3d\x64\xfd\x06\xce\xe6\xdc"
8844			"\x0c\x24\x43\x31\x40\x57\xf1\x72"
8845			"\x17\xe3\x3a\x63\x6d\x35\xcf\x5d"
8846			"\x97\x40\x59\xdd\xf7\x3c\x02\xf7"
8847			"\x1c\x7e\x05\xbb\xa9\x0d\x01\xb1"
8848			"\x8e\xc0\x30\xa9\x53\x24\xc9\x89"
8849			"\x84\x6d\xaa\xd0\xcd\x91\xc2\x4d"
8850			"\x91\xb0\x89\xe2\xbf\x83\x44\xaa"
8851			"\x28\x72\x23\xa0\xc2\xad\xad\x1c"
8852			"\xfc\x3f\x09\x7a\x0b\xdc\xc5\x1b"
8853			"\x87\x13\xc6\x5b\x59\x8d\xf2\xc8"
8854			"\xaf\xdf\x11\x95",
8855		.rlen	= 4100,
8856		.np	= 2,
8857		.tap	= { 4064, 36 },
8858	},
8859};
8860
8861/*
8862 * CTS (Cipher Text Stealing) mode tests
8863 */
8864#define CTS_MODE_ENC_TEST_VECTORS 6
8865#define CTS_MODE_DEC_TEST_VECTORS 6
8866static struct cipher_testvec cts_mode_enc_tv_template[] = {
8867	{ /* from rfc3962 */
8868		.klen	= 16,
8869		.key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8870			  "\x74\x65\x72\x69\x79\x61\x6b\x69",
8871		.ilen	= 17,
8872		.input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8873			  "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8874			  "\x20",
8875		.rlen	= 17,
8876		.result	= "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4"
8877			  "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f"
8878			  "\x97",
8879	}, {
8880		.klen	= 16,
8881		.key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8882			  "\x74\x65\x72\x69\x79\x61\x6b\x69",
8883		.ilen   = 31,
8884		.input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8885			  "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8886			  "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8887			  "\x20\x47\x61\x75\x27\x73\x20",
8888		.rlen   = 31,
8889		.result = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1"
8890			  "\xd4\x45\xd4\xc8\xef\xf7\xed\x22"
8891			  "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8892			  "\xc0\x7b\x25\xe2\x5e\xcf\xe5",
8893	}, {
8894		.klen	= 16,
8895		.key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8896			  "\x74\x65\x72\x69\x79\x61\x6b\x69",
8897		.ilen   = 32,
8898		.input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8899			  "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8900			  "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8901			  "\x20\x47\x61\x75\x27\x73\x20\x43",
8902		.rlen   = 32,
8903		.result = "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8904			  "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8905			  "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8906			  "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84",
8907	}, {
8908		.klen	= 16,
8909		.key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8910			  "\x74\x65\x72\x69\x79\x61\x6b\x69",
8911		.ilen   = 47,
8912		.input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8913			  "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8914			  "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8915			  "\x20\x47\x61\x75\x27\x73\x20\x43"
8916			  "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8917			  "\x70\x6c\x65\x61\x73\x65\x2c",
8918		.rlen   = 47,
8919		.result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8920			  "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8921			  "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c"
8922			  "\x1b\x55\x49\xd2\xf8\x38\x02\x9e"
8923			  "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8924			  "\xbe\x7f\xcb\xcc\x98\xeb\xf5",
8925	}, {
8926		.klen	= 16,
8927		.key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8928			  "\x74\x65\x72\x69\x79\x61\x6b\x69",
8929		.ilen   = 48,
8930		.input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8931			  "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8932			  "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8933			  "\x20\x47\x61\x75\x27\x73\x20\x43"
8934			  "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8935			  "\x70\x6c\x65\x61\x73\x65\x2c\x20",
8936		.rlen   = 48,
8937		.result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8938			  "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8939			  "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8940			  "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8"
8941			  "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8942			  "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8",
8943	}, {
8944		.klen	= 16,
8945		.key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8946			  "\x74\x65\x72\x69\x79\x61\x6b\x69",
8947		.ilen   = 64,
8948		.input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8949			  "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8950			  "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8951			  "\x20\x47\x61\x75\x27\x73\x20\x43"
8952			  "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8953			  "\x70\x6c\x65\x61\x73\x65\x2c\x20"
8954			  "\x61\x6e\x64\x20\x77\x6f\x6e\x74"
8955			  "\x6f\x6e\x20\x73\x6f\x75\x70\x2e",
8956		.rlen   = 64,
8957		.result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8958			  "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8959			  "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8960			  "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8961			  "\x48\x07\xef\xe8\x36\xee\x89\xa5"
8962			  "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40"
8963			  "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8964			  "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8",
8965	}
8966};
8967
8968static struct cipher_testvec cts_mode_dec_tv_template[] = {
8969	{ /* from rfc3962 */
8970		.klen	= 16,
8971		.key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8972			  "\x74\x65\x72\x69\x79\x61\x6b\x69",
8973		.rlen	= 17,
8974		.result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8975			  "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8976			  "\x20",
8977		.ilen	= 17,
8978		.input	= "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4"
8979			  "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f"
8980			  "\x97",
8981	}, {
8982		.klen	= 16,
8983		.key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8984			  "\x74\x65\x72\x69\x79\x61\x6b\x69",
8985		.rlen   = 31,
8986		.result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8987			  "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8988			  "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8989			  "\x20\x47\x61\x75\x27\x73\x20",
8990		.ilen   = 31,
8991		.input  = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1"
8992			  "\xd4\x45\xd4\xc8\xef\xf7\xed\x22"
8993			  "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8994			  "\xc0\x7b\x25\xe2\x5e\xcf\xe5",
8995	}, {
8996		.klen	= 16,
8997		.key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8998			  "\x74\x65\x72\x69\x79\x61\x6b\x69",
8999		.rlen   = 32,
9000		.result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9001			  "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9002			  "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9003			  "\x20\x47\x61\x75\x27\x73\x20\x43",
9004		.ilen   = 32,
9005		.input  = "\x39\x31\x25\x23\xa7\x86\x62\xd5"
9006			  "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
9007			  "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9008			  "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84",
9009	}, {
9010		.klen	= 16,
9011		.key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9012			  "\x74\x65\x72\x69\x79\x61\x6b\x69",
9013		.rlen   = 47,
9014		.result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9015			  "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9016			  "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9017			  "\x20\x47\x61\x75\x27\x73\x20\x43"
9018			  "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
9019			  "\x70\x6c\x65\x61\x73\x65\x2c",
9020		.ilen   = 47,
9021		.input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9022			  "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
9023			  "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c"
9024			  "\x1b\x55\x49\xd2\xf8\x38\x02\x9e"
9025			  "\x39\x31\x25\x23\xa7\x86\x62\xd5"
9026			  "\xbe\x7f\xcb\xcc\x98\xeb\xf5",
9027	}, {
9028		.klen	= 16,
9029		.key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9030			  "\x74\x65\x72\x69\x79\x61\x6b\x69",
9031		.rlen   = 48,
9032		.result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9033			  "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9034			  "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9035			  "\x20\x47\x61\x75\x27\x73\x20\x43"
9036			  "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
9037			  "\x70\x6c\x65\x61\x73\x65\x2c\x20",
9038		.ilen   = 48,
9039		.input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9040			  "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
9041			  "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
9042			  "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8"
9043			  "\x39\x31\x25\x23\xa7\x86\x62\xd5"
9044			  "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8",
9045	}, {
9046		.klen	= 16,
9047		.key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
9048			  "\x74\x65\x72\x69\x79\x61\x6b\x69",
9049		.rlen   = 64,
9050		.result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
9051			  "\x6c\x69\x6b\x65\x20\x74\x68\x65"
9052			  "\x20\x47\x65\x6e\x65\x72\x61\x6c"
9053			  "\x20\x47\x61\x75\x27\x73\x20\x43"
9054			  "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
9055			  "\x70\x6c\x65\x61\x73\x65\x2c\x20"
9056			  "\x61\x6e\x64\x20\x77\x6f\x6e\x74"
9057			  "\x6f\x6e\x20\x73\x6f\x75\x70\x2e",
9058		.ilen   = 64,
9059		.input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
9060			  "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
9061			  "\x39\x31\x25\x23\xa7\x86\x62\xd5"
9062			  "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
9063			  "\x48\x07\xef\xe8\x36\xee\x89\xa5"
9064			  "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40"
9065			  "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
9066			  "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8",
9067	}
9068};
9069
9070/*
9071 * Compression stuff.
9072 */
9073#define COMP_BUF_SIZE           512
9074
9075struct comp_testvec {
9076	int inlen, outlen;
9077	char input[COMP_BUF_SIZE];
9078	char output[COMP_BUF_SIZE];
9079};
9080
9081struct pcomp_testvec {
9082	void *params;
9083	unsigned int paramsize;
9084	int inlen, outlen;
9085	char input[COMP_BUF_SIZE];
9086	char output[COMP_BUF_SIZE];
9087};
9088
9089/*
9090 * Deflate test vectors (null-terminated strings).
9091 * Params: winbits=-11, Z_DEFAULT_COMPRESSION, MAX_MEM_LEVEL.
9092 */
9093
9094#define DEFLATE_COMP_TEST_VECTORS 2
9095#define DEFLATE_DECOMP_TEST_VECTORS 2
9096
9097static struct comp_testvec deflate_comp_tv_template[] = {
9098	{
9099		.inlen	= 70,
9100		.outlen	= 38,
9101		.input	= "Join us now and share the software "
9102			"Join us now and share the software ",
9103		.output	= "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
9104			  "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
9105			  "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
9106			  "\x48\x55\x28\xce\x4f\x2b\x29\x07"
9107			  "\x71\xbc\x08\x2b\x01\x00",
9108	}, {
9109		.inlen	= 191,
9110		.outlen	= 122,
9111		.input	= "This document describes a compression method based on the DEFLATE"
9112			"compression algorithm.  This document defines the application of "
9113			"the DEFLATE algorithm to the IP Payload Compression Protocol.",
9114		.output	= "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
9115			  "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
9116			  "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
9117			  "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
9118			  "\x68\x12\x51\xae\x76\x67\xd6\x27"
9119			  "\x19\x88\x1a\xde\x85\xab\x21\xf2"
9120			  "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
9121			  "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
9122			  "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
9123			  "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
9124			  "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
9125			  "\x52\x37\xed\x0e\x52\x6b\x59\x02"
9126			  "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
9127			  "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
9128			  "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
9129			  "\xfa\x02",
9130	},
9131};
9132
9133static struct comp_testvec deflate_decomp_tv_template[] = {
9134	{
9135		.inlen	= 122,
9136		.outlen	= 191,
9137		.input	= "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
9138			  "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
9139			  "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
9140			  "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
9141			  "\x68\x12\x51\xae\x76\x67\xd6\x27"
9142			  "\x19\x88\x1a\xde\x85\xab\x21\xf2"
9143			  "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
9144			  "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
9145			  "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
9146			  "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
9147			  "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
9148			  "\x52\x37\xed\x0e\x52\x6b\x59\x02"
9149			  "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
9150			  "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
9151			  "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
9152			  "\xfa\x02",
9153		.output	= "This document describes a compression method based on the DEFLATE"
9154			"compression algorithm.  This document defines the application of "
9155			"the DEFLATE algorithm to the IP Payload Compression Protocol.",
9156	}, {
9157		.inlen	= 38,
9158		.outlen	= 70,
9159		.input	= "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
9160			  "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
9161			  "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
9162			  "\x48\x55\x28\xce\x4f\x2b\x29\x07"
9163			  "\x71\xbc\x08\x2b\x01\x00",
9164		.output	= "Join us now and share the software "
9165			"Join us now and share the software ",
9166	},
9167};
9168
9169#define ZLIB_COMP_TEST_VECTORS 2
9170#define ZLIB_DECOMP_TEST_VECTORS 2
9171
9172static const struct {
9173	struct nlattr nla;
9174	int val;
9175} deflate_comp_params[] = {
9176	{
9177		.nla = {
9178			.nla_len	= NLA_HDRLEN + sizeof(int),
9179			.nla_type	= ZLIB_COMP_LEVEL,
9180		},
9181		.val			= Z_DEFAULT_COMPRESSION,
9182	}, {
9183		.nla = {
9184			.nla_len	= NLA_HDRLEN + sizeof(int),
9185			.nla_type	= ZLIB_COMP_METHOD,
9186		},
9187		.val			= Z_DEFLATED,
9188	}, {
9189		.nla = {
9190			.nla_len	= NLA_HDRLEN + sizeof(int),
9191			.nla_type	= ZLIB_COMP_WINDOWBITS,
9192		},
9193		.val			= -11,
9194	}, {
9195		.nla = {
9196			.nla_len	= NLA_HDRLEN + sizeof(int),
9197			.nla_type	= ZLIB_COMP_MEMLEVEL,
9198		},
9199		.val			= MAX_MEM_LEVEL,
9200	}, {
9201		.nla = {
9202			.nla_len	= NLA_HDRLEN + sizeof(int),
9203			.nla_type	= ZLIB_COMP_STRATEGY,
9204		},
9205		.val			= Z_DEFAULT_STRATEGY,
9206	}
9207};
9208
9209static const struct {
9210	struct nlattr nla;
9211	int val;
9212} deflate_decomp_params[] = {
9213	{
9214		.nla = {
9215			.nla_len	= NLA_HDRLEN + sizeof(int),
9216			.nla_type	= ZLIB_DECOMP_WINDOWBITS,
9217		},
9218		.val			= -11,
9219	}
9220};
9221
9222static struct pcomp_testvec zlib_comp_tv_template[] = {
9223	{
9224		.params = &deflate_comp_params,
9225		.paramsize = sizeof(deflate_comp_params),
9226		.inlen	= 70,
9227		.outlen	= 38,
9228		.input	= "Join us now and share the software "
9229			"Join us now and share the software ",
9230		.output	= "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
9231			  "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
9232			  "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
9233			  "\x48\x55\x28\xce\x4f\x2b\x29\x07"
9234			  "\x71\xbc\x08\x2b\x01\x00",
9235	}, {
9236		.params = &deflate_comp_params,
9237		.paramsize = sizeof(deflate_comp_params),
9238		.inlen	= 191,
9239		.outlen	= 122,
9240		.input	= "This document describes a compression method based on the DEFLATE"
9241			"compression algorithm.  This document defines the application of "
9242			"the DEFLATE algorithm to the IP Payload Compression Protocol.",
9243		.output	= "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
9244			  "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
9245			  "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
9246			  "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
9247			  "\x68\x12\x51\xae\x76\x67\xd6\x27"
9248			  "\x19\x88\x1a\xde\x85\xab\x21\xf2"
9249			  "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
9250			  "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
9251			  "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
9252			  "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
9253			  "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
9254			  "\x52\x37\xed\x0e\x52\x6b\x59\x02"
9255			  "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
9256			  "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
9257			  "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
9258			  "\xfa\x02",
9259	},
9260};
9261
9262static struct pcomp_testvec zlib_decomp_tv_template[] = {
9263	{
9264		.params = &deflate_decomp_params,
9265		.paramsize = sizeof(deflate_decomp_params),
9266		.inlen	= 122,
9267		.outlen	= 191,
9268		.input	= "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
9269			  "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
9270			  "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
9271			  "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
9272			  "\x68\x12\x51\xae\x76\x67\xd6\x27"
9273			  "\x19\x88\x1a\xde\x85\xab\x21\xf2"
9274			  "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
9275			  "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
9276			  "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
9277			  "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
9278			  "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
9279			  "\x52\x37\xed\x0e\x52\x6b\x59\x02"
9280			  "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
9281			  "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
9282			  "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
9283			  "\xfa\x02",
9284		.output	= "This document describes a compression method based on the DEFLATE"
9285			"compression algorithm.  This document defines the application of "
9286			"the DEFLATE algorithm to the IP Payload Compression Protocol.",
9287	}, {
9288		.params = &deflate_decomp_params,
9289		.paramsize = sizeof(deflate_decomp_params),
9290		.inlen	= 38,
9291		.outlen	= 70,
9292		.input	= "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
9293			  "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
9294			  "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
9295			  "\x48\x55\x28\xce\x4f\x2b\x29\x07"
9296			  "\x71\xbc\x08\x2b\x01\x00",
9297		.output	= "Join us now and share the software "
9298			"Join us now and share the software ",
9299	},
9300};
9301
9302/*
9303 * LZO test vectors (null-terminated strings).
9304 */
9305#define LZO_COMP_TEST_VECTORS 2
9306#define LZO_DECOMP_TEST_VECTORS 2
9307
9308static struct comp_testvec lzo_comp_tv_template[] = {
9309	{
9310		.inlen	= 70,
9311		.outlen	= 46,
9312		.input	= "Join us now and share the software "
9313			"Join us now and share the software ",
9314		.output	= "\x00\x0d\x4a\x6f\x69\x6e\x20\x75"
9315			"\x73\x20\x6e\x6f\x77\x20\x61\x6e"
9316			"\x64\x20\x73\x68\x61\x72\x65\x20"
9317			"\x74\x68\x65\x20\x73\x6f\x66\x74"
9318			"\x77\x70\x01\x01\x4a\x6f\x69\x6e"
9319			"\x3d\x88\x00\x11\x00\x00",
9320	}, {
9321		.inlen	= 159,
9322		.outlen	= 133,
9323		.input	= "This document describes a compression method based on the LZO "
9324			"compression algorithm.  This document defines the application of "
9325			"the LZO algorithm used in UBIFS.",
9326		.output	= "\x00\x2b\x54\x68\x69\x73\x20\x64"
9327			  "\x6f\x63\x75\x6d\x65\x6e\x74\x20"
9328			  "\x64\x65\x73\x63\x72\x69\x62\x65"
9329			  "\x73\x20\x61\x20\x63\x6f\x6d\x70"
9330			  "\x72\x65\x73\x73\x69\x6f\x6e\x20"
9331			  "\x6d\x65\x74\x68\x6f\x64\x20\x62"
9332			  "\x61\x73\x65\x64\x20\x6f\x6e\x20"
9333			  "\x74\x68\x65\x20\x4c\x5a\x4f\x2b"
9334			  "\x8c\x00\x0d\x61\x6c\x67\x6f\x72"
9335			  "\x69\x74\x68\x6d\x2e\x20\x20\x54"
9336			  "\x68\x69\x73\x2a\x54\x01\x02\x66"
9337			  "\x69\x6e\x65\x73\x94\x06\x05\x61"
9338			  "\x70\x70\x6c\x69\x63\x61\x74\x76"
9339			  "\x0a\x6f\x66\x88\x02\x60\x09\x27"
9340			  "\xf0\x00\x0c\x20\x75\x73\x65\x64"
9341			  "\x20\x69\x6e\x20\x55\x42\x49\x46"
9342			  "\x53\x2e\x11\x00\x00",
9343	},
9344};
9345
9346static struct comp_testvec lzo_decomp_tv_template[] = {
9347	{
9348		.inlen	= 133,
9349		.outlen	= 159,
9350		.input	= "\x00\x2b\x54\x68\x69\x73\x20\x64"
9351			  "\x6f\x63\x75\x6d\x65\x6e\x74\x20"
9352			  "\x64\x65\x73\x63\x72\x69\x62\x65"
9353			  "\x73\x20\x61\x20\x63\x6f\x6d\x70"
9354			  "\x72\x65\x73\x73\x69\x6f\x6e\x20"
9355			  "\x6d\x65\x74\x68\x6f\x64\x20\x62"
9356			  "\x61\x73\x65\x64\x20\x6f\x6e\x20"
9357			  "\x74\x68\x65\x20\x4c\x5a\x4f\x2b"
9358			  "\x8c\x00\x0d\x61\x6c\x67\x6f\x72"
9359			  "\x69\x74\x68\x6d\x2e\x20\x20\x54"
9360			  "\x68\x69\x73\x2a\x54\x01\x02\x66"
9361			  "\x69\x6e\x65\x73\x94\x06\x05\x61"
9362			  "\x70\x70\x6c\x69\x63\x61\x74\x76"
9363			  "\x0a\x6f\x66\x88\x02\x60\x09\x27"
9364			  "\xf0\x00\x0c\x20\x75\x73\x65\x64"
9365			  "\x20\x69\x6e\x20\x55\x42\x49\x46"
9366			  "\x53\x2e\x11\x00\x00",
9367		.output	= "This document describes a compression method based on the LZO "
9368			"compression algorithm.  This document defines the application of "
9369			"the LZO algorithm used in UBIFS.",
9370	}, {
9371		.inlen	= 46,
9372		.outlen	= 70,
9373		.input	= "\x00\x0d\x4a\x6f\x69\x6e\x20\x75"
9374			  "\x73\x20\x6e\x6f\x77\x20\x61\x6e"
9375			  "\x64\x20\x73\x68\x61\x72\x65\x20"
9376			  "\x74\x68\x65\x20\x73\x6f\x66\x74"
9377			  "\x77\x70\x01\x01\x4a\x6f\x69\x6e"
9378			  "\x3d\x88\x00\x11\x00\x00",
9379		.output	= "Join us now and share the software "
9380			"Join us now and share the software ",
9381	},
9382};
9383
9384/*
9385 * Michael MIC test vectors from IEEE 802.11i
9386 */
9387#define MICHAEL_MIC_TEST_VECTORS 6
9388
9389static struct hash_testvec michael_mic_tv_template[] = {
9390	{
9391		.key = "\x00\x00\x00\x00\x00\x00\x00\x00",
9392		.ksize = 8,
9393		.plaintext = zeroed_string,
9394		.psize = 0,
9395		.digest = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8",
9396	},
9397	{
9398		.key = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8",
9399		.ksize = 8,
9400		.plaintext = "M",
9401		.psize = 1,
9402		.digest = "\x43\x47\x21\xca\x40\x63\x9b\x3f",
9403	},
9404	{
9405		.key = "\x43\x47\x21\xca\x40\x63\x9b\x3f",
9406		.ksize = 8,
9407		.plaintext = "Mi",
9408		.psize = 2,
9409		.digest = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29",
9410	},
9411	{
9412		.key = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29",
9413		.ksize = 8,
9414		.plaintext = "Mic",
9415		.psize = 3,
9416		.digest = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb",
9417	},
9418	{
9419		.key = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb",
9420		.ksize = 8,
9421		.plaintext = "Mich",
9422		.psize = 4,
9423		.digest = "\xd5\x5e\x10\x05\x10\x12\x89\x86",
9424	},
9425	{
9426		.key = "\xd5\x5e\x10\x05\x10\x12\x89\x86",
9427		.ksize = 8,
9428		.plaintext = "Michael",
9429		.psize = 7,
9430		.digest = "\x0a\x94\x2b\x12\x4e\xca\xa5\x46",
9431	}
9432};
9433
9434/*
9435 * CRC32C test vectors
9436 */
9437#define CRC32C_TEST_VECTORS 14
9438
9439static struct hash_testvec crc32c_tv_template[] = {
9440	{
9441		.psize = 0,
9442		.digest = "\x00\x00\x00\x00",
9443	},
9444	{
9445		.key = "\x87\xa9\xcb\xed",
9446		.ksize = 4,
9447		.psize = 0,
9448		.digest = "\x78\x56\x34\x12",
9449	},
9450	{
9451		.key = "\xff\xff\xff\xff",
9452		.ksize = 4,
9453		.plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08"
9454			     "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
9455			     "\x11\x12\x13\x14\x15\x16\x17\x18"
9456			     "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
9457			     "\x21\x22\x23\x24\x25\x26\x27\x28",
9458		.psize = 40,
9459		.digest = "\x7f\x15\x2c\x0e",
9460	},
9461	{
9462		.key = "\xff\xff\xff\xff",
9463		.ksize = 4,
9464		.plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
9465			     "\x31\x32\x33\x34\x35\x36\x37\x38"
9466			     "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
9467			     "\x41\x42\x43\x44\x45\x46\x47\x48"
9468			     "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50",
9469		.psize = 40,
9470		.digest = "\xf6\xeb\x80\xe9",
9471	},
9472	{
9473		.key = "\xff\xff\xff\xff",
9474		.ksize = 4,
9475		.plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58"
9476			     "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
9477			     "\x61\x62\x63\x64\x65\x66\x67\x68"
9478			     "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
9479			     "\x71\x72\x73\x74\x75\x76\x77\x78",
9480		.psize = 40,
9481		.digest = "\xed\xbd\x74\xde",
9482	},
9483	{
9484		.key = "\xff\xff\xff\xff",
9485		.ksize = 4,
9486		.plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
9487			     "\x81\x82\x83\x84\x85\x86\x87\x88"
9488			     "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
9489			     "\x91\x92\x93\x94\x95\x96\x97\x98"
9490			     "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0",
9491		.psize = 40,
9492		.digest = "\x62\xc8\x79\xd5",
9493	},
9494	{
9495		.key = "\xff\xff\xff\xff",
9496		.ksize = 4,
9497		.plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
9498			     "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
9499			     "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
9500			     "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
9501			     "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8",
9502		.psize = 40,
9503		.digest = "\xd0\x9a\x97\xba",
9504	},
9505	{
9506		.key = "\xff\xff\xff\xff",
9507		.ksize = 4,
9508		.plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
9509			     "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
9510			     "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
9511			     "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
9512			     "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
9513		.psize = 40,
9514		.digest = "\x13\xd9\x29\x2b",
9515	},
9516	{
9517		.key = "\x80\xea\xd3\xf1",
9518		.ksize = 4,
9519		.plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
9520			     "\x31\x32\x33\x34\x35\x36\x37\x38"
9521			     "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
9522			     "\x41\x42\x43\x44\x45\x46\x47\x48"
9523			     "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50",
9524		.psize = 40,
9525		.digest = "\x0c\xb5\xe2\xa2",
9526	},
9527	{
9528		.key = "\xf3\x4a\x1d\x5d",
9529		.ksize = 4,
9530		.plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58"
9531			     "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
9532			     "\x61\x62\x63\x64\x65\x66\x67\x68"
9533			     "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
9534			     "\x71\x72\x73\x74\x75\x76\x77\x78",
9535		.psize = 40,
9536		.digest = "\xd1\x7f\xfb\xa6",
9537	},
9538	{
9539		.key = "\x2e\x80\x04\x59",
9540		.ksize = 4,
9541		.plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
9542			     "\x81\x82\x83\x84\x85\x86\x87\x88"
9543			     "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
9544			     "\x91\x92\x93\x94\x95\x96\x97\x98"
9545			     "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0",
9546		.psize = 40,
9547		.digest = "\x59\x33\xe6\x7a",
9548	},
9549	{
9550		.key = "\xa6\xcc\x19\x85",
9551		.ksize = 4,
9552		.plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
9553			     "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
9554			     "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
9555			     "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
9556			     "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8",
9557		.psize = 40,
9558		.digest = "\xbe\x03\x01\xd2",
9559	},
9560	{
9561		.key = "\x41\xfc\xfe\x2d",
9562		.ksize = 4,
9563		.plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
9564			     "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
9565			     "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
9566			     "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
9567			     "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
9568		.psize = 40,
9569		.digest = "\x75\xd3\xc5\x24",
9570	},
9571	{
9572		.key = "\xff\xff\xff\xff",
9573		.ksize = 4,
9574		.plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08"
9575			     "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
9576			     "\x11\x12\x13\x14\x15\x16\x17\x18"
9577			     "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
9578			     "\x21\x22\x23\x24\x25\x26\x27\x28"
9579			     "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
9580			     "\x31\x32\x33\x34\x35\x36\x37\x38"
9581			     "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
9582			     "\x41\x42\x43\x44\x45\x46\x47\x48"
9583			     "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50"
9584			     "\x51\x52\x53\x54\x55\x56\x57\x58"
9585			     "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
9586			     "\x61\x62\x63\x64\x65\x66\x67\x68"
9587			     "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
9588			     "\x71\x72\x73\x74\x75\x76\x77\x78"
9589			     "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
9590			     "\x81\x82\x83\x84\x85\x86\x87\x88"
9591			     "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
9592			     "\x91\x92\x93\x94\x95\x96\x97\x98"
9593			     "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0"
9594			     "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
9595			     "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
9596			     "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
9597			     "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
9598			     "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8"
9599			     "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
9600			     "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
9601			     "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
9602			     "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
9603			     "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
9604		.psize = 240,
9605		.digest = "\x75\xd3\xc5\x24",
9606		.np = 2,
9607		.tap = { 31, 209 }
9608	},
9609};
9610
9611#endif	/* _CRYPTO_TESTMGR_H */
9612