crypto: testmgr - Add infrastructure for ansi_cprng self-tests
[pandora-kernel.git] / crypto / testmgr.h
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
29 struct 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
40 struct 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
54 struct 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
73 struct 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
85 static char zeroed_string[48];
86
87 /*
88  * MD4 test vectors from RFC1320
89  */
90 #define MD4_TEST_VECTORS        7
91
92 static 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
138 static 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
184 static 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
248 static 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
312 static 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
380 static 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
448 static 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
470 static 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
496 static 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
521 static 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
570 static 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
630 static 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
728 static 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
810 static 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
879 static 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
924 static 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
969 static 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 /*
1007  * HMAC-MD5 test vectors from RFC2202
1008  * (These need to be fixed to not use strlen).
1009  */
1010 #define HMAC_MD5_TEST_VECTORS   7
1011
1012 static struct hash_testvec hmac_md5_tv_template[] =
1013 {
1014         {
1015                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1016                 .ksize  = 16,
1017                 .plaintext = "Hi There",
1018                 .psize  = 8,
1019                 .digest = "\x92\x94\x72\x7a\x36\x38\xbb\x1c"
1020                           "\x13\xf4\x8e\xf8\x15\x8b\xfc\x9d",
1021         }, {
1022                 .key    = "Jefe",
1023                 .ksize  = 4,
1024                 .plaintext = "what do ya want for nothing?",
1025                 .psize  = 28,
1026                 .digest = "\x75\x0c\x78\x3e\x6a\xb0\xb5\x03"
1027                           "\xea\xa8\x6e\x31\x0a\x5d\xb7\x38",
1028                 .np     = 2,
1029                 .tap    = {14, 14}
1030         }, {
1031                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1032                 .ksize  = 16,
1033                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1034                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1035                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1036                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1037                 .psize  = 50,
1038                 .digest = "\x56\xbe\x34\x52\x1d\x14\x4c\x88"
1039                           "\xdb\xb8\xc7\x33\xf0\xe8\xb3\xf6",
1040         }, {
1041                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1042                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1043                           "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1044                 .ksize  = 25,
1045                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1046                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1047                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1048                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1049                 .psize  = 50,
1050                 .digest = "\x69\x7e\xaf\x0a\xca\x3a\x3a\xea"
1051                           "\x3a\x75\x16\x47\x46\xff\xaa\x79",
1052         }, {
1053                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1054                 .ksize  = 16,
1055                 .plaintext = "Test With Truncation",
1056                 .psize  = 20,
1057                 .digest = "\x56\x46\x1e\xf2\x34\x2e\xdc\x00"
1058                           "\xf9\xba\xb9\x95\x69\x0e\xfd\x4c",
1059         }, {
1060                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1061                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1062                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1063                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1064                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1065                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1066                         "\xaa\xaa",
1067                 .ksize  = 80,
1068                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1069                 .psize  = 54,
1070                 .digest = "\x6b\x1a\xb7\xfe\x4b\xd7\xbf\x8f"
1071                           "\x0b\x62\xe6\xce\x61\xb9\xd0\xcd",
1072         }, {
1073                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1074                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1075                         "\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",
1080                 .ksize  = 80,
1081                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1082                            "Block-Size Data",
1083                 .psize  = 73,
1084                 .digest = "\x6f\x63\x0f\xad\x67\xcd\xa0\xee"
1085                           "\x1f\xb1\xf5\x62\xdb\x3a\xa5\x3e",
1086         },
1087 };
1088
1089 /*
1090  * HMAC-RIPEMD128 test vectors from RFC2286
1091  */
1092 #define HMAC_RMD128_TEST_VECTORS        7
1093
1094 static struct hash_testvec hmac_rmd128_tv_template[] = {
1095         {
1096                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1097                 .ksize  = 16,
1098                 .plaintext = "Hi There",
1099                 .psize  = 8,
1100                 .digest = "\xfb\xf6\x1f\x94\x92\xaa\x4b\xbf"
1101                           "\x81\xc1\x72\xe8\x4e\x07\x34\xdb",
1102         }, {
1103                 .key    = "Jefe",
1104                 .ksize  = 4,
1105                 .plaintext = "what do ya want for nothing?",
1106                 .psize  = 28,
1107                 .digest = "\x87\x5f\x82\x88\x62\xb6\xb3\x34"
1108                           "\xb4\x27\xc5\x5f\x9f\x7f\xf0\x9b",
1109                 .np     = 2,
1110                 .tap    = { 14, 14 },
1111         }, {
1112                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1113                 .ksize  = 16,
1114                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1115                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1116                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1117                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1118                 .psize  = 50,
1119                 .digest = "\x09\xf0\xb2\x84\x6d\x2f\x54\x3d"
1120                           "\xa3\x63\xcb\xec\x8d\x62\xa3\x8d",
1121         }, {
1122                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1123                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1124                           "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1125                 .ksize  = 25,
1126                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1127                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1128                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1129                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1130                 .psize  = 50,
1131                 .digest = "\xbd\xbb\xd7\xcf\x03\xe4\x4b\x5a"
1132                           "\xa6\x0a\xf8\x15\xbe\x4d\x22\x94",
1133         }, {
1134                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1135                 .ksize  = 16,
1136                 .plaintext = "Test With Truncation",
1137                 .psize  = 20,
1138                 .digest = "\xe7\x98\x08\xf2\x4b\x25\xfd\x03"
1139                           "\x1c\x15\x5f\x0d\x55\x1d\x9a\x3a",
1140         }, {
1141                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1142                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1143                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1144                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1145                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1146                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1147                         "\xaa\xaa",
1148                 .ksize  = 80,
1149                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1150                 .psize  = 54,
1151                 .digest = "\xdc\x73\x29\x28\xde\x98\x10\x4a"
1152                           "\x1f\x59\xd3\x73\xc1\x50\xac\xbb",
1153         }, {
1154                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1155                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1156                         "\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",
1161                 .ksize  = 80,
1162                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1163                            "Block-Size Data",
1164                 .psize  = 73,
1165                 .digest = "\x5c\x6b\xec\x96\x79\x3e\x16\xd4"
1166                           "\x06\x90\xc2\x37\x63\x5f\x30\xc5",
1167         },
1168 };
1169
1170 /*
1171  * HMAC-RIPEMD160 test vectors from RFC2286
1172  */
1173 #define HMAC_RMD160_TEST_VECTORS        7
1174
1175 static struct hash_testvec hmac_rmd160_tv_template[] = {
1176         {
1177                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1178                 .ksize  = 20,
1179                 .plaintext = "Hi There",
1180                 .psize  = 8,
1181                 .digest = "\x24\xcb\x4b\xd6\x7d\x20\xfc\x1a\x5d\x2e"
1182                           "\xd7\x73\x2d\xcc\x39\x37\x7f\x0a\x56\x68",
1183         }, {
1184                 .key    = "Jefe",
1185                 .ksize  = 4,
1186                 .plaintext = "what do ya want for nothing?",
1187                 .psize  = 28,
1188                 .digest = "\xdd\xa6\xc0\x21\x3a\x48\x5a\x9e\x24\xf4"
1189                           "\x74\x20\x64\xa7\xf0\x33\xb4\x3c\x40\x69",
1190                 .np     = 2,
1191                 .tap    = { 14, 14 },
1192         }, {
1193                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1194                 .ksize  = 20,
1195                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1196                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1197                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1198                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1199                 .psize  = 50,
1200                 .digest = "\xb0\xb1\x05\x36\x0d\xe7\x59\x96\x0a\xb4"
1201                           "\xf3\x52\x98\xe1\x16\xe2\x95\xd8\xe7\xc1",
1202         }, {
1203                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1204                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1205                           "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1206                 .ksize  = 25,
1207                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1208                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1209                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1210                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1211                 .psize  = 50,
1212                 .digest = "\xd5\xca\x86\x2f\x4d\x21\xd5\xe6\x10\xe1"
1213                           "\x8b\x4c\xf1\xbe\xb9\x7a\x43\x65\xec\xf4",
1214         }, {
1215                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1216                 .ksize  = 20,
1217                 .plaintext = "Test With Truncation",
1218                 .psize  = 20,
1219                 .digest = "\x76\x19\x69\x39\x78\xf9\x1d\x90\x53\x9a"
1220                           "\xe7\x86\x50\x0f\xf3\xd8\xe0\x51\x8e\x39",
1221         }, {
1222                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1223                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1224                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1225                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1226                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1227                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1228                         "\xaa\xaa",
1229                 .ksize  = 80,
1230                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1231                 .psize  = 54,
1232                 .digest = "\x64\x66\xca\x07\xac\x5e\xac\x29\xe1\xbd"
1233                           "\x52\x3e\x5a\xda\x76\x05\xb7\x91\xfd\x8b",
1234         }, {
1235                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1236                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1237                         "\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",
1242                 .ksize  = 80,
1243                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1244                            "Block-Size Data",
1245                 .psize  = 73,
1246                 .digest = "\x69\xea\x60\x79\x8d\x71\x61\x6c\xce\x5f"
1247                           "\xd0\x87\x1e\x23\x75\x4c\xd7\x5d\x5a\x0a",
1248         },
1249 };
1250
1251 /*
1252  * HMAC-SHA1 test vectors from RFC2202
1253  */
1254 #define HMAC_SHA1_TEST_VECTORS  7
1255
1256 static struct hash_testvec hmac_sha1_tv_template[] = {
1257         {
1258                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1259                 .ksize  = 20,
1260                 .plaintext = "Hi There",
1261                 .psize  = 8,
1262                 .digest = "\xb6\x17\x31\x86\x55\x05\x72\x64"
1263                           "\xe2\x8b\xc0\xb6\xfb\x37\x8c\x8e\xf1"
1264                           "\x46\xbe",
1265         }, {
1266                 .key    = "Jefe",
1267                 .ksize  = 4,
1268                 .plaintext = "what do ya want for nothing?",
1269                 .psize  = 28,
1270                 .digest = "\xef\xfc\xdf\x6a\xe5\xeb\x2f\xa2\xd2\x74"
1271                           "\x16\xd5\xf1\x84\xdf\x9c\x25\x9a\x7c\x79",
1272                 .np     = 2,
1273                 .tap    = { 14, 14 }
1274         }, {
1275                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1276                 .ksize  = 20,
1277                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1278                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1279                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1280                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1281                 .psize  = 50,
1282                 .digest = "\x12\x5d\x73\x42\xb9\xac\x11\xcd\x91\xa3"
1283                           "\x9a\xf4\x8a\xa1\x7b\x4f\x63\xf1\x75\xd3",
1284         }, {
1285                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1286                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1287                           "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1288                 .ksize  = 25,
1289                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1290                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1291                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1292                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1293                 .psize  = 50,
1294                 .digest = "\x4c\x90\x07\xf4\x02\x62\x50\xc6\xbc\x84"
1295                           "\x14\xf9\xbf\x50\xc8\x6c\x2d\x72\x35\xda",
1296         }, {
1297                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1298                 .ksize  = 20,
1299                 .plaintext = "Test With Truncation",
1300                 .psize  = 20,
1301                 .digest = "\x4c\x1a\x03\x42\x4b\x55\xe0\x7f\xe7\xf2"
1302                           "\x7b\xe1\xd5\x8b\xb9\x32\x4a\x9a\x5a\x04",
1303         }, {
1304                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1305                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1306                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1307                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1308                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1309                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1310                         "\xaa\xaa",
1311                 .ksize  = 80,
1312                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1313                 .psize  = 54,
1314                 .digest = "\xaa\x4a\xe5\xe1\x52\x72\xd0\x0e\x95\x70"
1315                           "\x56\x37\xce\x8a\x3b\x55\xed\x40\x21\x12",
1316         }, {
1317                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1318                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1319                         "\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",
1324                 .ksize  = 80,
1325                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1326                            "Block-Size Data",
1327                 .psize  = 73,
1328                 .digest = "\xe8\xe9\x9d\x0f\x45\x23\x7d\x78\x6d\x6b"
1329                           "\xba\xa7\x96\x5c\x78\x08\xbb\xff\x1a\x91",
1330         },
1331 };
1332
1333
1334 /*
1335  * SHA224 HMAC test vectors from RFC4231
1336  */
1337 #define HMAC_SHA224_TEST_VECTORS    4
1338
1339 static struct hash_testvec hmac_sha224_tv_template[] = {
1340         {
1341                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1342                         "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1343                         "\x0b\x0b\x0b\x0b",
1344                 .ksize  = 20,
1345                 /*  ("Hi There") */
1346                 .plaintext = "\x48\x69\x20\x54\x68\x65\x72\x65",
1347                 .psize  = 8,
1348                 .digest = "\x89\x6f\xb1\x12\x8a\xbb\xdf\x19"
1349                         "\x68\x32\x10\x7c\xd4\x9d\xf3\x3f"
1350                         "\x47\xb4\xb1\x16\x99\x12\xba\x4f"
1351                         "\x53\x68\x4b\x22",
1352         }, {
1353                 .key    = "Jefe",
1354                 .ksize  = 4,
1355                 /* ("what do ya want for nothing?") */
1356                 .plaintext = "\x77\x68\x61\x74\x20\x64\x6f\x20"
1357                         "\x79\x61\x20\x77\x61\x6e\x74\x20"
1358                         "\x66\x6f\x72\x20\x6e\x6f\x74\x68"
1359                         "\x69\x6e\x67\x3f",
1360                 .psize  = 28,
1361                 .digest = "\xa3\x0e\x01\x09\x8b\xc6\xdb\xbf"
1362                         "\x45\x69\x0f\x3a\x7e\x9e\x6d\x0f"
1363                         "\x8b\xbe\xa2\xa3\x9e\x61\x48\x00"
1364                         "\x8f\xd0\x5e\x44",
1365                 .np = 4,
1366                 .tap    = { 7, 7, 7, 7 }
1367         }, {
1368                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1369                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1370                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1371                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1372                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1373                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1374                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1375                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1376                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1377                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1378                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1379                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1380                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1381                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1382                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1383                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1384                         "\xaa\xaa\xaa",
1385                 .ksize  = 131,
1386                 /* ("Test Using Larger Than Block-Size Key - Hash Key First") */
1387                 .plaintext = "\x54\x65\x73\x74\x20\x55\x73\x69"
1388                         "\x6e\x67\x20\x4c\x61\x72\x67\x65"
1389                         "\x72\x20\x54\x68\x61\x6e\x20\x42"
1390                         "\x6c\x6f\x63\x6b\x2d\x53\x69\x7a"
1391                         "\x65\x20\x4b\x65\x79\x20\x2d\x20"
1392                         "\x48\x61\x73\x68\x20\x4b\x65\x79"
1393                         "\x20\x46\x69\x72\x73\x74",
1394                 .psize  = 54,
1395                 .digest = "\x95\xe9\xa0\xdb\x96\x20\x95\xad"
1396                         "\xae\xbe\x9b\x2d\x6f\x0d\xbc\xe2"
1397                         "\xd4\x99\xf1\x12\xf2\xd2\xb7\x27"
1398                         "\x3f\xa6\x87\x0e",
1399         }, {
1400                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1401                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1402                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1403                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1404                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1405                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1406                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1407                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1408                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1409                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1410                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1411                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1412                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1413                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1414                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1415                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1416                         "\xaa\xaa\xaa",
1417                 .ksize  = 131,
1418                 /* ("This is a test using a larger than block-size key and a")
1419                 (" larger than block-size data. The key needs to be")
1420                         (" hashed before being used by the HMAC algorithm.") */
1421                 .plaintext = "\x54\x68\x69\x73\x20\x69\x73\x20"
1422                         "\x61\x20\x74\x65\x73\x74\x20\x75"
1423                         "\x73\x69\x6e\x67\x20\x61\x20\x6c"
1424                         "\x61\x72\x67\x65\x72\x20\x74\x68"
1425                         "\x61\x6e\x20\x62\x6c\x6f\x63\x6b"
1426                         "\x2d\x73\x69\x7a\x65\x20\x6b\x65"
1427                         "\x79\x20\x61\x6e\x64\x20\x61\x20"
1428                         "\x6c\x61\x72\x67\x65\x72\x20\x74"
1429                         "\x68\x61\x6e\x20\x62\x6c\x6f\x63"
1430                         "\x6b\x2d\x73\x69\x7a\x65\x20\x64"
1431                         "\x61\x74\x61\x2e\x20\x54\x68\x65"
1432                         "\x20\x6b\x65\x79\x20\x6e\x65\x65"
1433                         "\x64\x73\x20\x74\x6f\x20\x62\x65"
1434                         "\x20\x68\x61\x73\x68\x65\x64\x20"
1435                         "\x62\x65\x66\x6f\x72\x65\x20\x62"
1436                         "\x65\x69\x6e\x67\x20\x75\x73\x65"
1437                         "\x64\x20\x62\x79\x20\x74\x68\x65"
1438                         "\x20\x48\x4d\x41\x43\x20\x61\x6c"
1439                         "\x67\x6f\x72\x69\x74\x68\x6d\x2e",
1440                 .psize  = 152,
1441                 .digest = "\x3a\x85\x41\x66\xac\x5d\x9f\x02"
1442                         "\x3f\x54\xd5\x17\xd0\xb3\x9d\xbd"
1443                         "\x94\x67\x70\xdb\x9c\x2b\x95\xc9"
1444                         "\xf6\xf5\x65\xd1",
1445         },
1446 };
1447
1448 /*
1449  * HMAC-SHA256 test vectors from
1450  * draft-ietf-ipsec-ciph-sha-256-01.txt
1451  */
1452 #define HMAC_SHA256_TEST_VECTORS        10
1453
1454 static struct hash_testvec hmac_sha256_tv_template[] = {
1455         {
1456                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1457                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1458                           "\x11\x12\x13\x14\x15\x16\x17\x18"
1459                           "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20",
1460                 .ksize  = 32,
1461                 .plaintext = "abc",
1462                 .psize  = 3,
1463                 .digest = "\xa2\x1b\x1f\x5d\x4c\xf4\xf7\x3a"
1464                           "\x4d\xd9\x39\x75\x0f\x7a\x06\x6a"
1465                           "\x7f\x98\xcc\x13\x1c\xb1\x6a\x66"
1466                           "\x92\x75\x90\x21\xcf\xab\x81\x81",
1467         }, {
1468                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1469                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1470                           "\x11\x12\x13\x14\x15\x16\x17\x18"
1471                           "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20",
1472                 .ksize  = 32,
1473                 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1474                 .psize  = 56,
1475                 .digest = "\x10\x4f\xdc\x12\x57\x32\x8f\x08"
1476                           "\x18\x4b\xa7\x31\x31\xc5\x3c\xae"
1477                           "\xe6\x98\xe3\x61\x19\x42\x11\x49"
1478                           "\xea\x8c\x71\x24\x56\x69\x7d\x30",
1479         }, {
1480                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1481                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1482                           "\x11\x12\x13\x14\x15\x16\x17\x18"
1483                           "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20",
1484                 .ksize  = 32,
1485                 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"
1486                            "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1487                 .psize  = 112,
1488                 .digest = "\x47\x03\x05\xfc\x7e\x40\xfe\x34"
1489                           "\xd3\xee\xb3\xe7\x73\xd9\x5a\xab"
1490                           "\x73\xac\xf0\xfd\x06\x04\x47\xa5"
1491                           "\xeb\x45\x95\xbf\x33\xa9\xd1\xa3",
1492         }, {
1493                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1494                         "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1495                         "\x0b\x0b\x0b\x0b\x0b\x0b",
1496                 .ksize  = 32,
1497                 .plaintext = "Hi There",
1498                 .psize  = 8,
1499                 .digest = "\x19\x8a\x60\x7e\xb4\x4b\xfb\xc6"
1500                           "\x99\x03\xa0\xf1\xcf\x2b\xbd\xc5"
1501                           "\xba\x0a\xa3\xf3\xd9\xae\x3c\x1c"
1502                           "\x7a\x3b\x16\x96\xa0\xb6\x8c\xf7",
1503         }, {
1504                 .key    = "Jefe",
1505                 .ksize  = 4,
1506                 .plaintext = "what do ya want for nothing?",
1507                 .psize  = 28,
1508                 .digest = "\x5b\xdc\xc1\x46\xbf\x60\x75\x4e"
1509                           "\x6a\x04\x24\x26\x08\x95\x75\xc7"
1510                           "\x5a\x00\x3f\x08\x9d\x27\x39\x83"
1511                           "\x9d\xec\x58\xb9\x64\xec\x38\x43",
1512                 .np     = 2,
1513                 .tap    = { 14, 14 }
1514         }, {
1515                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1516                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1517                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1518                 .ksize  = 32,
1519                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1520                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1521                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1522                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1523                 .psize  = 50,
1524                 .digest = "\xcd\xcb\x12\x20\xd1\xec\xcc\xea"
1525                           "\x91\xe5\x3a\xba\x30\x92\xf9\x62"
1526                           "\xe5\x49\xfe\x6c\xe9\xed\x7f\xdc"
1527                           "\x43\x19\x1f\xbd\xe4\x5c\x30\xb0",
1528         }, {
1529                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1530                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1531                           "\x11\x12\x13\x14\x15\x16\x17\x18"
1532                           "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
1533                           "\x21\x22\x23\x24\x25",
1534                 .ksize  = 37,
1535                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1536                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1537                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1538                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1539                 .psize  = 50,
1540                 .digest = "\xd4\x63\x3c\x17\xf6\xfb\x8d\x74"
1541                           "\x4c\x66\xde\xe0\xf8\xf0\x74\x55"
1542                           "\x6e\xc4\xaf\x55\xef\x07\x99\x85"
1543                           "\x41\x46\x8e\xb4\x9b\xd2\xe9\x17",
1544         }, {
1545                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c"
1546                         "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c"
1547                         "\x0c\x0c\x0c\x0c\x0c\x0c",
1548                 .ksize  = 32,
1549                 .plaintext = "Test With Truncation",
1550                 .psize  = 20,
1551                 .digest = "\x75\x46\xaf\x01\x84\x1f\xc0\x9b"
1552                           "\x1a\xb9\xc3\x74\x9a\x5f\x1c\x17"
1553                           "\xd4\xf5\x89\x66\x8a\x58\x7b\x27"
1554                           "\x00\xa9\xc9\x7c\x11\x93\xcf\x42",
1555         }, {
1556                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1557                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1558                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1559                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1560                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1561                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1562                         "\xaa\xaa",
1563                 .ksize  = 80,
1564                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1565                 .psize  = 54,
1566                 .digest = "\x69\x53\x02\x5e\xd9\x6f\x0c\x09"
1567                           "\xf8\x0a\x96\xf7\x8e\x65\x38\xdb"
1568                           "\xe2\xe7\xb8\x20\xe3\xdd\x97\x0e"
1569                           "\x7d\xdd\x39\x09\x1b\x32\x35\x2f",
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 and Larger Than "
1580                            "One Block-Size Data",
1581                 .psize  = 73,
1582                 .digest = "\x63\x55\xac\x22\xe8\x90\xd0\xa3"
1583                           "\xc8\x48\x1a\x5c\xa4\x82\x5b\xc8"
1584                           "\x84\xd3\xe7\xa1\xff\x98\xa2\xfc"
1585                           "\x2a\xc7\xd8\xe0\x64\xc3\xb2\xe6",
1586         },
1587 };
1588
1589 #define XCBC_AES_TEST_VECTORS 6
1590
1591 static struct hash_testvec aes_xcbc128_tv_template[] = {
1592         {
1593                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1594                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1595                 .plaintext = zeroed_string,
1596                 .digest = "\x75\xf0\x25\x1d\x52\x8a\xc0\x1c"
1597                           "\x45\x73\xdf\xd5\x84\xd7\x9f\x29",
1598                 .psize  = 0,
1599                 .ksize  = 16,
1600         }, {
1601                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1602                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1603                 .plaintext = "\x00\x01\x02",
1604                 .digest = "\x5b\x37\x65\x80\xae\x2f\x19\xaf"
1605                           "\xe7\x21\x9c\xee\xf1\x72\x75\x6f",
1606                 .psize  = 3,
1607                 .ksize  = 16,
1608         } , {
1609                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1610                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1611                 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1612                              "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1613                 .digest = "\xd2\xa2\x46\xfa\x34\x9b\x68\xa7"
1614                           "\x99\x98\xa4\x39\x4f\xf7\xa2\x63",
1615                 .psize  = 16,
1616                 .ksize  = 16,
1617         }, {
1618                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1619                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1620                 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1621                              "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1622                              "\x10\x11\x12\x13",
1623                 .digest = "\x47\xf5\x1b\x45\x64\x96\x62\x15"
1624                           "\xb8\x98\x5c\x63\x05\x5e\xd3\x08",
1625                 .tap    = { 10, 10 },
1626                 .psize  = 20,
1627                 .np     = 2,
1628                 .ksize  = 16,
1629         }, {
1630                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1631                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1632                 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1633                              "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1634                              "\x10\x11\x12\x13\x14\x15\x16\x17"
1635                              "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
1636                 .digest = "\xf5\x4f\x0e\xc8\xd2\xb9\xf3\xd3"
1637                           "\x68\x07\x73\x4b\xd5\x28\x3f\xd4",
1638                 .psize  = 32,
1639                 .ksize  = 16,
1640         }, {
1641                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1642                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1643                 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1644                              "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1645                              "\x10\x11\x12\x13\x14\x15\x16\x17"
1646                              "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
1647                              "\x20\x21",
1648                 .digest = "\xbe\xcb\xb3\xbc\xcd\xb5\x18\xa3"
1649                           "\x06\x77\xd5\x48\x1f\xb6\xb4\xd8",
1650                 .tap    = { 17, 17 },
1651                 .psize  = 34,
1652                 .np     = 2,
1653                 .ksize  = 16,
1654         }
1655 };
1656
1657 /*
1658  * SHA384 HMAC test vectors from RFC4231
1659  */
1660
1661 #define HMAC_SHA384_TEST_VECTORS        4
1662
1663 static struct hash_testvec hmac_sha384_tv_template[] = {
1664         {
1665                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1666                           "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1667                           "\x0b\x0b\x0b\x0b",
1668                 .ksize  = 20,
1669                 .plaintext = "Hi There",
1670                 .psize  = 8,
1671                 .digest = "\xaf\xd0\x39\x44\xd8\x48\x95\x62"
1672                           "\x6b\x08\x25\xf4\xab\x46\x90\x7f"
1673                           "\x15\xf9\xda\xdb\xe4\x10\x1e\xc6"
1674                           "\x82\xaa\x03\x4c\x7c\xeb\xc5\x9c"
1675                           "\xfa\xea\x9e\xa9\x07\x6e\xde\x7f"
1676                           "\x4a\xf1\x52\xe8\xb2\xfa\x9c\xb6",
1677         }, {
1678                 .key    = "Jefe",
1679                 .ksize  = 4,
1680                 .plaintext = "what do ya want for nothing?",
1681                 .psize  = 28,
1682                 .digest = "\xaf\x45\xd2\xe3\x76\x48\x40\x31"
1683                           "\x61\x7f\x78\xd2\xb5\x8a\x6b\x1b"
1684                           "\x9c\x7e\xf4\x64\xf5\xa0\x1b\x47"
1685                           "\xe4\x2e\xc3\x73\x63\x22\x44\x5e"
1686                           "\x8e\x22\x40\xca\x5e\x69\xe2\xc7"
1687                           "\x8b\x32\x39\xec\xfa\xb2\x16\x49",
1688                 .np     = 4,
1689                 .tap    = { 7, 7, 7, 7 }
1690         }, {
1691                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1692                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1693                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1694                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1695                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1696                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1697                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1698                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1699                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1700                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1701                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1702                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1703                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1704                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1705                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1706                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1707                           "\xaa\xaa\xaa",
1708                 .ksize  = 131,
1709                 .plaintext = "Test Using Larger Than Block-Siz"
1710                            "e Key - Hash Key First",
1711                 .psize  = 54,
1712                 .digest = "\x4e\xce\x08\x44\x85\x81\x3e\x90"
1713                           "\x88\xd2\xc6\x3a\x04\x1b\xc5\xb4"
1714                           "\x4f\x9e\xf1\x01\x2a\x2b\x58\x8f"
1715                           "\x3c\xd1\x1f\x05\x03\x3a\xc4\xc6"
1716                           "\x0c\x2e\xf6\xab\x40\x30\xfe\x82"
1717                           "\x96\x24\x8d\xf1\x63\xf4\x49\x52",
1718         }, {
1719                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1720                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1721                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1722                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1723                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1724                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1725                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1726                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1727                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1728                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1729                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1730                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1731                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1732                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1733                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1734                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1735                           "\xaa\xaa\xaa",
1736                 .ksize  = 131,
1737                 .plaintext = "This is a test u"
1738                            "sing a larger th"
1739                            "an block-size ke"
1740                            "y and a larger t"
1741                            "han block-size d"
1742                            "ata. The key nee"
1743                            "ds to be hashed "
1744                            "before being use"
1745                            "d by the HMAC al"
1746                            "gorithm.",
1747                 .psize  = 152,
1748                 .digest = "\x66\x17\x17\x8e\x94\x1f\x02\x0d"
1749                           "\x35\x1e\x2f\x25\x4e\x8f\xd3\x2c"
1750                           "\x60\x24\x20\xfe\xb0\xb8\xfb\x9a"
1751                           "\xdc\xce\xbb\x82\x46\x1e\x99\xc5"
1752                           "\xa6\x78\xcc\x31\xe7\x99\x17\x6d"
1753                           "\x38\x60\xe6\x11\x0c\x46\x52\x3e",
1754         },
1755 };
1756
1757 /*
1758  * SHA512 HMAC test vectors from RFC4231
1759  */
1760
1761 #define HMAC_SHA512_TEST_VECTORS        4
1762
1763 static struct hash_testvec hmac_sha512_tv_template[] = {
1764         {
1765                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1766                           "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1767                           "\x0b\x0b\x0b\x0b",
1768                 .ksize  = 20,
1769                 .plaintext = "Hi There",
1770                 .psize  = 8,
1771                 .digest = "\x87\xaa\x7c\xde\xa5\xef\x61\x9d"
1772                           "\x4f\xf0\xb4\x24\x1a\x1d\x6c\xb0"
1773                           "\x23\x79\xf4\xe2\xce\x4e\xc2\x78"
1774                           "\x7a\xd0\xb3\x05\x45\xe1\x7c\xde"
1775                           "\xda\xa8\x33\xb7\xd6\xb8\xa7\x02"
1776                           "\x03\x8b\x27\x4e\xae\xa3\xf4\xe4"
1777                           "\xbe\x9d\x91\x4e\xeb\x61\xf1\x70"
1778                           "\x2e\x69\x6c\x20\x3a\x12\x68\x54",
1779         }, {
1780                 .key    = "Jefe",
1781                 .ksize  = 4,
1782                 .plaintext = "what do ya want for nothing?",
1783                 .psize  = 28,
1784                 .digest = "\x16\x4b\x7a\x7b\xfc\xf8\x19\xe2"
1785                           "\xe3\x95\xfb\xe7\x3b\x56\xe0\xa3"
1786                           "\x87\xbd\x64\x22\x2e\x83\x1f\xd6"
1787                           "\x10\x27\x0c\xd7\xea\x25\x05\x54"
1788                           "\x97\x58\xbf\x75\xc0\x5a\x99\x4a"
1789                           "\x6d\x03\x4f\x65\xf8\xf0\xe6\xfd"
1790                           "\xca\xea\xb1\xa3\x4d\x4a\x6b\x4b"
1791                           "\x63\x6e\x07\x0a\x38\xbc\xe7\x37",
1792                 .np     = 4,
1793                 .tap    = { 7, 7, 7, 7 }
1794         }, {
1795                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1796                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1797                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1798                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1799                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1800                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1801                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1802                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1803                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1804                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1805                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1806                           "\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",
1812                 .ksize  = 131,
1813                 .plaintext = "Test Using Large"
1814                            "r Than Block-Siz"
1815                            "e Key - Hash Key"
1816                            " First",
1817                 .psize  = 54,
1818                 .digest = "\x80\xb2\x42\x63\xc7\xc1\xa3\xeb"
1819                         "\xb7\x14\x93\xc1\xdd\x7b\xe8\xb4"
1820                         "\x9b\x46\xd1\xf4\x1b\x4a\xee\xc1"
1821                         "\x12\x1b\x01\x37\x83\xf8\xf3\x52"
1822                         "\x6b\x56\xd0\x37\xe0\x5f\x25\x98"
1823                         "\xbd\x0f\xd2\x21\x5d\x6a\x1e\x52"
1824                         "\x95\xe6\x4f\x73\xf6\x3f\x0a\xec"
1825                         "\x8b\x91\x5a\x98\x5d\x78\x65\x98",
1826         }, {
1827                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1828                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1829                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1830                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1831                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1832                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1833                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1834                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1835                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1836                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1837                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1838                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1839                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1840                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1841                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1842                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1843                         "\xaa\xaa\xaa",
1844                 .ksize  = 131,
1845                 .plaintext =
1846                           "This is a test u"
1847                           "sing a larger th"
1848                           "an block-size ke"
1849                           "y and a larger t"
1850                           "han block-size d"
1851                           "ata. The key nee"
1852                           "ds to be hashed "
1853                           "before being use"
1854                           "d by the HMAC al"
1855                           "gorithm.",
1856                 .psize  = 152,
1857                 .digest = "\xe3\x7b\x6a\x77\x5d\xc8\x7d\xba"
1858                         "\xa4\xdf\xa9\xf9\x6e\x5e\x3f\xfd"
1859                         "\xde\xbd\x71\xf8\x86\x72\x89\x86"
1860                         "\x5d\xf5\xa3\x2d\x20\xcd\xc9\x44"
1861                         "\xb6\x02\x2c\xac\x3c\x49\x82\xb1"
1862                         "\x0d\x5e\xeb\x55\xc3\xe4\xde\x15"
1863                         "\x13\x46\x76\xfb\x6d\xe0\x44\x60"
1864                         "\x65\xc9\x74\x40\xfa\x8c\x6a\x58",
1865         },
1866 };
1867
1868 /*
1869  * DES test vectors.
1870  */
1871 #define DES_ENC_TEST_VECTORS            10
1872 #define DES_DEC_TEST_VECTORS            4
1873 #define DES_CBC_ENC_TEST_VECTORS        5
1874 #define DES_CBC_DEC_TEST_VECTORS        4
1875 #define DES3_EDE_ENC_TEST_VECTORS       3
1876 #define DES3_EDE_DEC_TEST_VECTORS       3
1877 #define DES3_EDE_CBC_ENC_TEST_VECTORS   1
1878 #define DES3_EDE_CBC_DEC_TEST_VECTORS   1
1879
1880 static struct cipher_testvec des_enc_tv_template[] = {
1881         { /* From Applied Cryptography */
1882                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1883                 .klen   = 8,
1884                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1885                 .ilen   = 8,
1886                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1887                 .rlen   = 8,
1888         }, { /* Same key, different plaintext block */
1889                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1890                 .klen   = 8,
1891                 .input  = "\x22\x33\x44\x55\x66\x77\x88\x99",
1892                 .ilen   = 8,
1893                 .result = "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1894                 .rlen   = 8,
1895         }, { /* Sbox test from NBS */
1896                 .key    = "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57",
1897                 .klen   = 8,
1898                 .input  = "\x01\xa1\xd6\xd0\x39\x77\x67\x42",
1899                 .ilen   = 8,
1900                 .result = "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
1901                 .rlen   = 8,
1902         }, { /* Three blocks */
1903                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1904                 .klen   = 8,
1905                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1906                           "\x22\x33\x44\x55\x66\x77\x88\x99"
1907                           "\xca\xfe\xba\xbe\xfe\xed\xbe\xef",
1908                 .ilen   = 24,
1909                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1910                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
1911                           "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90",
1912                 .rlen   = 24,
1913         }, { /* Weak key */
1914                 .fail   = 1,
1915                 .wk     = 1,
1916                 .key    = "\x01\x01\x01\x01\x01\x01\x01\x01",
1917                 .klen   = 8,
1918                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1919                 .ilen   = 8,
1920                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1921                 .rlen   = 8,
1922         }, { /* Two blocks -- for testing encryption across pages */
1923                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1924                 .klen   = 8,
1925                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1926                           "\x22\x33\x44\x55\x66\x77\x88\x99",
1927                 .ilen   = 16,
1928                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1929                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1930                 .rlen   = 16,
1931                 .np     = 2,
1932                 .tap    = { 8, 8 }
1933         }, { /* Four blocks -- for testing encryption with chunking */
1934                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1935                 .klen   = 8,
1936                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1937                           "\x22\x33\x44\x55\x66\x77\x88\x99"
1938                           "\xca\xfe\xba\xbe\xfe\xed\xbe\xef"
1939                           "\x22\x33\x44\x55\x66\x77\x88\x99",
1940                 .ilen   = 32,
1941                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1942                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
1943                           "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90"
1944                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1945                 .rlen   = 32,
1946                 .np     = 3,
1947                 .tap    = { 14, 10, 8 }
1948         }, {
1949                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1950                 .klen   = 8,
1951                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1952                           "\x22\x33\x44\x55\x66\x77\x88\x99"
1953                           "\xca\xfe\xba\xbe\xfe\xed\xbe\xef",
1954                 .ilen   = 24,
1955                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1956                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
1957                           "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90",
1958                 .rlen   = 24,
1959                 .np     = 4,
1960                 .tap    = { 2, 1, 3, 18 }
1961         }, {
1962                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1963                 .klen   = 8,
1964                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1965                           "\x22\x33\x44\x55\x66\x77\x88\x99",
1966                 .ilen   = 16,
1967                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1968                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1969                 .rlen   = 16,
1970                 .np     = 5,
1971                 .tap    = { 2, 2, 2, 2, 8 }
1972         }, {
1973                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1974                 .klen   = 8,
1975                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1976                 .ilen   = 8,
1977                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1978                 .rlen   = 8,
1979                 .np     = 8,
1980                 .tap    = { 1, 1, 1, 1, 1, 1, 1, 1 }
1981         },
1982 };
1983
1984 static struct cipher_testvec des_dec_tv_template[] = {
1985         { /* From Applied Cryptography */
1986                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1987                 .klen   = 8,
1988                 .input  = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1989                 .ilen   = 8,
1990                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1991                 .rlen   = 8,
1992         }, { /* Sbox test from NBS */
1993                 .key    = "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57",
1994                 .klen   = 8,
1995                 .input  = "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
1996                 .ilen   = 8,
1997                 .result = "\x01\xa1\xd6\xd0\x39\x77\x67\x42",
1998                 .rlen   = 8,
1999         }, { /* Two blocks, for chunking test */
2000                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2001                 .klen   = 8,
2002                 .input  = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2003                           "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
2004                 .ilen   = 16,
2005                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2006                           "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5",
2007                 .rlen   = 16,
2008                 .np     = 2,
2009                 .tap    = { 8, 8 }
2010         }, {
2011                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2012                 .klen   = 8,
2013                 .input  = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2014                           "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
2015                 .ilen   = 16,
2016                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2017                           "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5",
2018                 .rlen   = 16,
2019                 .np     = 3,
2020                 .tap    = { 3, 12, 1 }
2021         },
2022 };
2023
2024 static struct cipher_testvec des_cbc_enc_tv_template[] = {
2025         { /* From OpenSSL */
2026                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2027                 .klen   = 8,
2028                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2029                 .input  = "\x37\x36\x35\x34\x33\x32\x31\x20"
2030                           "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2031                           "\x68\x65\x20\x74\x69\x6d\x65\x20",
2032                 .ilen   = 24,
2033                 .result = "\xcc\xd1\x73\xff\xab\x20\x39\xf4"
2034                           "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb"
2035                           "\x46\x8e\x91\x15\x78\x88\xba\x68",
2036                 .rlen   = 24,
2037         }, { /* FIPS Pub 81 */
2038                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2039                 .klen   = 8,
2040                 .iv     = "\x12\x34\x56\x78\x90\xab\xcd\xef",
2041                 .input  = "\x4e\x6f\x77\x20\x69\x73\x20\x74",
2042                 .ilen   = 8,
2043                 .result = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2044                 .rlen   = 8,
2045         }, {
2046                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2047                 .klen   = 8,
2048                 .iv     = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2049                 .input  = "\x68\x65\x20\x74\x69\x6d\x65\x20",
2050                 .ilen   = 8,
2051                 .result = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2052                 .rlen   = 8,
2053         }, {
2054                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2055                 .klen   = 8,
2056                 .iv     = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2057                 .input  = "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2058                 .ilen   = 8,
2059                 .result = "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2060                 .rlen   = 8,
2061         }, { /* Copy of openssl vector for chunk testing */
2062              /* From OpenSSL */
2063                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2064                 .klen   = 8,
2065                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2066                 .input  = "\x37\x36\x35\x34\x33\x32\x31\x20"
2067                           "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2068                           "\x68\x65\x20\x74\x69\x6d\x65\x20",
2069                 .ilen   = 24,
2070                 .result = "\xcc\xd1\x73\xff\xab\x20\x39\xf4"
2071                           "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb"
2072                           "\x46\x8e\x91\x15\x78\x88\xba\x68",
2073                 .rlen   = 24,
2074                 .np     = 2,
2075                 .tap    = { 13, 11 }
2076         },
2077 };
2078
2079 static struct cipher_testvec des_cbc_dec_tv_template[] = {
2080         { /* FIPS Pub 81 */
2081                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2082                 .klen   = 8,
2083                 .iv     = "\x12\x34\x56\x78\x90\xab\xcd\xef",
2084                 .input  = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2085                 .ilen   = 8,
2086                 .result = "\x4e\x6f\x77\x20\x69\x73\x20\x74",
2087                 .rlen   = 8,
2088         }, {
2089                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2090                 .klen   = 8,
2091                 .iv     = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2092                 .input  = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2093                 .ilen   = 8,
2094                 .result = "\x68\x65\x20\x74\x69\x6d\x65\x20",
2095                 .rlen   = 8,
2096         }, {
2097                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2098                 .klen   = 8,
2099                 .iv     = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2100                 .input  = "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2101                 .ilen   = 8,
2102                 .result = "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2103                 .rlen   = 8,
2104         }, { /* Copy of above, for chunk testing */
2105                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2106                 .klen   = 8,
2107                 .iv     = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2108                 .input  = "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2109                 .ilen   = 8,
2110                 .result = "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2111                 .rlen   = 8,
2112                 .np     = 2,
2113                 .tap    = { 4, 4 }
2114         },
2115 };
2116
2117 static struct cipher_testvec des3_ede_enc_tv_template[] = {
2118         { /* These are from openssl */
2119                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2120                           "\x55\x55\x55\x55\x55\x55\x55\x55"
2121                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2122                 .klen   = 24,
2123                 .input  = "\x73\x6f\x6d\x65\x64\x61\x74\x61",
2124                 .ilen   = 8,
2125                 .result = "\x18\xd7\x48\xe5\x63\x62\x05\x72",
2126                 .rlen   = 8,
2127         }, {
2128                 .key    = "\x03\x52\x02\x07\x67\x20\x82\x17"
2129                           "\x86\x02\x87\x66\x59\x08\x21\x98"
2130                           "\x64\x05\x6a\xbd\xfe\xa9\x34\x57",
2131                 .klen   = 24,
2132                 .input  = "\x73\x71\x75\x69\x67\x67\x6c\x65",
2133                 .ilen   = 8,
2134                 .result = "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30",
2135                 .rlen   = 8,
2136         }, {
2137                 .key    = "\x10\x46\x10\x34\x89\x98\x80\x20"
2138                           "\x91\x07\xd0\x15\x89\x19\x01\x01"
2139                           "\x19\x07\x92\x10\x98\x1a\x01\x01",
2140                 .klen   = 24,
2141                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
2142                 .ilen   = 8,
2143                 .result = "\xe1\xef\x62\xc3\x32\xfe\x82\x5b",
2144                 .rlen   = 8,
2145         },
2146 };
2147
2148 static struct cipher_testvec des3_ede_dec_tv_template[] = {
2149         { /* These are from openssl */
2150                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2151                           "\x55\x55\x55\x55\x55\x55\x55\x55"
2152                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2153                 .klen   = 24,
2154                 .input  = "\x18\xd7\x48\xe5\x63\x62\x05\x72",
2155                 .ilen   = 8,
2156                 .result = "\x73\x6f\x6d\x65\x64\x61\x74\x61",
2157                 .rlen   = 8,
2158         }, {
2159                 .key    = "\x03\x52\x02\x07\x67\x20\x82\x17"
2160                           "\x86\x02\x87\x66\x59\x08\x21\x98"
2161                           "\x64\x05\x6a\xbd\xfe\xa9\x34\x57",
2162                 .klen   = 24,
2163                 .input  = "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30",
2164                 .ilen   = 8,
2165                 .result = "\x73\x71\x75\x69\x67\x67\x6c\x65",
2166                 .rlen   = 8,
2167         }, {
2168                 .key    = "\x10\x46\x10\x34\x89\x98\x80\x20"
2169                           "\x91\x07\xd0\x15\x89\x19\x01\x01"
2170                           "\x19\x07\x92\x10\x98\x1a\x01\x01",
2171                 .klen   = 24,
2172                 .input  = "\xe1\xef\x62\xc3\x32\xfe\x82\x5b",
2173                 .ilen   = 8,
2174                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
2175                 .rlen   = 8,
2176         },
2177 };
2178
2179 static struct cipher_testvec des3_ede_cbc_enc_tv_template[] = {
2180         { /* Generated from openssl */
2181                 .key    = "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24"
2182                           "\x44\x4D\x99\x5A\x12\xD6\x40\xC0"
2183                           "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8",
2184                 .klen   = 24,
2185                 .iv     = "\x7D\x33\x88\x93\x0F\x93\xB2\x42",
2186                 .input  = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e"
2187                           "\x53\x20\x63\x65\x65\x72\x73\x74"
2188                           "\x54\x20\x6f\x6f\x4d\x20\x6e\x61"
2189                           "\x20\x79\x65\x53\x72\x63\x74\x65"
2190                           "\x20\x73\x6f\x54\x20\x6f\x61\x4d"
2191                           "\x79\x6e\x53\x20\x63\x65\x65\x72"
2192                           "\x73\x74\x54\x20\x6f\x6f\x4d\x20"
2193                           "\x6e\x61\x20\x79\x65\x53\x72\x63"
2194                           "\x74\x65\x20\x73\x6f\x54\x20\x6f"
2195                           "\x61\x4d\x79\x6e\x53\x20\x63\x65"
2196                           "\x65\x72\x73\x74\x54\x20\x6f\x6f"
2197                           "\x4d\x20\x6e\x61\x20\x79\x65\x53"
2198                           "\x72\x63\x74\x65\x20\x73\x6f\x54"
2199                           "\x20\x6f\x61\x4d\x79\x6e\x53\x20"
2200                           "\x63\x65\x65\x72\x73\x74\x54\x20"
2201                           "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79",
2202                 .ilen   = 128,
2203                 .result = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4"
2204                           "\x67\x17\x21\xc7\x6e\x8a\xd5\x49"
2205                           "\x74\xb3\x49\x05\xc5\x1c\xd0\xed"
2206                           "\x12\x56\x5c\x53\x96\xb6\x00\x7d"
2207                           "\x90\x48\xfc\xf5\x8d\x29\x39\xcc"
2208                           "\x8a\xd5\x35\x18\x36\x23\x4e\xd7"
2209                           "\x76\xd1\xda\x0c\x94\x67\xbb\x04"
2210                           "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea"
2211                           "\x22\x64\x47\xaa\x8f\x75\x13\xbf"
2212                           "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a"
2213                           "\x71\x63\x2e\x89\x7b\x1e\x12\xca"
2214                           "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a"
2215                           "\xd6\xf9\x21\x31\x62\x44\x45\xa6"
2216                           "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc"
2217                           "\x9d\xde\xa5\x70\xe9\x42\x45\x8a"
2218                           "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19",
2219                 .rlen   = 128,
2220         },
2221 };
2222
2223 static struct cipher_testvec des3_ede_cbc_dec_tv_template[] = {
2224         { /* Generated from openssl */
2225                 .key    = "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24"
2226                           "\x44\x4D\x99\x5A\x12\xD6\x40\xC0"
2227                           "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8",
2228                 .klen   = 24,
2229                 .iv     = "\x7D\x33\x88\x93\x0F\x93\xB2\x42",
2230                 .input  = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4"
2231                           "\x67\x17\x21\xc7\x6e\x8a\xd5\x49"
2232                           "\x74\xb3\x49\x05\xc5\x1c\xd0\xed"
2233                           "\x12\x56\x5c\x53\x96\xb6\x00\x7d"
2234                           "\x90\x48\xfc\xf5\x8d\x29\x39\xcc"
2235                           "\x8a\xd5\x35\x18\x36\x23\x4e\xd7"
2236                           "\x76\xd1\xda\x0c\x94\x67\xbb\x04"
2237                           "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea"
2238                           "\x22\x64\x47\xaa\x8f\x75\x13\xbf"
2239                           "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a"
2240                           "\x71\x63\x2e\x89\x7b\x1e\x12\xca"
2241                           "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a"
2242                           "\xd6\xf9\x21\x31\x62\x44\x45\xa6"
2243                           "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc"
2244                           "\x9d\xde\xa5\x70\xe9\x42\x45\x8a"
2245                           "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19",
2246                 .ilen   = 128,
2247                 .result = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e"
2248                           "\x53\x20\x63\x65\x65\x72\x73\x74"
2249                           "\x54\x20\x6f\x6f\x4d\x20\x6e\x61"
2250                           "\x20\x79\x65\x53\x72\x63\x74\x65"
2251                           "\x20\x73\x6f\x54\x20\x6f\x61\x4d"
2252                           "\x79\x6e\x53\x20\x63\x65\x65\x72"
2253                           "\x73\x74\x54\x20\x6f\x6f\x4d\x20"
2254                           "\x6e\x61\x20\x79\x65\x53\x72\x63"
2255                           "\x74\x65\x20\x73\x6f\x54\x20\x6f"
2256                           "\x61\x4d\x79\x6e\x53\x20\x63\x65"
2257                           "\x65\x72\x73\x74\x54\x20\x6f\x6f"
2258                           "\x4d\x20\x6e\x61\x20\x79\x65\x53"
2259                           "\x72\x63\x74\x65\x20\x73\x6f\x54"
2260                           "\x20\x6f\x61\x4d\x79\x6e\x53\x20"
2261                           "\x63\x65\x65\x72\x73\x74\x54\x20"
2262                           "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79",
2263                 .rlen   = 128,
2264         },
2265 };
2266
2267 /*
2268  * Blowfish test vectors.
2269  */
2270 #define BF_ENC_TEST_VECTORS     6
2271 #define BF_DEC_TEST_VECTORS     6
2272 #define BF_CBC_ENC_TEST_VECTORS 1
2273 #define BF_CBC_DEC_TEST_VECTORS 1
2274
2275 static struct cipher_testvec bf_enc_tv_template[] = {
2276         { /* DES test vectors from OpenSSL */
2277                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
2278                 .klen   = 8,
2279                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
2280                 .ilen   = 8,
2281                 .result = "\x4e\xf9\x97\x45\x61\x98\xdd\x78",
2282                 .rlen   = 8,
2283         }, {
2284                 .key    = "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e",
2285                 .klen   = 8,
2286                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2287                 .ilen   = 8,
2288                 .result = "\xa7\x90\x79\x51\x08\xea\x3c\xae",
2289                 .rlen   = 8,
2290         }, {
2291                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2292                 .klen   = 8,
2293                 .input  = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2294                 .ilen   = 8,
2295                 .result = "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82",
2296                 .rlen   = 8,
2297         }, { /* Vary the keylength... */
2298                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2299                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f",
2300                 .klen   = 16,
2301                 .input  = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2302                 .ilen   = 8,
2303                 .result = "\x93\x14\x28\x87\xee\x3b\xe1\x5c",
2304                 .rlen   = 8,
2305         }, {
2306                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2307                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2308                           "\x00\x11\x22\x33\x44",
2309                 .klen   = 21,
2310                 .input  = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2311                 .ilen   = 8,
2312                 .result = "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f",
2313                 .rlen   = 8,
2314         }, { /* Generated with bf488 */
2315                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2316                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2317                           "\x00\x11\x22\x33\x44\x55\x66\x77"
2318                           "\x04\x68\x91\x04\xc2\xfd\x3b\x2f"
2319                           "\x58\x40\x23\x64\x1a\xba\x61\x76"
2320                           "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e"
2321                           "\xff\xff\xff\xff\xff\xff\xff\xff",
2322                 .klen   = 56,
2323                 .input  = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2324                 .ilen   = 8,
2325                 .result = "\xc0\x45\x04\x01\x2e\x4e\x1f\x53",
2326                 .rlen   = 8,
2327         },
2328 };
2329
2330 static struct cipher_testvec bf_dec_tv_template[] = {
2331         { /* DES test vectors from OpenSSL */
2332                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
2333                 .klen   = 8,
2334                 .input  = "\x4e\xf9\x97\x45\x61\x98\xdd\x78",
2335                 .ilen   = 8,
2336                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
2337                 .rlen   = 8,
2338         }, {
2339                 .key    = "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e",
2340                 .klen   = 8,
2341                 .input  = "\xa7\x90\x79\x51\x08\xea\x3c\xae",
2342                 .ilen   = 8,
2343                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2344                 .rlen   = 8,
2345         }, {
2346                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2347                 .klen   = 8,
2348                 .input  = "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82",
2349                 .ilen   = 8,
2350                 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2351                 .rlen   = 8,
2352         }, { /* Vary the keylength... */
2353                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2354                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f",
2355                 .klen   = 16,
2356                 .input  = "\x93\x14\x28\x87\xee\x3b\xe1\x5c",
2357                 .ilen   = 8,
2358                 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2359                 .rlen   = 8,
2360         }, {
2361                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2362                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2363                           "\x00\x11\x22\x33\x44",
2364                 .klen   = 21,
2365                 .input  = "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f",
2366                 .ilen   = 8,
2367                 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2368                 .rlen   = 8,
2369         }, { /* Generated with bf488, using OpenSSL, Libgcrypt and Nettle */
2370                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2371                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2372                           "\x00\x11\x22\x33\x44\x55\x66\x77"
2373                           "\x04\x68\x91\x04\xc2\xfd\x3b\x2f"
2374                           "\x58\x40\x23\x64\x1a\xba\x61\x76"
2375                           "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e"
2376                           "\xff\xff\xff\xff\xff\xff\xff\xff",
2377                 .klen   = 56,
2378                 .input  = "\xc0\x45\x04\x01\x2e\x4e\x1f\x53",
2379                 .ilen   = 8,
2380                 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2381                 .rlen   = 8,
2382         },
2383 };
2384
2385 static struct cipher_testvec bf_cbc_enc_tv_template[] = {
2386         { /* From OpenSSL */
2387                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2388                           "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2389                 .klen   = 16,
2390                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2391                 .input  = "\x37\x36\x35\x34\x33\x32\x31\x20"
2392                           "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2393                           "\x68\x65\x20\x74\x69\x6d\x65\x20"
2394                           "\x66\x6f\x72\x20\x00\x00\x00\x00",
2395                 .ilen   = 32,
2396                 .result = "\x6b\x77\xb4\xd6\x30\x06\xde\xe6"
2397                           "\x05\xb1\x56\xe2\x74\x03\x97\x93"
2398                           "\x58\xde\xb9\xe7\x15\x46\x16\xd9"
2399                           "\x59\xf1\x65\x2b\xd5\xff\x92\xcc",
2400                 .rlen   = 32,
2401         },
2402 };
2403
2404 static struct cipher_testvec bf_cbc_dec_tv_template[] = {
2405         { /* From OpenSSL */
2406                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2407                           "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2408                 .klen   = 16,
2409                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2410                 .input  = "\x6b\x77\xb4\xd6\x30\x06\xde\xe6"
2411                           "\x05\xb1\x56\xe2\x74\x03\x97\x93"
2412                           "\x58\xde\xb9\xe7\x15\x46\x16\xd9"
2413                           "\x59\xf1\x65\x2b\xd5\xff\x92\xcc",
2414                 .ilen   = 32,
2415                 .result = "\x37\x36\x35\x34\x33\x32\x31\x20"
2416                           "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2417                           "\x68\x65\x20\x74\x69\x6d\x65\x20"
2418                           "\x66\x6f\x72\x20\x00\x00\x00\x00",
2419                 .rlen   = 32,
2420         },
2421 };
2422
2423 /*
2424  * Twofish test vectors.
2425  */
2426 #define TF_ENC_TEST_VECTORS             3
2427 #define TF_DEC_TEST_VECTORS             3
2428 #define TF_CBC_ENC_TEST_VECTORS         4
2429 #define TF_CBC_DEC_TEST_VECTORS         4
2430
2431 static struct cipher_testvec tf_enc_tv_template[] = {
2432         {
2433                 .key    = zeroed_string,
2434                 .klen   = 16,
2435                 .input  = zeroed_string,
2436                 .ilen   = 16,
2437                 .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2438                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2439                 .rlen   = 16,
2440         }, {
2441                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2442                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2443                           "\x00\x11\x22\x33\x44\x55\x66\x77",
2444                 .klen   = 24,
2445                 .input  = zeroed_string,
2446                 .ilen   = 16,
2447                 .result = "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf"
2448                           "\x50\x1f\x13\xb8\x92\xbd\x22\x48",
2449                 .rlen   = 16,
2450         }, {
2451                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2452                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2453                           "\x00\x11\x22\x33\x44\x55\x66\x77"
2454                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2455                 .klen   = 32,
2456                 .input  = zeroed_string,
2457                 .ilen   = 16,
2458                 .result = "\x37\x52\x7b\xe0\x05\x23\x34\xb8"
2459                           "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20",
2460                 .rlen   = 16,
2461         },
2462 };
2463
2464 static struct cipher_testvec tf_dec_tv_template[] = {
2465         {
2466                 .key    = zeroed_string,
2467                 .klen   = 16,
2468                 .input  = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2469                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2470                 .ilen   = 16,
2471                 .result = zeroed_string,
2472                 .rlen   = 16,
2473         }, {
2474                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2475                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2476                           "\x00\x11\x22\x33\x44\x55\x66\x77",
2477                 .klen   = 24,
2478                 .input  = "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf"
2479                           "\x50\x1f\x13\xb8\x92\xbd\x22\x48",
2480                 .ilen   = 16,
2481                 .result = zeroed_string,
2482                 .rlen   = 16,
2483         }, {
2484                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2485                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2486                           "\x00\x11\x22\x33\x44\x55\x66\x77"
2487                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2488                 .klen   = 32,
2489                 .input  = "\x37\x52\x7b\xe0\x05\x23\x34\xb8"
2490                           "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20",
2491                 .ilen   = 16,
2492                 .result = zeroed_string,
2493                 .rlen   = 16,
2494         },
2495 };
2496
2497 static struct cipher_testvec tf_cbc_enc_tv_template[] = {
2498         { /* Generated with Nettle */
2499                 .key    = zeroed_string,
2500                 .klen   = 16,
2501                 .iv     = zeroed_string,
2502                 .input  = zeroed_string,
2503                 .ilen   = 16,
2504                 .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2505                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2506                 .rlen   = 16,
2507         }, {
2508                 .key    = zeroed_string,
2509                 .klen   = 16,
2510                 .iv     = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2511                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2512                 .input  = zeroed_string,
2513                 .ilen   = 16,
2514                 .result = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2515                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2516                 .rlen   = 16,
2517         }, {
2518                 .key    = zeroed_string,
2519                 .klen   = 16,
2520                 .iv     = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2521                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2522                 .input  = zeroed_string,
2523                 .ilen   = 16,
2524                 .result = "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2525                           "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2526                 .rlen   = 16,
2527         }, {
2528                 .key    = zeroed_string,
2529                 .klen   = 16,
2530                 .iv     = zeroed_string,
2531                 .input  = zeroed_string,
2532                 .ilen   = 48,
2533                 .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2534                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a"
2535                           "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2536                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19"
2537                           "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2538                           "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2539                 .rlen   = 48,
2540         },
2541 };
2542
2543 static struct cipher_testvec tf_cbc_dec_tv_template[] = {
2544         { /* Reverse of the first four above */
2545                 .key    = zeroed_string,
2546                 .klen   = 16,
2547                 .iv     = zeroed_string,
2548                 .input  = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2549                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2550                 .ilen   = 16,
2551                 .result = zeroed_string,
2552                 .rlen   = 16,
2553         }, {
2554                 .key    = zeroed_string,
2555                 .klen   = 16,
2556                 .iv     = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2557                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2558                 .input  = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2559                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2560                 .ilen   = 16,
2561                 .result = zeroed_string,
2562                 .rlen   = 16,
2563         }, {
2564                 .key    = zeroed_string,
2565                 .klen   = 16,
2566                 .iv     = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2567                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2568                 .input  = "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2569                           "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2570                 .ilen   = 16,
2571                 .result = zeroed_string,
2572                 .rlen   = 16,
2573         }, {
2574                 .key    = zeroed_string,
2575                 .klen   = 16,
2576                 .iv     = zeroed_string,
2577                 .input  = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2578                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a"
2579                           "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2580                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19"
2581                           "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2582                           "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2583                 .ilen   = 48,
2584                 .result = zeroed_string,
2585                 .rlen   = 48,
2586         },
2587 };
2588
2589 /*
2590  * Serpent test vectors.  These are backwards because Serpent writes
2591  * octet sequences in right-to-left mode.
2592  */
2593 #define SERPENT_ENC_TEST_VECTORS        4
2594 #define SERPENT_DEC_TEST_VECTORS        4
2595
2596 #define TNEPRES_ENC_TEST_VECTORS        4
2597 #define TNEPRES_DEC_TEST_VECTORS        4
2598
2599 static struct cipher_testvec serpent_enc_tv_template[] = {
2600         {
2601                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
2602                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2603                 .ilen   = 16,
2604                 .result = "\x12\x07\xfc\xce\x9b\xd0\xd6\x47"
2605                           "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2",
2606                 .rlen   = 16,
2607         }, {
2608                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2609                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2610                 .klen   = 16,
2611                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
2612                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2613                 .ilen   = 16,
2614                 .result = "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c"
2615                           "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d",
2616                 .rlen   = 16,
2617         }, {
2618                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2619                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2620                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2621                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2622                 .klen   = 32,
2623                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
2624                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2625                 .ilen   = 16,
2626                 .result = "\xde\x26\x9f\xf8\x33\xe4\x32\xb8"
2627                           "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c",
2628                 .rlen   = 16,
2629         }, {
2630                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2631                 .klen   = 16,
2632                 .input  = zeroed_string,
2633                 .ilen   = 16,
2634                 .result = "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c"
2635                           "\x05\x34\x5a\x9d\xad\xbf\xaf\x49",
2636                 .rlen   = 16,
2637         },
2638 };
2639
2640 static struct cipher_testvec tnepres_enc_tv_template[] = {
2641         { /* KeySize=128, PT=0, I=1 */
2642                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
2643                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2644                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
2645                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2646                 .klen   = 16,
2647                 .ilen   = 16,
2648                 .result = "\x49\xaf\xbf\xad\x9d\x5a\x34\x05"
2649                           "\x2c\xd8\xff\xa5\x98\x6b\xd2\xdd",
2650                 .rlen   = 16,
2651         }, { /* KeySize=192, PT=0, I=1 */
2652                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
2653                           "\x00\x00\x00\x00\x00\x00\x00\x00"
2654                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2655                 .klen   = 24,
2656                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
2657                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2658                 .ilen   = 16,
2659                 .result = "\xe7\x8e\x54\x02\xc7\x19\x55\x68"
2660                           "\xac\x36\x78\xf7\xa3\xf6\x0c\x66",
2661                 .rlen   = 16,
2662         }, { /* KeySize=256, PT=0, I=1 */
2663                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
2664                           "\x00\x00\x00\x00\x00\x00\x00\x00"
2665                           "\x00\x00\x00\x00\x00\x00\x00\x00"
2666                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2667                 .klen   = 32,
2668                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
2669                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2670                 .ilen   = 16,
2671                 .result = "\xab\xed\x96\xe7\x66\xbf\x28\xcb"
2672                           "\xc0\xeb\xd2\x1a\x82\xef\x08\x19",
2673                 .rlen   = 16,
2674         }, { /* KeySize=256, I=257 */
2675                 .key    = "\x1f\x1e\x1d\x1c\x1b\x1a\x19\x18"
2676                           "\x17\x16\x15\x14\x13\x12\x11\x10"
2677                           "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08"
2678                           "\x07\x06\x05\x04\x03\x02\x01\x00",
2679                 .klen   = 32,
2680                 .input  = "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08"
2681                           "\x07\x06\x05\x04\x03\x02\x01\x00",
2682                 .ilen   = 16,
2683                 .result = "\x5c\xe7\x1c\x70\xd2\x88\x2e\x5b"
2684                           "\xb8\x32\xe4\x33\xf8\x9f\x26\xde",
2685                 .rlen   = 16,
2686         },
2687 };
2688
2689
2690 static struct cipher_testvec serpent_dec_tv_template[] = {
2691         {
2692                 .input  = "\x12\x07\xfc\xce\x9b\xd0\xd6\x47"
2693                           "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2",
2694                 .ilen   = 16,
2695                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2696                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2697                 .rlen   = 16,
2698         }, {
2699                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2700                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2701                 .klen   = 16,
2702                 .input  = "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c"
2703                           "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d",
2704                 .ilen   = 16,
2705                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2706                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2707                 .rlen   = 16,
2708         }, {
2709                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2710                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2711                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2712                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2713                 .klen   = 32,
2714                 .input  = "\xde\x26\x9f\xf8\x33\xe4\x32\xb8"
2715                           "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c",
2716                 .ilen   = 16,
2717                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2718                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2719                 .rlen   = 16,
2720         }, {
2721                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2722                 .klen   = 16,
2723                 .input  = "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c"
2724                           "\x05\x34\x5a\x9d\xad\xbf\xaf\x49",
2725                 .ilen   = 16,
2726                 .result = zeroed_string,
2727                 .rlen   = 16,
2728         },
2729 };
2730
2731 static struct cipher_testvec tnepres_dec_tv_template[] = {
2732         {
2733                 .input  = "\x41\xcc\x6b\x31\x59\x31\x45\x97"
2734                           "\x6d\x6f\xbb\x38\x4b\x37\x21\x28",
2735                 .ilen   = 16,
2736                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2737                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2738                 .rlen   = 16,
2739         }, {
2740                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2741                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2742                 .klen   = 16,
2743                 .input  = "\xea\xf4\xd7\xfc\xd8\x01\x34\x47"
2744                           "\x81\x45\x0b\xfa\x0c\xd6\xad\x6e",
2745                 .ilen   = 16,
2746                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2747                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2748                 .rlen   = 16,
2749         }, {
2750                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2751                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2752                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2753                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2754                 .klen   = 32,
2755                 .input  = "\x64\xa9\x1a\x37\xed\x9f\xe7\x49"
2756                           "\xa8\x4e\x76\xd6\xf5\x0d\x78\xee",
2757                 .ilen   = 16,
2758                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2759                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2760                 .rlen   = 16,
2761         }, { /* KeySize=128, I=121 */
2762                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2763                 .klen   = 16,
2764                 .input  = "\x3d\xda\xbf\xc0\x06\xda\xab\x06"
2765                           "\x46\x2a\xf4\xef\x81\x54\x4e\x26",
2766                 .ilen   = 16,
2767                 .result = zeroed_string,
2768                 .rlen   = 16,
2769         },
2770 };
2771
2772
2773 /* Cast6 test vectors from RFC 2612 */
2774 #define CAST6_ENC_TEST_VECTORS  3
2775 #define CAST6_DEC_TEST_VECTORS  3
2776
2777 static struct cipher_testvec cast6_enc_tv_template[] = {
2778         {
2779                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2780                           "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d",
2781                 .klen   = 16,
2782                 .input  = zeroed_string,
2783                 .ilen   = 16,
2784                 .result = "\xc8\x42\xa0\x89\x72\xb4\x3d\x20"
2785                           "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b",
2786                 .rlen   = 16,
2787         }, {
2788                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2789                           "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2790                           "\xba\xc7\x7a\x77\x17\x94\x28\x63",
2791                 .klen   = 24,
2792                 .input  = zeroed_string,
2793                 .ilen   = 16,
2794                 .result = "\x1b\x38\x6c\x02\x10\xdc\xad\xcb"
2795                           "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8",
2796                 .rlen   = 16,
2797         }, {
2798                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2799                           "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2800                           "\x8d\x7c\x47\xce\x26\x49\x08\x46"
2801                           "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04",
2802                 .klen   = 32,
2803                 .input  = zeroed_string,
2804                 .ilen   = 16,
2805                 .result = "\x4f\x6a\x20\x38\x28\x68\x97\xb9"
2806                           "\xc9\x87\x01\x36\x55\x33\x17\xfa",
2807                 .rlen   = 16,
2808         },
2809 };
2810
2811 static struct cipher_testvec cast6_dec_tv_template[] = {
2812         {
2813                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2814                           "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d",
2815                 .klen   = 16,
2816                 .input  = "\xc8\x42\xa0\x89\x72\xb4\x3d\x20"
2817                           "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b",
2818                 .ilen   = 16,
2819                 .result = zeroed_string,
2820                 .rlen   = 16,
2821         }, {
2822                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2823                           "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2824                           "\xba\xc7\x7a\x77\x17\x94\x28\x63",
2825                 .klen   = 24,
2826                 .input  = "\x1b\x38\x6c\x02\x10\xdc\xad\xcb"
2827                           "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8",
2828                 .ilen   = 16,
2829                 .result = zeroed_string,
2830                 .rlen   = 16,
2831         }, {
2832                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2833                           "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2834                           "\x8d\x7c\x47\xce\x26\x49\x08\x46"
2835                           "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04",
2836                 .klen   = 32,
2837                 .input  = "\x4f\x6a\x20\x38\x28\x68\x97\xb9"
2838                           "\xc9\x87\x01\x36\x55\x33\x17\xfa",
2839                 .ilen   = 16,
2840                 .result = zeroed_string,
2841                 .rlen   = 16,
2842         },
2843 };
2844
2845
2846 /*
2847  * AES test vectors.
2848  */
2849 #define AES_ENC_TEST_VECTORS 3
2850 #define AES_DEC_TEST_VECTORS 3
2851 #define AES_CBC_ENC_TEST_VECTORS 4
2852 #define AES_CBC_DEC_TEST_VECTORS 4
2853 #define AES_LRW_ENC_TEST_VECTORS 8
2854 #define AES_LRW_DEC_TEST_VECTORS 8
2855 #define AES_XTS_ENC_TEST_VECTORS 4
2856 #define AES_XTS_DEC_TEST_VECTORS 4
2857 #define AES_CTR_ENC_TEST_VECTORS 7
2858 #define AES_CTR_DEC_TEST_VECTORS 6
2859 #define AES_GCM_ENC_TEST_VECTORS 9
2860 #define AES_GCM_DEC_TEST_VECTORS 8
2861 #define AES_CCM_ENC_TEST_VECTORS 7
2862 #define AES_CCM_DEC_TEST_VECTORS 7
2863 #define AES_CCM_4309_ENC_TEST_VECTORS 7
2864 #define AES_CCM_4309_DEC_TEST_VECTORS 10
2865
2866 static struct cipher_testvec aes_enc_tv_template[] = {
2867         { /* From FIPS-197 */
2868                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2869                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2870                 .klen   = 16,
2871                 .input  = "\x00\x11\x22\x33\x44\x55\x66\x77"
2872                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2873                 .ilen   = 16,
2874                 .result = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30"
2875                           "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a",
2876                 .rlen   = 16,
2877         }, {
2878                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2879                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2880                           "\x10\x11\x12\x13\x14\x15\x16\x17",
2881                 .klen   = 24,
2882                 .input  = "\x00\x11\x22\x33\x44\x55\x66\x77"
2883                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2884                 .ilen   = 16,
2885                 .result = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0"
2886                           "\x6e\xaf\x70\xa0\xec\x0d\x71\x91",
2887                 .rlen   = 16,
2888         }, {
2889                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2890                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2891                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2892                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2893                 .klen   = 32,
2894                 .input  = "\x00\x11\x22\x33\x44\x55\x66\x77"
2895                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2896                 .ilen   = 16,
2897                 .result = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf"
2898                           "\xea\xfc\x49\x90\x4b\x49\x60\x89",
2899                 .rlen   = 16,
2900         },
2901 };
2902
2903 static struct cipher_testvec aes_dec_tv_template[] = {
2904         { /* From FIPS-197 */
2905                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2906                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2907                 .klen   = 16,
2908                 .input  = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30"
2909                           "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a",
2910                 .ilen   = 16,
2911                 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
2912                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2913                 .rlen   = 16,
2914         }, {
2915                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2916                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2917                           "\x10\x11\x12\x13\x14\x15\x16\x17",
2918                 .klen   = 24,
2919                 .input  = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0"
2920                           "\x6e\xaf\x70\xa0\xec\x0d\x71\x91",
2921                 .ilen   = 16,
2922                 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
2923                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2924                 .rlen   = 16,
2925         }, {
2926                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2927                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2928                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2929                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2930                 .klen   = 32,
2931                 .input  = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf"
2932                           "\xea\xfc\x49\x90\x4b\x49\x60\x89",
2933                 .ilen   = 16,
2934                 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
2935                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2936                 .rlen   = 16,
2937         },
2938 };
2939
2940 static struct cipher_testvec aes_cbc_enc_tv_template[] = {
2941         { /* From RFC 3602 */
2942                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
2943                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
2944                 .klen   = 16,
2945                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
2946                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
2947                 .input  = "Single block msg",
2948                 .ilen   = 16,
2949                 .result = "\xe3\x53\x77\x9c\x10\x79\xae\xb8"
2950                           "\x27\x08\x94\x2d\xbe\x77\x18\x1a",
2951                 .rlen   = 16,
2952         }, {
2953                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
2954                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
2955                 .klen   = 16,
2956                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
2957                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
2958                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
2959                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2960                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2961                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2962                 .ilen   = 32,
2963                 .result = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a"
2964                           "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a"
2965                           "\x75\x86\x60\x2d\x25\x3c\xff\xf9"
2966                           "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1",
2967                 .rlen   = 32,
2968         }, { /* From NIST SP800-38A */
2969                 .key    = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
2970                           "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
2971                           "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
2972                 .klen   = 24,
2973                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
2974                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2975                 .input  = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
2976                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
2977                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
2978                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
2979                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
2980                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
2981                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
2982                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
2983                 .ilen   = 64,
2984                 .result = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d"
2985                           "\x71\x78\x18\x3a\x9f\xa0\x71\xe8"
2986                           "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4"
2987                           "\xe5\xe7\x38\x76\x3f\x69\x14\x5a"
2988                           "\x57\x1b\x24\x20\x12\xfb\x7a\xe0"
2989                           "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0"
2990                           "\x08\xb0\xe2\x79\x88\x59\x88\x81"
2991                           "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd",
2992                 .rlen   = 64,
2993         }, {
2994                 .key    = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
2995                           "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
2996                           "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
2997                           "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
2998                 .klen   = 32,
2999                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
3000                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3001                 .input  = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3002                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3003                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3004                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3005                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3006                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3007                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3008                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3009                 .ilen   = 64,
3010                 .result = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba"
3011                           "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6"
3012                           "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d"
3013                           "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d"
3014                           "\x39\xf2\x33\x69\xa9\xd9\xba\xcf"
3015                           "\xa5\x30\xe2\x63\x04\x23\x14\x61"
3016                           "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc"
3017                           "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b",
3018                 .rlen   = 64,
3019         },
3020 };
3021
3022 static struct cipher_testvec aes_cbc_dec_tv_template[] = {
3023         { /* From RFC 3602 */
3024                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
3025                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
3026                 .klen   = 16,
3027                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
3028                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
3029                 .input  = "\xe3\x53\x77\x9c\x10\x79\xae\xb8"
3030                           "\x27\x08\x94\x2d\xbe\x77\x18\x1a",
3031                 .ilen   = 16,
3032                 .result = "Single block msg",
3033                 .rlen   = 16,
3034         }, {
3035                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
3036                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
3037                 .klen   = 16,
3038                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
3039                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
3040                 .input  = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a"
3041                           "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a"
3042                           "\x75\x86\x60\x2d\x25\x3c\xff\xf9"
3043                           "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1",
3044                 .ilen   = 32,
3045                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
3046                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3047                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3048                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
3049                 .rlen   = 32,
3050         }, { /* From NIST SP800-38A */
3051                 .key    = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
3052                           "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
3053                           "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
3054                 .klen   = 24,
3055                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
3056                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3057                 .input  = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d"
3058                           "\x71\x78\x18\x3a\x9f\xa0\x71\xe8"
3059                           "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4"
3060                           "\xe5\xe7\x38\x76\x3f\x69\x14\x5a"
3061                           "\x57\x1b\x24\x20\x12\xfb\x7a\xe0"
3062                           "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0"
3063                           "\x08\xb0\xe2\x79\x88\x59\x88\x81"
3064                           "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd",
3065                 .ilen   = 64,
3066                 .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3067                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3068                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3069                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3070                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3071                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3072                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3073                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3074                 .rlen   = 64,
3075         }, {
3076                 .key    = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
3077                           "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
3078                           "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
3079                           "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
3080                 .klen   = 32,
3081                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
3082                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3083                 .input  = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba"
3084                           "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6"
3085                           "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d"
3086                           "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d"
3087                           "\x39\xf2\x33\x69\xa9\xd9\xba\xcf"
3088                           "\xa5\x30\xe2\x63\x04\x23\x14\x61"
3089                           "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc"
3090                           "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b",
3091                 .ilen   = 64,
3092                 .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3093                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3094                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3095                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3096                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3097                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3098                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3099                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3100                 .rlen   = 64,
3101         },
3102 };
3103
3104 static struct cipher_testvec aes_lrw_enc_tv_template[] = {
3105         /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */
3106         { /* LRW-32-AES 1 */
3107                 .key    = "\x45\x62\xac\x25\xf8\x28\x17\x6d"
3108                           "\x4c\x26\x84\x14\xb5\x68\x01\x85"
3109                           "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03"
3110                           "\xee\x5a\x83\x0c\xcc\x09\x4c\x87",
3111                 .klen   = 32,
3112                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3113                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3114                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3115                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3116                 .ilen   = 16,
3117                 .result = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f"
3118                           "\xe9\x5d\x48\x92\x54\x63\x4e\xb8",
3119                 .rlen   = 16,
3120         }, { /* LRW-32-AES 2 */
3121                 .key    = "\x59\x70\x47\x14\xf5\x57\x47\x8c"
3122                           "\xd7\x79\xe8\x0f\x54\x88\x79\x44"
3123                           "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea"
3124                           "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf",
3125                 .klen   = 32,
3126                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3127                           "\x00\x00\x00\x00\x00\x00\x00\x02",
3128                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3129                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3130                 .ilen   = 16,
3131                 .result = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5"
3132                           "\x27\x4f\x07\x69\xb2\x60\xe1\x36",
3133                 .rlen   = 16,
3134         }, { /* LRW-32-AES 3 */
3135                 .key    = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50"
3136                           "\x30\xfe\x69\xe2\x37\x7f\x98\x47"
3137                           "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6"
3138                           "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f",
3139                 .klen   = 32,
3140                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3141                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3142                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3143                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3144                 .ilen   = 16,
3145                 .result = "\x76\x32\x21\x83\xed\x8f\xf1\x82"
3146                           "\xf9\x59\x62\x03\x69\x0e\x5e\x01",
3147                 .rlen   = 16,
3148         }, { /* LRW-32-AES 4 */
3149                 .key    = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15"
3150                           "\x25\x83\xf7\x3c\x1f\x01\x28\x74"
3151                           "\xca\xc6\xbc\x35\x4d\x4a\x65\x54"
3152                           "\x90\xae\x61\xcf\x7b\xae\xbd\xcc"
3153                           "\xad\xe4\x94\xc5\x4a\x29\xae\x70",
3154                 .klen   = 40,
3155                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3156                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3157                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3158                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3159                 .ilen   = 16,
3160                 .result = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0"
3161                           "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41",
3162                 .rlen   = 16,
3163         }, { /* LRW-32-AES 5 */
3164                 .key    = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff"
3165                           "\xf8\x86\xce\xac\x93\xc5\xad\xc6"
3166                           "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd"
3167                           "\x52\x13\xb2\xb7\xf0\xff\x11\xd8"
3168                           "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f",
3169                 .klen   = 40,
3170                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3171                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3172                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3173                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3174                 .ilen   = 16,
3175                 .result = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65"
3176                           "\xc8\x60\x48\x02\x87\xe3\x34\x06",
3177                 .rlen   = 16,
3178         }, { /* LRW-32-AES 6 */
3179                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3180                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3181                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3182                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3183                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3184                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3185                 .klen   = 48,
3186                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3187                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3188                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3189                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3190                 .ilen   = 16,
3191                 .result = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e"
3192                           "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b",
3193                 .rlen   = 16,
3194         }, { /* LRW-32-AES 7 */
3195                 .key    = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d"
3196                           "\xd4\x70\x98\x0b\xc7\x95\x84\xc8"
3197                           "\xb2\xfb\x64\xce\x60\x97\x87\x8d"
3198                           "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7"
3199                           "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4"
3200                           "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c",
3201                 .klen   = 48,
3202                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3203                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3204                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3205                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3206                 .ilen   = 16,
3207                 .result = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f"
3208                           "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5",
3209                 .rlen   = 16,
3210         }, {
3211 /* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */
3212                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3213                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3214                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3215                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3216                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3217                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3218                 .klen   = 48,
3219                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3220                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3221                 .input  = "\x05\x11\xb7\x18\xab\xc6\x2d\xac"
3222                           "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c"
3223                           "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8"
3224                           "\x50\x38\x1f\x71\x49\xb6\x57\xd6"
3225                           "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90"
3226                           "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6"
3227                           "\xad\x1e\x9e\x20\x5f\x38\xbe\x04"
3228                           "\xda\x10\x8e\xed\xa2\xa4\x87\xab"
3229                           "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c"
3230                           "\xc9\xac\x42\x31\x95\x7c\xc9\x04"
3231                           "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6"
3232                           "\x15\xd7\x3f\x4f\x2f\x66\x69\x03"
3233                           "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65"
3234                           "\x4c\x96\x12\xed\x7c\x92\x03\x01"
3235                           "\x6f\xbc\x35\x93\xac\xf1\x27\xf1"
3236                           "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50"
3237                           "\x89\xa4\x8e\x66\x44\x85\xcc\xfd"
3238                           "\x33\x14\x70\xe3\x96\xb2\xc3\xd3"
3239                           "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5"
3240                           "\x2d\x64\x75\xdd\xb4\x54\xe6\x74"
3241                           "\x8c\xd3\x9d\x9e\x86\xab\x51\x53"
3242                           "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40"
3243                           "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5"
3244                           "\x76\x12\x73\x44\x1a\x56\xd7\x72"
3245                           "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda"
3246                           "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd"
3247                           "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60"
3248                           "\x1a\xe2\x70\x85\x58\xc2\x1b\x09"
3249                           "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9"
3250                           "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8"
3251                           "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8"
3252                           "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10"
3253                           "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1"
3254                           "\x90\x3e\x76\x4a\x74\xa4\x21\x2c"
3255                           "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e"
3256                           "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f"
3257                           "\x8d\x23\x31\x74\x84\xeb\x88\x6e"
3258                           "\xcc\xb9\xbc\x22\x83\x19\x07\x22"
3259                           "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78"
3260                           "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5"
3261                           "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41"
3262                           "\x3c\xce\x8f\x42\x60\x71\xa7\x75"
3263                           "\x08\x40\x65\x8a\x82\xbf\xf5\x43"
3264                           "\x71\x96\xa9\x4d\x44\x8a\x20\xbe"
3265                           "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65"
3266                           "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9"
3267                           "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4"
3268                           "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a"
3269                           "\x62\x73\x65\xfd\x46\x63\x25\x3d"
3270                           "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf"
3271                           "\x24\xf3\xb4\xac\x64\xba\xdf\x4b"
3272                           "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7"
3273                           "\xc5\x68\x77\x84\x32\x2b\xcc\x85"
3274                           "\x74\x96\xf0\x12\x77\x61\xb9\xeb"
3275                           "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8"
3276                           "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24"
3277                           "\xda\x39\x87\x45\xc0\x2b\xbb\x01"
3278                           "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce"
3279                           "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6"
3280                           "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32"
3281                           "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45"
3282                           "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6"
3283                           "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4"
3284                           "\x21\xc4\xc2\x75\x67\x89\x37\x0a",
3285                 .ilen   = 512,
3286                 .result = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b"
3287                           "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a"
3288                           "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23"
3289                           "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e"
3290                           "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c"
3291                           "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d"
3292                           "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3"
3293                           "\xe8\x58\x46\x97\x39\x51\x07\xde"
3294                           "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3"
3295                           "\x0e\x84\x23\x1d\x16\xd4\x1c\x59"
3296                           "\x9c\x1a\x02\x55\xab\x3a\x97\x1d"
3297                           "\xdf\xdd\xc7\x06\x51\xd7\x70\xae"
3298                           "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82"
3299                           "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68"
3300                           "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce"
3301                           "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98"
3302                           "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2"
3303                           "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f"
3304                           "\xea\x20\xe7\xcb\x65\x77\x3a\xdf"
3305                           "\xc8\x97\x67\x15\xc2\x2a\x27\xcc"
3306                           "\x18\x55\xa1\x24\x0b\x24\x24\xaf"
3307                           "\x5b\xec\x68\xb8\xc8\xf5\xba\x63"
3308                           "\xff\xed\x89\xce\xd5\x3d\x88\xf3"
3309                           "\x25\xef\x05\x7c\x3a\xef\xeb\xd8"
3310                           "\x7a\x32\x0d\xd1\x1e\x58\x59\x99"
3311                           "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c"
3312                           "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50"
3313                           "\x41\x30\x58\xc5\x62\x74\x52\x1d"
3314                           "\x45\x24\x6a\x42\x64\x4f\x97\x1c"
3315                           "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48"
3316                           "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1"
3317                           "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46"
3318                           "\xe4\x81\x84\x95\x36\x59\x7a\x6b"
3319                           "\xaa\xb3\x60\xad\xce\x9f\x9f\x28"
3320                           "\xe0\x01\x75\x22\xc4\x4e\xa9\x62"
3321                           "\x5c\x62\x0d\x00\xcb\x13\xe8\x43"
3322                           "\x72\xd4\x2d\x53\x46\xb5\xd1\x16"
3323                           "\x22\x18\xdf\x34\x33\xf5\xd6\x1c"
3324                           "\xb8\x79\x78\x97\x94\xff\x72\x13"
3325                           "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6"
3326                           "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4"
3327                           "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f"
3328                           "\x2d\x14\x8e\x24\x61\x2c\xe1\x17"
3329                           "\xcc\xce\x51\x0c\x19\x8a\x82\x30"
3330                           "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd"
3331                           "\xb7\xeb\xfa\xfd\x27\x51\xde\x85"
3332                           "\x1e\x86\x53\x11\x53\x94\x00\xee"
3333                           "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11"
3334                           "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62"
3335                           "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1"
3336                           "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a"
3337                           "\x9e\xfa\x31\x18\x45\x3c\x21\x33"
3338                           "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1"
3339                           "\x03\xad\x1b\x48\xd4\x67\x27\xf0"
3340                           "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7"
3341                           "\xdd\x2b\x01\x39\x04\x5a\x58\x7a"
3342                           "\xf7\x11\x90\xec\xbd\x51\x5c\x32"
3343                           "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6"
3344                           "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d"
3345                           "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4"
3346                           "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3"
3347                           "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29"
3348                           "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7"
3349                           "\x74\x3f\x7d\x58\x88\x75\xde\x3e",
3350                 .rlen   = 512,
3351         }
3352 };
3353
3354 static struct cipher_testvec aes_lrw_dec_tv_template[] = {
3355         /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */
3356         /* same as enc vectors with input and result reversed */
3357         { /* LRW-32-AES 1 */
3358                 .key    = "\x45\x62\xac\x25\xf8\x28\x17\x6d"
3359                           "\x4c\x26\x84\x14\xb5\x68\x01\x85"
3360                           "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03"
3361                           "\xee\x5a\x83\x0c\xcc\x09\x4c\x87",
3362                 .klen   = 32,
3363                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3364                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3365                 .input  = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f"
3366                           "\xe9\x5d\x48\x92\x54\x63\x4e\xb8",
3367                 .ilen   = 16,
3368                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3369                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3370                 .rlen   = 16,
3371         }, { /* LRW-32-AES 2 */
3372                 .key    = "\x59\x70\x47\x14\xf5\x57\x47\x8c"
3373                           "\xd7\x79\xe8\x0f\x54\x88\x79\x44"
3374                           "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea"
3375                           "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf",
3376                 .klen   = 32,
3377                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3378                           "\x00\x00\x00\x00\x00\x00\x00\x02",
3379                 .input  = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5"
3380                           "\x27\x4f\x07\x69\xb2\x60\xe1\x36",
3381                 .ilen   = 16,
3382                 .result  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3383                            "\x38\x39\x41\x42\x43\x44\x45\x46",
3384                 .rlen   = 16,
3385         }, { /* LRW-32-AES 3 */
3386                 .key    = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50"
3387                           "\x30\xfe\x69\xe2\x37\x7f\x98\x47"
3388                           "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6"
3389                           "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f",
3390                 .klen   = 32,
3391                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3392                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3393                 .input  = "\x76\x32\x21\x83\xed\x8f\xf1\x82"
3394                           "\xf9\x59\x62\x03\x69\x0e\x5e\x01",
3395                 .ilen   = 16,
3396                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3397                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3398                 .rlen   = 16,
3399         }, { /* LRW-32-AES 4 */
3400                 .key    = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15"
3401                           "\x25\x83\xf7\x3c\x1f\x01\x28\x74"
3402                           "\xca\xc6\xbc\x35\x4d\x4a\x65\x54"
3403                           "\x90\xae\x61\xcf\x7b\xae\xbd\xcc"
3404                           "\xad\xe4\x94\xc5\x4a\x29\xae\x70",
3405                 .klen   = 40,
3406                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3407                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3408                 .input  = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0"
3409                           "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41",
3410                 .ilen   = 16,
3411                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3412                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3413                 .rlen   = 16,
3414         }, { /* LRW-32-AES 5 */
3415                 .key    = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff"
3416                           "\xf8\x86\xce\xac\x93\xc5\xad\xc6"
3417                           "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd"
3418                           "\x52\x13\xb2\xb7\xf0\xff\x11\xd8"
3419                           "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f",
3420                 .klen   = 40,
3421                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3422                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3423                 .input  = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65"
3424                           "\xc8\x60\x48\x02\x87\xe3\x34\x06",
3425                 .ilen   = 16,
3426                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3427                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3428                 .rlen   = 16,
3429         }, { /* LRW-32-AES 6 */
3430                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3431                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3432                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3433                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3434                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3435                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3436                 .klen   = 48,
3437                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3438                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3439                 .input  = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e"
3440                           "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b",
3441                 .ilen   = 16,
3442                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3443                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3444                 .rlen   = 16,
3445         }, { /* LRW-32-AES 7 */
3446                 .key    = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d"
3447                           "\xd4\x70\x98\x0b\xc7\x95\x84\xc8"
3448                           "\xb2\xfb\x64\xce\x60\x97\x87\x8d"
3449                           "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7"
3450                           "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4"
3451                           "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c",
3452                 .klen   = 48,
3453                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3454                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3455                 .input  = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f"
3456                           "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5",
3457                 .ilen   = 16,
3458                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3459                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3460                 .rlen   = 16,
3461         }, {
3462 /* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */
3463                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3464                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3465                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3466                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3467                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3468                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3469                 .klen   = 48,
3470                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3471                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3472                 .input  = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b"
3473                           "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a"
3474                           "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23"
3475                           "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e"
3476                           "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c"
3477                           "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d"
3478                           "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3"
3479                           "\xe8\x58\x46\x97\x39\x51\x07\xde"
3480                           "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3"
3481                           "\x0e\x84\x23\x1d\x16\xd4\x1c\x59"
3482                           "\x9c\x1a\x02\x55\xab\x3a\x97\x1d"
3483                           "\xdf\xdd\xc7\x06\x51\xd7\x70\xae"
3484                           "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82"
3485                           "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68"
3486                           "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce"
3487                           "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98"
3488                           "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2"
3489                           "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f"
3490                           "\xea\x20\xe7\xcb\x65\x77\x3a\xdf"
3491                           "\xc8\x97\x67\x15\xc2\x2a\x27\xcc"
3492                           "\x18\x55\xa1\x24\x0b\x24\x24\xaf"
3493                           "\x5b\xec\x68\xb8\xc8\xf5\xba\x63"
3494                           "\xff\xed\x89\xce\xd5\x3d\x88\xf3"
3495                           "\x25\xef\x05\x7c\x3a\xef\xeb\xd8"
3496                           "\x7a\x32\x0d\xd1\x1e\x58\x59\x99"
3497                           "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c"
3498                           "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50"
3499                           "\x41\x30\x58\xc5\x62\x74\x52\x1d"
3500                           "\x45\x24\x6a\x42\x64\x4f\x97\x1c"
3501                           "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48"
3502                           "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1"
3503                           "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46"
3504                           "\xe4\x81\x84\x95\x36\x59\x7a\x6b"
3505                           "\xaa\xb3\x60\xad\xce\x9f\x9f\x28"
3506                           "\xe0\x01\x75\x22\xc4\x4e\xa9\x62"
3507                           "\x5c\x62\x0d\x00\xcb\x13\xe8\x43"
3508                           "\x72\xd4\x2d\x53\x46\xb5\xd1\x16"
3509                           "\x22\x18\xdf\x34\x33\xf5\xd6\x1c"
3510                           "\xb8\x79\x78\x97\x94\xff\x72\x13"
3511                           "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6"
3512                           "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4"
3513                           "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f"
3514                           "\x2d\x14\x8e\x24\x61\x2c\xe1\x17"
3515                           "\xcc\xce\x51\x0c\x19\x8a\x82\x30"
3516                           "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd"
3517                           "\xb7\xeb\xfa\xfd\x27\x51\xde\x85"
3518                           "\x1e\x86\x53\x11\x53\x94\x00\xee"
3519                           "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11"
3520                           "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62"
3521                           "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1"
3522                           "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a"
3523                           "\x9e\xfa\x31\x18\x45\x3c\x21\x33"
3524                           "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1"
3525                           "\x03\xad\x1b\x48\xd4\x67\x27\xf0"
3526                           "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7"
3527                           "\xdd\x2b\x01\x39\x04\x5a\x58\x7a"
3528                           "\xf7\x11\x90\xec\xbd\x51\x5c\x32"
3529                           "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6"
3530                           "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d"
3531                           "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4"
3532                           "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3"
3533                           "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29"
3534                           "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7"
3535                           "\x74\x3f\x7d\x58\x88\x75\xde\x3e",
3536                 .ilen   = 512,
3537                 .result = "\x05\x11\xb7\x18\xab\xc6\x2d\xac"
3538                           "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c"
3539                           "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8"
3540                           "\x50\x38\x1f\x71\x49\xb6\x57\xd6"
3541                           "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90"
3542                           "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6"
3543                           "\xad\x1e\x9e\x20\x5f\x38\xbe\x04"
3544                           "\xda\x10\x8e\xed\xa2\xa4\x87\xab"
3545                           "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c"
3546                           "\xc9\xac\x42\x31\x95\x7c\xc9\x04"
3547                           "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6"
3548                           "\x15\xd7\x3f\x4f\x2f\x66\x69\x03"
3549                           "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65"
3550                           "\x4c\x96\x12\xed\x7c\x92\x03\x01"
3551                           "\x6f\xbc\x35\x93\xac\xf1\x27\xf1"
3552                           "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50"
3553                           "\x89\xa4\x8e\x66\x44\x85\xcc\xfd"
3554                           "\x33\x14\x70\xe3\x96\xb2\xc3\xd3"
3555                           "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5"
3556                           "\x2d\x64\x75\xdd\xb4\x54\xe6\x74"
3557                           "\x8c\xd3\x9d\x9e\x86\xab\x51\x53"
3558                           "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40"
3559                           "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5"
3560                           "\x76\x12\x73\x44\x1a\x56\xd7\x72"
3561                           "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda"
3562                           "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd"
3563                           "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60"
3564                           "\x1a\xe2\x70\x85\x58\xc2\x1b\x09"
3565                           "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9"
3566                           "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8"
3567                           "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8"
3568                           "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10"
3569                           "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1"
3570                           "\x90\x3e\x76\x4a\x74\xa4\x21\x2c"
3571                           "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e"
3572                           "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f"
3573                           "\x8d\x23\x31\x74\x84\xeb\x88\x6e"
3574                           "\xcc\xb9\xbc\x22\x83\x19\x07\x22"
3575                           "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78"
3576                           "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5"
3577                           "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41"
3578                           "\x3c\xce\x8f\x42\x60\x71\xa7\x75"
3579                           "\x08\x40\x65\x8a\x82\xbf\xf5\x43"
3580                           "\x71\x96\xa9\x4d\x44\x8a\x20\xbe"
3581                           "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65"
3582                           "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9"
3583                           "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4"
3584                           "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a"
3585                           "\x62\x73\x65\xfd\x46\x63\x25\x3d"
3586                           "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf"
3587                           "\x24\xf3\xb4\xac\x64\xba\xdf\x4b"
3588                           "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7"
3589                           "\xc5\x68\x77\x84\x32\x2b\xcc\x85"
3590                           "\x74\x96\xf0\x12\x77\x61\xb9\xeb"
3591                           "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8"
3592                           "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24"
3593                           "\xda\x39\x87\x45\xc0\x2b\xbb\x01"
3594                           "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce"
3595                           "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6"
3596                           "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32"
3597                           "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45"
3598                           "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6"
3599                           "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4"
3600                           "\x21\xc4\xc2\x75\x67\x89\x37\x0a",
3601                 .rlen   = 512,
3602         }
3603 };
3604
3605 static struct cipher_testvec aes_xts_enc_tv_template[] = {
3606         /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */
3607         { /* XTS-AES 1 */
3608                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
3609                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3610                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3611                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3612                 .klen   = 32,
3613                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3614                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3615                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
3616                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3617                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3618                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3619                 .ilen   = 32,
3620                 .result = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec"
3621                           "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92"
3622                           "\xcd\x43\xd2\xf5\x95\x98\xed\x85"
3623                           "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e",
3624                 .rlen   = 32,
3625         }, { /* XTS-AES 2 */
3626                 .key    = "\x11\x11\x11\x11\x11\x11\x11\x11"
3627                           "\x11\x11\x11\x11\x11\x11\x11\x11"
3628                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3629                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3630                 .klen   = 32,
3631                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3632                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3633                 .input  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3634                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3635                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3636                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3637                 .ilen   = 32,
3638                 .result = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e"
3639                           "\x39\x33\x40\x38\xac\xef\x83\x8b"
3640                           "\xfb\x18\x6f\xff\x74\x80\xad\xc4"
3641                           "\x28\x93\x82\xec\xd6\xd3\x94\xf0",
3642                 .rlen   = 32,
3643         }, { /* XTS-AES 3 */
3644                 .key    = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8"
3645                           "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0"
3646                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3647                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3648                 .klen   = 32,
3649                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3650                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3651                 .input  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3652                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3653                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3654                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3655                 .ilen   = 32,
3656                 .result = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a"
3657                           "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2"
3658                           "\x92\xdf\x4c\x04\x7e\x0b\x21\x53"
3659                           "\x21\x86\xa5\x97\x1a\x22\x7a\x89",
3660                 .rlen   = 32,
3661         }, { /* XTS-AES 4 */
3662                 .key    = "\x27\x18\x28\x18\x28\x45\x90\x45"
3663                           "\x23\x53\x60\x28\x74\x71\x35\x26"
3664                           "\x31\x41\x59\x26\x53\x58\x97\x93"
3665                           "\x23\x84\x62\x64\x33\x83\x27\x95",
3666                 .klen   = 32,
3667                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3668                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3669                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
3670                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3671                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3672                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3673                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3674                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3675                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3676                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3677                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3678                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3679                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3680                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3681                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3682                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3683                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3684                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3685                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3686                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3687                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3688                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3689                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3690                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3691                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3692                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3693                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3694                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3695                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3696                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3697                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3698                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3699                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3700                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
3701                           "\x00\x01\x02\x03\x04\x05\x06\x07"
3702                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3703                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3704                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3705                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3706                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3707                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3708                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3709                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3710                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3711                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3712                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3713                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3714                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3715                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3716                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3717                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3718                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3719                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3720                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3721                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3722                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3723                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3724                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3725                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3726                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3727                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3728                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3729                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3730                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3731                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3732                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
3733                 .ilen   = 512,
3734                 .result = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76"
3735                           "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2"
3736                           "\xa9\x6e\x4b\xbe\x32\x08\xff\x25"
3737                           "\x28\x7d\xd3\x81\x96\x16\xe8\x9c"
3738                           "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f"
3739                           "\x83\x33\xd8\xfa\x7f\x56\x00\x00"
3740                           "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad"
3741                           "\x40\xe7\x36\xdd\xb4\xd3\x54\x12"
3742                           "\x32\x80\x63\xfd\x2a\xab\x53\xe5"
3743                           "\xea\x1e\x0a\x9f\x33\x25\x00\xa5"
3744                           "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc"
3745                           "\x51\x2c\x88\x66\xc7\xe8\x60\xce"
3746                           "\x93\xfd\xf1\x66\xa2\x49\x12\xb4"
3747                           "\x22\x97\x61\x46\xae\x20\xce\x84"
3748                           "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a"
3749                           "\xae\xf2\x0c\x0d\x61\xad\x02\x65"
3750                           "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89"
3751                           "\x52\xc6\x51\xd3\x31\x74\xbe\x51"
3752                           "\xa1\x0c\x42\x11\x10\xe6\xd8\x15"
3753                           "\x88\xed\xe8\x21\x03\xa2\x52\xd8"
3754                           "\xa7\x50\xe8\x76\x8d\xef\xff\xed"
3755                           "\x91\x22\x81\x0a\xae\xb9\x9f\x91"
3756                           "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e"
3757                           "\x51\xbc\xb0\x82\x35\xa6\xf4\x34"
3758                           "\x13\x32\xe4\xca\x60\x48\x2a\x4b"
3759                           "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5"
3760                           "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4"
3761                           "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c"
3762                           "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd"
3763                           "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3"
3764                           "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f"
3765                           "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e"
3766                           "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91"
3767                           "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19"
3768                           "\x7c\x4e\x5b\x03\x39\x36\x97\xe1"
3769                           "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc"
3770                           "\x1e\x08\x29\x85\x16\xe2\xc9\xed"
3771                           "\x03\xff\x3c\x1b\x78\x60\xf6\xde"
3772                           "\x76\xd4\xce\xcd\x94\xc8\x11\x98"
3773                           "\x55\xef\x52\x97\xca\x67\xe9\xf3"
3774                           "\xe7\xff\x72\xb1\xe9\x97\x85\xca"
3775                           "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6"
3776                           "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc"
3777                           "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44"
3778                           "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0"
3779                           "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95"
3780                           "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4"
3781                           "\x99\x02\x7a\x78\x57\x2a\xee\xbd"
3782                           "\x74\xd2\x0c\xc3\x98\x81\xc2\x13"
3783                           "\xee\x77\x0b\x10\x10\xe4\xbe\xa7"
3784                           "\x18\x84\x69\x77\xae\x11\x9f\x7a"
3785                           "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52"
3786                           "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a"
3787                           "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38"
3788                           "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e"
3789                           "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e"
3790                           "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad"
3791                           "\x15\xb4\xaa\x5b\x65\x50\x16\xa8"
3792                           "\x44\x92\x77\xdb\xd4\x77\xef\x2c"
3793                           "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d"
3794                           "\xeb\x4a\x42\x7d\x19\x23\xce\x3f"
3795                           "\xf2\x62\x73\x57\x79\xa4\x18\xf2"
3796                           "\x0a\x28\x2d\xf9\x20\x14\x7b\xea"
3797                           "\xbe\x42\x1e\xe5\x31\x9d\x05\x68",
3798                 .rlen   = 512,
3799         }
3800 };
3801
3802 static struct cipher_testvec aes_xts_dec_tv_template[] = {
3803         /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */
3804         { /* XTS-AES 1 */
3805                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
3806                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3807                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3808                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3809                 .klen   = 32,
3810                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3811                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3812                 .input = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec"
3813                          "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92"
3814                          "\xcd\x43\xd2\xf5\x95\x98\xed\x85"
3815                          "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e",
3816                 .ilen   = 32,
3817                 .result  = "\x00\x00\x00\x00\x00\x00\x00\x00"
3818                            "\x00\x00\x00\x00\x00\x00\x00\x00"
3819                            "\x00\x00\x00\x00\x00\x00\x00\x00"
3820                            "\x00\x00\x00\x00\x00\x00\x00\x00",
3821                 .rlen   = 32,
3822         }, { /* XTS-AES 2 */
3823                 .key    = "\x11\x11\x11\x11\x11\x11\x11\x11"
3824                           "\x11\x11\x11\x11\x11\x11\x11\x11"
3825                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3826                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3827                 .klen   = 32,
3828                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3829                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3830                 .input  = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e"
3831                           "\x39\x33\x40\x38\xac\xef\x83\x8b"
3832                           "\xfb\x18\x6f\xff\x74\x80\xad\xc4"
3833                           "\x28\x93\x82\xec\xd6\xd3\x94\xf0",
3834                 .ilen   = 32,
3835                 .result = "\x44\x44\x44\x44\x44\x44\x44\x44"
3836                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3837                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3838                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3839                 .rlen   = 32,
3840         }, { /* XTS-AES 3 */
3841                 .key    = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8"
3842                           "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0"
3843                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3844                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3845                 .klen   = 32,
3846                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3847                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3848                 .input = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a"
3849                           "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2"
3850                           "\x92\xdf\x4c\x04\x7e\x0b\x21\x53"
3851                           "\x21\x86\xa5\x97\x1a\x22\x7a\x89",
3852                 .ilen   = 32,
3853                 .result  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3854                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3855                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3856                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3857                 .rlen   = 32,
3858         }, { /* XTS-AES 4 */
3859                 .key    = "\x27\x18\x28\x18\x28\x45\x90\x45"
3860                           "\x23\x53\x60\x28\x74\x71\x35\x26"
3861                           "\x31\x41\x59\x26\x53\x58\x97\x93"
3862                           "\x23\x84\x62\x64\x33\x83\x27\x95",
3863                 .klen   = 32,
3864                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3865                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3866                 .input  = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76"
3867                           "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2"
3868                           "\xa9\x6e\x4b\xbe\x32\x08\xff\x25"
3869                           "\x28\x7d\xd3\x81\x96\x16\xe8\x9c"
3870                           "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f"
3871                           "\x83\x33\xd8\xfa\x7f\x56\x00\x00"
3872                           "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad"
3873                           "\x40\xe7\x36\xdd\xb4\xd3\x54\x12"
3874                           "\x32\x80\x63\xfd\x2a\xab\x53\xe5"
3875                           "\xea\x1e\x0a\x9f\x33\x25\x00\xa5"
3876                           "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc"
3877                           "\x51\x2c\x88\x66\xc7\xe8\x60\xce"
3878                           "\x93\xfd\xf1\x66\xa2\x49\x12\xb4"
3879                           "\x22\x97\x61\x46\xae\x20\xce\x84"
3880                           "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a"
3881                           "\xae\xf2\x0c\x0d\x61\xad\x02\x65"
3882                           "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89"
3883                           "\x52\xc6\x51\xd3\x31\x74\xbe\x51"
3884                           "\xa1\x0c\x42\x11\x10\xe6\xd8\x15"
3885                           "\x88\xed\xe8\x21\x03\xa2\x52\xd8"
3886                           "\xa7\x50\xe8\x76\x8d\xef\xff\xed"
3887                           "\x91\x22\x81\x0a\xae\xb9\x9f\x91"
3888                           "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e"
3889                           "\x51\xbc\xb0\x82\x35\xa6\xf4\x34"
3890                           "\x13\x32\xe4\xca\x60\x48\x2a\x4b"
3891                           "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5"
3892                           "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4"
3893                           "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c"
3894                           "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd"
3895                           "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3"
3896                           "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f"
3897                           "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e"
3898                           "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91"
3899                           "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19"
3900                           "\x7c\x4e\x5b\x03\x39\x36\x97\xe1"
3901                           "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc"
3902                           "\x1e\x08\x29\x85\x16\xe2\xc9\xed"
3903                           "\x03\xff\x3c\x1b\x78\x60\xf6\xde"
3904                           "\x76\xd4\xce\xcd\x94\xc8\x11\x98"
3905                           "\x55\xef\x52\x97\xca\x67\xe9\xf3"
3906                           "\xe7\xff\x72\xb1\xe9\x97\x85\xca"
3907                           "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6"
3908                           "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc"
3909                           "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44"
3910                           "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0"
3911                           "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95"
3912                           "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4"
3913                           "\x99\x02\x7a\x78\x57\x2a\xee\xbd"
3914                           "\x74\xd2\x0c\xc3\x98\x81\xc2\x13"
3915                           "\xee\x77\x0b\x10\x10\xe4\xbe\xa7"
3916                           "\x18\x84\x69\x77\xae\x11\x9f\x7a"
3917                           "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52"
3918                           "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a"
3919                           "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38"
3920                           "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e"
3921                           "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e"
3922                           "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad"
3923                           "\x15\xb4\xaa\x5b\x65\x50\x16\xa8"
3924                           "\x44\x92\x77\xdb\xd4\x77\xef\x2c"
3925                           "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d"
3926                           "\xeb\x4a\x42\x7d\x19\x23\xce\x3f"
3927                           "\xf2\x62\x73\x57\x79\xa4\x18\xf2"
3928                           "\x0a\x28\x2d\xf9\x20\x14\x7b\xea"
3929                           "\xbe\x42\x1e\xe5\x31\x9d\x05\x68",
3930                 .ilen   = 512,
3931                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
3932                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3933                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3934                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3935                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3936                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3937                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3938                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3939                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3940                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3941                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3942                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3943                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3944                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3945                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3946                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3947                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3948                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3949                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3950                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3951                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3952                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3953                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3954                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3955                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3956                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3957                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3958                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3959                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3960                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3961                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3962                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
3963                           "\x00\x01\x02\x03\x04\x05\x06\x07"
3964                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3965                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3966                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3967                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3968                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3969                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3970                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3971                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3972                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3973                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3974                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3975                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3976                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3977                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3978                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3979                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3980                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3981                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3982                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3983                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3984                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3985                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3986                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3987                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3988                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3989                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3990                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3991                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3992                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3993                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3994                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
3995                 .rlen   = 512,
3996         }
3997 };
3998
3999
4000 static struct cipher_testvec aes_ctr_enc_tv_template[] = {
4001         { /* From RFC 3686 */
4002                 .key    = "\xae\x68\x52\xf8\x12\x10\x67\xcc"
4003                           "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e"
4004                           "\x00\x00\x00\x30",
4005                 .klen   = 20,
4006                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
4007                 .input  = "Single block msg",
4008                 .ilen   = 16,
4009                 .result = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79"
4010                           "\x2d\x61\x75\xa3\x26\x13\x11\xb8",
4011                 .rlen   = 16,
4012         }, {
4013                 .key    = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7"
4014                           "\x43\xd6\xce\x1f\x32\x53\x91\x63"
4015                           "\x00\x6c\xb6\xdb",
4016                 .klen   = 20,
4017                 .iv     = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b",
4018                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
4019                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4020                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4021                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4022                 .ilen   = 32,
4023                 .result = "\x51\x04\xa1\x06\x16\x8a\x72\xd9"
4024                           "\x79\x0d\x41\xee\x8e\xda\xd3\x88"
4025                           "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8"
4026                           "\xfc\xe6\x30\xdf\x91\x41\xbe\x28",
4027                 .rlen   = 32,
4028         }, {
4029                 .key    = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79"
4030                           "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed"
4031                           "\x86\x3d\x06\xcc\xfd\xb7\x85\x15"
4032                           "\x00\x00\x00\x48",
4033                 .klen   = 28,
4034                 .iv     = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb",
4035                 .input  = "Single block msg",
4036                 .ilen   = 16,
4037                 .result = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8"
4038                           "\x4e\x79\x35\xa0\x03\xcb\xe9\x28",
4039                 .rlen   = 16,
4040         }, {
4041                 .key    = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c"
4042                           "\x19\xe7\x34\x08\x19\xe0\xf6\x9c"
4043                           "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a"
4044                           "\x00\x96\xb0\x3b",
4045                 .klen   = 28,
4046                 .iv     = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d",
4047                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
4048                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4049                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4050                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4051                 .ilen   = 32,
4052                 .result = "\x45\x32\x43\xfc\x60\x9b\x23\x32"
4053                           "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f"
4054                           "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c"
4055                           "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00",
4056                 .rlen   = 32,
4057         }, {
4058                 .key    = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f"
4059                           "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c"
4060                           "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3"
4061                           "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04"
4062                           "\x00\x00\x00\x60",
4063                 .klen   = 36,
4064                 .iv     = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2",
4065                 .input  = "Single block msg",
4066                 .ilen   = 16,
4067                 .result = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7"
4068                           "\x56\x08\x63\xdc\x71\xe3\xe0\xc0",
4069                 .rlen   = 16,
4070         }, {
4071                 .key    = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb"
4072                           "\x07\x96\x36\x58\x79\xef\xf8\x86"
4073                           "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74"
4074                           "\x4b\x50\x59\x0c\x87\xa2\x38\x84"
4075                           "\x00\xfa\xac\x24",
4076                 .klen   = 36,
4077                 .iv     = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75",
4078                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
4079                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4080                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4081                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4082                 .ilen   = 32,
4083                 .result = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c"
4084                           "\x49\xee\x00\x0b\x80\x4e\xb2\xa9"
4085                           "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a"
4086                           "\x55\x30\x83\x1d\x93\x44\xaf\x1c",
4087                 .rlen   = 32,
4088         }, {
4089         // generated using Crypto++
4090                 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
4091                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4092                         "\x10\x11\x12\x13\x14\x15\x16\x17"
4093                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4094                         "\x00\x00\x00\x00",
4095                 .klen = 32 + 4,
4096                 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
4097                 .input =
4098                         "\x00\x01\x02\x03\x04\x05\x06\x07"
4099                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4100                         "\x10\x11\x12\x13\x14\x15\x16\x17"
4101                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4102                         "\x20\x21\x22\x23\x24\x25\x26\x27"
4103                         "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
4104                         "\x30\x31\x32\x33\x34\x35\x36\x37"
4105                         "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
4106                         "\x40\x41\x42\x43\x44\x45\x46\x47"
4107                         "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
4108                         "\x50\x51\x52\x53\x54\x55\x56\x57"
4109                         "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
4110                         "\x60\x61\x62\x63\x64\x65\x66\x67"
4111                         "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
4112                         "\x70\x71\x72\x73\x74\x75\x76\x77"
4113                         "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
4114                         "\x80\x81\x82\x83\x84\x85\x86\x87"
4115                         "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
4116                         "\x90\x91\x92\x93\x94\x95\x96\x97"
4117                         "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
4118                         "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
4119                         "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
4120                         "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
4121                         "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
4122                         "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
4123                         "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
4124                         "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
4125                         "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
4126                         "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
4127                         "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
4128                         "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4129                         "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
4130                         "\x00\x03\x06\x09\x0c\x0f\x12\x15"
4131                         "\x18\x1b\x1e\x21\x24\x27\x2a\x2d"
4132                         "\x30\x33\x36\x39\x3c\x3f\x42\x45"
4133                         "\x48\x4b\x4e\x51\x54\x57\x5a\x5d"
4134                         "\x60\x63\x66\x69\x6c\x6f\x72\x75"
4135                         "\x78\x7b\x7e\x81\x84\x87\x8a\x8d"
4136                         "\x90\x93\x96\x99\x9c\x9f\xa2\xa5"
4137                         "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd"
4138                         "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5"
4139                         "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed"
4140                         "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05"
4141                         "\x08\x0b\x0e\x11\x14\x17\x1a\x1d"
4142                         "\x20\x23\x26\x29\x2c\x2f\x32\x35"
4143                         "\x38\x3b\x3e\x41\x44\x47\x4a\x4d"
4144                         "\x50\x53\x56\x59\x5c\x5f\x62\x65"
4145                         "\x68\x6b\x6e\x71\x74\x77\x7a\x7d"
4146                         "\x80\x83\x86\x89\x8c\x8f\x92\x95"
4147                         "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad"
4148                         "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5"
4149                         "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd"
4150                         "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5"
4151                         "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d"
4152                         "\x10\x13\x16\x19\x1c\x1f\x22\x25"
4153                         "\x28\x2b\x2e\x31\x34\x37\x3a\x3d"
4154                         "\x40\x43\x46\x49\x4c\x4f\x52\x55"
4155                         "\x58\x5b\x5e\x61\x64\x67\x6a\x6d"
4156                         "\x70\x73\x76\x79\x7c\x7f\x82\x85"
4157                         "\x88\x8b\x8e\x91\x94\x97\x9a\x9d"
4158                         "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5"
4159                         "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd"
4160                         "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5"
4161                         "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd"
4162                         "\x00\x05\x0a\x0f\x14\x19\x1e\x23"
4163                         "\x28\x2d\x32\x37\x3c\x41\x46\x4b"
4164                         "\x50\x55\x5a\x5f\x64\x69\x6e\x73"
4165                         "\x78\x7d\x82\x87\x8c\x91\x96\x9b"
4166                         "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3"
4167                         "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb"
4168                         "\xf0\xf5\xfa\xff\x04\x09\x0e\x13"
4169                         "\x18\x1d\x22\x27\x2c\x31\x36\x3b"
4170                         "\x40\x45\x4a\x4f\x54\x59\x5e\x63"
4171                         "\x68\x6d\x72\x77\x7c\x81\x86\x8b"
4172                         "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3"
4173                         "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb"
4174                         "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03"
4175                         "\x08\x0d\x12\x17\x1c\x21\x26\x2b"
4176                         "\x30\x35\x3a\x3f\x44\x49\x4e\x53"
4177                         "\x58\x5d\x62\x67\x6c\x71\x76\x7b"
4178                         "\x80\x85\x8a\x8f\x94\x99\x9e\xa3"
4179                         "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb"
4180                         "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3"
4181                         "\xf8\xfd\x02\x07\x0c\x11\x16\x1b"
4182                         "\x20\x25\x2a\x2f\x34\x39\x3e\x43"
4183                         "\x48\x4d\x52\x57\x5c\x61\x66\x6b"
4184                         "\x70\x75\x7a\x7f\x84\x89\x8e\x93"
4185                         "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb"
4186                         "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3"
4187                         "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b"
4188                         "\x10\x15\x1a\x1f\x24\x29\x2e\x33"
4189                         "\x38\x3d\x42\x47\x4c\x51\x56\x5b"
4190                         "\x60\x65\x6a\x6f\x74\x79\x7e\x83"
4191                         "\x88\x8d\x92\x97\x9c\xa1\xa6\xab"
4192                         "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3"
4193                         "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb"
4194                         "\x00\x07\x0e\x15\x1c\x23\x2a\x31"
4195                         "\x38\x3f\x46\x4d\x54\x5b\x62\x69"
4196                         "\x70\x77\x7e\x85\x8c\x93\x9a\xa1"
4197                         "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9"
4198                         "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11"
4199                         "\x18\x1f\x26\x2d\x34\x3b\x42\x49"
4200                         "\x50\x57\x5e\x65\x6c\x73\x7a\x81"
4201                         "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9"
4202                         "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1"
4203                         "\xf8\xff\x06\x0d\x14\x1b\x22\x29"
4204                         "\x30\x37\x3e\x45\x4c\x53\x5a\x61"
4205                         "\x68\x6f\x76\x7d\x84\x8b\x92\x99"
4206                         "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1"
4207                         "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09"
4208                         "\x10\x17\x1e\x25\x2c\x33\x3a\x41"
4209                         "\x48\x4f\x56\x5d\x64\x6b\x72\x79"
4210                         "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1"
4211                         "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9"
4212                         "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21"
4213                         "\x28\x2f\x36\x3d\x44\x4b\x52\x59"
4214                         "\x60\x67\x6e\x75\x7c\x83\x8a\x91"
4215                         "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9"
4216                         "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01"
4217                         "\x08\x0f\x16\x1d\x24\x2b\x32\x39"
4218                         "\x40\x47\x4e\x55\x5c\x63\x6a\x71"
4219                         "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9"
4220                         "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1"
4221                         "\xe8\xef\xf6\xfd\x04\x0b\x12\x19"
4222                         "\x20\x27\x2e\x35\x3c\x43\x4a\x51"
4223                         "\x58\x5f\x66\x6d\x74\x7b\x82\x89"
4224                         "\x90\x97\x9e\xa5\xac\xb3\xba\xc1"
4225                         "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9"
4226                         "\x00\x09\x12\x1b\x24\x2d\x36\x3f"
4227                         "\x48\x51\x5a\x63\x6c\x75\x7e\x87"
4228                         "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf"
4229                         "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17"
4230                         "\x20\x29\x32\x3b\x44\x4d\x56\x5f"
4231                         "\x68\x71\x7a\x83\x8c\x95\x9e\xa7"
4232                         "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef"
4233                         "\xf8\x01\x0a\x13\x1c\x25\x2e\x37"
4234                         "\x40\x49\x52\x5b\x64\x6d\x76\x7f"
4235                         "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7"
4236                         "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f"
4237                         "\x18\x21\x2a\x33\x3c\x45\x4e\x57"
4238                         "\x60\x69\x72\x7b\x84\x8d\x96\x9f"
4239                         "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7"
4240                         "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f"
4241                         "\x38\x41\x4a\x53\x5c\x65\x6e\x77"
4242                         "\x80\x89\x92\x9b\xa4\xad\xb6\xbf"
4243                         "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07"
4244                         "\x10\x19\x22\x2b\x34\x3d\x46\x4f"
4245                         "\x58\x61\x6a\x73\x7c\x85\x8e\x97"
4246                         "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf"
4247                         "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27"
4248                         "\x30\x39\x42\x4b\x54\x5d\x66\x6f"
4249                         "\x78\x81\x8a\x93\x9c\xa5\xae\xb7"
4250                         "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff"
4251                         "\x08\x11\x1a\x23\x2c\x35\x3e\x47"
4252                         "\x50\x59\x62\x6b\x74\x7d\x86\x8f"
4253                         "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7"
4254                         "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f"
4255                         "\x28\x31\x3a\x43\x4c\x55\x5e\x67"
4256                         "\x70\x79\x82\x8b\x94\x9d\xa6\xaf"
4257                         "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7"
4258                         "\x00\x0b\x16\x21\x2c\x37\x42\x4d"
4259                         "\x58\x63\x6e\x79\x84\x8f\x9a\xa5"
4260                         "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd"
4261                         "\x08\x13\x1e\x29\x34\x3f\x4a\x55"
4262                         "\x60\x6b\x76\x81\x8c\x97\xa2\xad"
4263                         "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05"
4264                         "\x10\x1b\x26\x31\x3c\x47\x52\x5d"
4265                         "\x68\x73\x7e\x89\x94\x9f\xaa\xb5"
4266                         "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d"
4267                         "\x18\x23\x2e\x39\x44\x4f\x5a\x65"
4268                         "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd"
4269                         "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15"
4270                         "\x20\x2b\x36\x41\x4c\x57\x62\x6d"
4271                         "\x78\x83\x8e\x99\xa4\xaf\xba\xc5"
4272                         "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d"
4273                         "\x28\x33\x3e\x49\x54\x5f\x6a\x75"
4274                         "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd"
4275                         "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25"
4276                         "\x30\x3b\x46\x51\x5c\x67\x72\x7d"
4277                         "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5"
4278                         "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d"
4279                         "\x38\x43\x4e\x59\x64\x6f\x7a\x85"
4280                         "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd"
4281                         "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35"
4282                         "\x40\x4b\x56\x61\x6c\x77\x82\x8d"
4283                         "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5"
4284                         "\xf0\xfb\x06\x11\x1c\x27\x32\x3d"
4285                         "\x48\x53\x5e\x69\x74\x7f\x8a\x95"
4286                         "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed"
4287                         "\xf8\x03\x0e\x19\x24\x2f\x3a\x45"
4288                         "\x50\x5b\x66\x71\x7c\x87\x92\x9d"
4289                         "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5"
4290                         "\x00\x0d\x1a\x27\x34\x41\x4e\x5b"
4291                         "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3"
4292                         "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b"
4293                         "\x38\x45\x52\x5f\x6c\x79\x86\x93"
4294                         "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb"
4295                         "\x08\x15\x22\x2f\x3c\x49\x56\x63"
4296                         "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb"
4297                         "\xd8\xe5\xf2\xff\x0c\x19\x26\x33"
4298                         "\x40\x4d\x5a\x67\x74\x81\x8e\x9b"
4299                         "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03"
4300                         "\x10\x1d\x2a\x37\x44\x51\x5e\x6b"
4301                         "\x78\x85\x92\x9f\xac\xb9\xc6\xd3"
4302                         "\xe0\xed\xfa\x07\x14\x21\x2e\x3b"
4303                         "\x48\x55\x62\x6f\x7c\x89\x96\xa3"
4304                         "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b"
4305                         "\x18\x25\x32\x3f\x4c\x59\x66\x73"
4306                         "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb"
4307                         "\xe8\xf5\x02\x0f\x1c\x29\x36\x43"
4308                         "\x50\x5d\x6a\x77\x84\x91\x9e\xab"
4309                         "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13"
4310                         "\x20\x2d\x3a\x47\x54\x61\x6e\x7b"
4311                         "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3"
4312                         "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b"
4313                         "\x58\x65\x72\x7f\x8c\x99\xa6\xb3"
4314                         "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b"
4315                         "\x28\x35\x42\x4f\x5c\x69\x76\x83"
4316                         "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb"
4317                         "\xf8\x05\x12\x1f\x2c\x39\x46\x53"
4318                         "\x60\x6d\x7a\x87\x94\xa1\xae\xbb"
4319                         "\xc8\xd5\xe2\xef\xfc\x09\x16\x23"
4320                         "\x30\x3d\x4a\x57\x64\x71\x7e\x8b"
4321                         "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3"
4322                         "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69"
4323                         "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1"
4324                         "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59"
4325                         "\x68\x77\x86\x95\xa4\xb3\xc2\xd1"
4326                         "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49"
4327                         "\x58\x67\x76\x85\x94\xa3\xb2\xc1"
4328                         "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39"
4329                         "\x48\x57\x66\x75\x84\x93\xa2\xb1"
4330                         "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29"
4331                         "\x38\x47\x56\x65\x74\x83\x92\xa1"
4332                         "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19"
4333                         "\x28\x37\x46\x55\x64\x73\x82\x91"
4334                         "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09"
4335                         "\x18\x27\x36\x45\x54\x63\x72\x81"
4336                         "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9"
4337                         "\x08\x17\x26\x35\x44\x53\x62\x71"
4338                         "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9"
4339                         "\xf8\x07\x16\x25\x34\x43\x52\x61"
4340                         "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9"
4341                         "\xe8\xf7\x06\x15\x24\x33\x42\x51"
4342                         "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9"
4343                         "\xd8\xe7\xf6\x05\x14\x23\x32\x41"
4344                         "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9"
4345                         "\xc8\xd7\xe6\xf5\x04\x13\x22\x31"
4346                         "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9"
4347                         "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21"
4348                         "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99"
4349                         "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11"
4350                         "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89"
4351                         "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01"
4352                         "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79"
4353                         "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1"
4354                         "\x00\x11\x22\x33\x44\x55\x66\x77"
4355                         "\x88\x99\xaa\xbb\xcc\xdd\xee\xff"
4356                         "\x10\x21\x32\x43\x54\x65\x76\x87"
4357                         "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f"
4358                         "\x20\x31\x42\x53\x64\x75\x86\x97"
4359                         "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f"
4360                         "\x30\x41\x52\x63\x74\x85\x96\xa7"
4361                         "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f"
4362                         "\x40\x51\x62\x73\x84\x95\xa6\xb7"
4363                         "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f"
4364                         "\x50\x61\x72\x83\x94\xa5\xb6\xc7"
4365                         "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f"
4366                         "\x60\x71\x82\x93\xa4\xb5\xc6\xd7"
4367                         "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f"
4368                         "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7"
4369                         "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f"
4370                         "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7"
4371                         "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f"
4372                         "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07"
4373                         "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f"
4374                         "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17"
4375                         "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f"
4376                         "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27"
4377                         "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf"
4378                         "\xc0\xd1\xe2\xf3\x04\x15\x26\x37"
4379                         "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf"
4380                         "\xd0\xe1\xf2\x03\x14\x25\x36\x47"
4381                         "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf"
4382                         "\xe0\xf1\x02\x13\x24\x35\x46\x57"
4383                         "\x68\x79\x8a\x9b\xac\xbd\xce\xdf"
4384                         "\xf0\x01\x12\x23\x34\x45\x56\x67"
4385                         "\x78\x89\x9a\xab\xbc\xcd\xde\xef"
4386                         "\x00\x13\x26\x39\x4c\x5f\x72\x85"
4387                         "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d"
4388                         "\x30\x43\x56\x69\x7c\x8f\xa2\xb5"
4389                         "\xc8\xdb\xee\x01\x14\x27\x3a\x4d"
4390                         "\x60\x73\x86\x99\xac\xbf\xd2\xe5"
4391                         "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d"
4392                         "\x90\xa3\xb6\xc9\xdc\xef\x02\x15"
4393                         "\x28\x3b\x4e\x61\x74\x87\x9a\xad"
4394                         "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45"
4395                         "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd"
4396                         "\xf0\x03\x16\x29\x3c\x4f\x62\x75"
4397                         "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d"
4398                         "\x20\x33\x46\x59\x6c\x7f\x92\xa5"
4399                         "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d"
4400                         "\x50\x63\x76\x89\x9c\xaf\xc2\xd5"
4401                         "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d"
4402                         "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05"
4403                         "\x18\x2b\x3e\x51\x64\x77\x8a\x9d"
4404                         "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35"
4405                         "\x48\x5b\x6e\x81\x94\xa7\xba\xcd"
4406                         "\xe0\xf3\x06\x19\x2c\x3f\x52\x65"
4407                         "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd"
4408                         "\x10\x23\x36\x49\x5c\x6f\x82\x95"
4409                         "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d"
4410                         "\x40\x53\x66\x79\x8c\x9f\xb2\xc5"
4411                         "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d"
4412                         "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5"
4413                         "\x08\x1b\x2e\x41\x54\x67\x7a\x8d"
4414                         "\xa0\xb3\xc6\xd9\xec\xff\x12\x25"
4415                         "\x38\x4b\x5e\x71\x84\x97\xaa\xbd"
4416                         "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55"
4417                         "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed"
4418                         "\x00\x15\x2a\x3f\x54\x69\x7e\x93"
4419                         "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b"
4420                         "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3"
4421                         "\xf8\x0d\x22\x37\x4c\x61\x76\x8b"
4422                         "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33"
4423                         "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb"
4424                         "\xf0\x05\x1a\x2f\x44\x59\x6e\x83"
4425                         "\x98\xad\xc2\xd7\xec\x01\x16\x2b"
4426                         "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3"
4427                         "\xe8\xfd\x12\x27\x3c\x51\x66\x7b"
4428                         "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23"
4429                         "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb"
4430                         "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73"
4431                         "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b"
4432                         "\x30\x45\x5a\x6f\x84\x99\xae\xc3"
4433                         "\xd8\xed\x02\x17\x2c\x41\x56\x6b"
4434                         "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13"
4435                         "\x28\x3d\x52\x67\x7c\x91\xa6\xbb"
4436                         "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63"
4437                         "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b"
4438                         "\x20\x35\x4a\x5f\x74\x89\x9e\xb3"
4439                         "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b"
4440                         "\x70\x85\x9a\xaf\xc4\xd9\xee\x03"
4441                         "\x18\x2d\x42\x57\x6c\x81\x96\xab"
4442                         "\xc0\xd5\xea\xff\x14\x29\x3e\x53"
4443                         "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb"
4444                         "\x10\x25\x3a\x4f\x64\x79\x8e\xa3"
4445                         "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b"
4446                         "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3"
4447                         "\x08\x1d\x32\x47\x5c\x71\x86\x9b"
4448                         "\xb0\xc5\xda\xef\x04\x19\x2e\x43"
4449                         "\x58\x6d\x82\x97\xac\xc1\xd6\xeb"
4450                         "\x00\x17\x2e\x45\x5c\x73\x8a\xa1"
4451                         "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59"
4452                         "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11"
4453                         "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9"
4454                         "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81"
4455                         "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39"
4456                         "\x50\x67\x7e\x95\xac\xc3\xda\xf1"
4457                         "\x08\x1f\x36\x4d\x64\x7b\x92\xa9"
4458                         "\xc0\xd7\xee\x05\x1c\x33\x4a\x61"
4459                         "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19"
4460                         "\x30\x47\x5e\x75\x8c\xa3\xba\xd1"
4461                         "\xe8\xff\x16\x2d\x44\x5b\x72\x89"
4462                         "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41"
4463                         "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9"
4464                         "\x10\x27\x3e\x55\x6c\x83\x9a\xb1"
4465                         "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69"
4466                         "\x80\x97\xae\xc5\xdc\xf3\x0a\x21"
4467                         "\x38\x4f\x66\x7d\x94\xab\xc2\xd9"
4468                         "\xf0\x07\x1e\x35\x4c\x63\x7a\x91"
4469                         "\xa8\xbf\xd6\xed\x04\x1b\x32\x49"
4470                         "\x60\x77\x8e\xa5\xbc\xd3\xea\x01"
4471                         "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9"
4472                         "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71"
4473                         "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29"
4474                         "\x40\x57\x6e\x85\x9c\xb3\xca\xe1"
4475                         "\xf8\x0f\x26\x3d\x54\x6b\x82\x99"
4476                         "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51"
4477                         "\x68\x7f\x96\xad\xc4\xdb\xf2\x09"
4478                         "\x20\x37\x4e\x65\x7c\x93\xaa\xc1"
4479                         "\xd8\xef\x06\x1d\x34\x4b\x62\x79"
4480                         "\x90\xa7\xbe\xd5\xec\x03\x1a\x31"
4481                         "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9"
4482                         "\x00\x19\x32\x4b\x64\x7d\x96\xaf"
4483                         "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77"
4484                         "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f"
4485                         "\x58\x71\x8a\xa3\xbc\xd5\xee\x07"
4486                         "\x20\x39\x52\x6b\x84\x9d\xb6\xcf"
4487                         "\xe8\x01\x1a\x33\x4c\x65\x7e\x97"
4488                         "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f"
4489                         "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27"
4490                         "\x40\x59\x72\x8b\xa4\xbd\xd6\xef"
4491                         "\x08\x21\x3a\x53\x6c\x85\x9e\xb7"
4492                         "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f"
4493                         "\x98\xb1\xca\xe3\xfc\x15\x2e\x47"
4494                         "\x60\x79\x92\xab\xc4\xdd\xf6\x0f"
4495                         "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7"
4496                         "\xf0\x09\x22\x3b\x54\x6d\x86\x9f"
4497                         "\xb8\xd1\xea\x03\x1c\x35\x4e\x67"
4498                         "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f"
4499                         "\x48\x61\x7a\x93\xac\xc5\xde\xf7"
4500                         "\x10\x29\x42\x5b\x74\x8d\xa6\xbf"
4501                         "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87"
4502                         "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f"
4503                         "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17"
4504                         "\x30\x49\x62\x7b\x94\xad\xc6\xdf"
4505                         "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7"
4506                         "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f"
4507                         "\x88\xa1\xba\xd3\xec\x05\x1e\x37"
4508                         "\x50\x69\x82\x9b\xb4\xcd\xe6\xff"
4509                         "\x18\x31\x4a\x63\x7c\x95\xae\xc7"
4510                         "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f"
4511                         "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57"
4512                         "\x70\x89\xa2\xbb\xd4\xed\x06\x1f"
4513                         "\x38\x51\x6a\x83\x9c\xb5\xce\xe7"
4514                         "\x00\x1b\x36\x51\x6c\x87\xa2\xbd"
4515                         "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95"
4516                         "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d"
4517                         "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45"
4518                         "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d"
4519                         "\x38\x53\x6e\x89\xa4\xbf\xda\xf5"
4520                         "\x10\x2b\x46\x61\x7c\x97\xb2\xcd"
4521                         "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5"
4522                         "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d"
4523                         "\x98\xb3\xce\xe9\x04\x1f\x3a\x55"
4524                         "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d"
4525                         "\x48\x63\x7e\x99\xb4\xcf\xea\x05"
4526                         "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd"
4527                         "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5"
4528                         "\xd0\xeb\x06\x21\x3c\x57\x72\x8d"
4529                         "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65"
4530                         "\x80\x9b\xb6\xd1\xec\x07\x22\x3d"
4531                         "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15"
4532                         "\x30\x4b\x66\x81\x9c\xb7\xd2\xed"
4533                         "\x08\x23\x3e\x59\x74\x8f\xaa\xc5"
4534                         "\xe0\xfb\x16\x31\x4c\x67\x82\x9d"
4535                         "\xb8\xd3\xee\x09\x24\x3f\x5a\x75"
4536                         "\x90\xab\xc6\xe1\xfc\x17\x32\x4d"
4537                         "\x68\x83\x9e\xb9\xd4\xef\x0a\x25"
4538                         "\x40\x5b\x76\x91\xac\xc7\xe2\xfd"
4539                         "\x18\x33\x4e\x69\x84\x9f\xba\xd5"
4540                         "\xf0\x0b\x26\x41\x5c\x77\x92\xad"
4541                         "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85"
4542                         "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d"
4543                         "\x78\x93\xae\xc9\xe4\xff\x1a\x35"
4544                         "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d"
4545                         "\x28\x43\x5e\x79\x94\xaf\xca\xe5"
4546                         "\x00\x1d\x3a\x57\x74\x91\xae\xcb"
4547                         "\xe8\x05\x22\x3f\x5c\x79\x96\xb3"
4548                         "\xd0\xed\x0a\x27\x44\x61\x7e\x9b"
4549                         "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83"
4550                         "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b"
4551                         "\x88\xa5\xc2\xdf\xfc\x19\x36\x53"
4552                         "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b"
4553                         "\x58\x75\x92\xaf\xcc\xe9\x06\x23"
4554                         "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b"
4555                         "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3"
4556                         "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb"
4557                         "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3"
4558                         "\xe0\xfd\x1a\x37\x54\x71\x8e\xab"
4559                         "\xc8\xe5\x02\x1f\x3c\x59\x76\x93"
4560                         "\xb0\xcd\xea\x07\x24\x41\x5e\x7b"
4561                         "\x98\xb5\xd2\xef\x0c\x29\x46\x63"
4562                         "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b"
4563                         "\x68\x85\xa2\xbf\xdc\xf9\x16\x33"
4564                         "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b"
4565                         "\x38\x55\x72\x8f\xac\xc9\xe6\x03"
4566                         "\x20\x3d\x5a\x77\x94\xb1\xce\xeb"
4567                         "\x08\x25\x42\x5f\x7c\x99\xb6\xd3"
4568                         "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb"
4569                         "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3"
4570                         "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b"
4571                         "\xa8\xc5\xe2\xff\x1c\x39\x56\x73"
4572                         "\x90\xad\xca\xe7\x04\x21\x3e\x5b"
4573                         "\x78\x95\xb2\xcf\xec\x09\x26\x43"
4574                         "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b"
4575                         "\x48\x65\x82\x9f\xbc\xd9\xf6\x13"
4576                         "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb"
4577                         "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3"
4578                         "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9"
4579                         "\xf8\x17\x36\x55\x74\x93\xb2\xd1"
4580                         "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9"
4581                         "\xe8\x07\x26\x45\x64\x83\xa2\xc1"
4582                         "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9"
4583                         "\xd8\xf7\x16\x35\x54\x73\x92\xb1"
4584                         "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9"
4585                         "\xc8\xe7\x06\x25\x44\x63\x82\xa1"
4586                         "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99"
4587                         "\xb8\xd7\xf6\x15\x34\x53\x72\x91"
4588                         "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89"
4589                         "\xa8\xc7\xe6\x05\x24\x43\x62\x81"
4590                         "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79"
4591                         "\x98\xb7\xd6\xf5\x14\x33\x52\x71"
4592                         "\x90\xaf\xce\xed\x0c\x2b\x4a\x69"
4593                         "\x88\xa7\xc6\xe5\x04\x23\x42\x61"
4594                         "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59"
4595                         "\x78\x97\xb6\xd5\xf4\x13\x32\x51"
4596                         "\x70\x8f\xae\xcd\xec\x0b\x2a\x49"
4597                         "\x68\x87\xa6\xc5\xe4\x03\x22\x41"
4598                         "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39"
4599                         "\x58\x77\x96\xb5\xd4\xf3\x12\x31"
4600                         "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29"
4601                         "\x48\x67\x86\xa5\xc4\xe3\x02\x21"
4602                         "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19"
4603                         "\x38\x57\x76\x95\xb4\xd3\xf2\x11"
4604                         "\x30\x4f\x6e\x8d\xac\xcb\xea\x09"
4605                         "\x28\x47\x66\x85\xa4\xc3\xe2\x01"
4606                         "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9"
4607                         "\x18\x37\x56\x75\x94\xb3\xd2\xf1"
4608                         "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9"
4609                         "\x08\x27\x46\x65\x84\xa3\xc2\xe1"
4610                         "\x00\x21\x42\x63",
4611                 .ilen = 4100,
4612                 .result =
4613                         "\xf0\x5c\x74\xad\x4e\xbc\x99\xe2"
4614                         "\xae\xff\x91\x3a\x44\xcf\x38\x32"
4615                         "\x1e\xad\xa7\xcd\xa1\x39\x95\xaa"
4616                         "\x10\xb1\xb3\x2e\x04\x31\x8f\x86"
4617                         "\xf2\x62\x74\x70\x0c\xa4\x46\x08"
4618                         "\xa8\xb7\x99\xa8\xe9\xd2\x73\x79"
4619                         "\x7e\x6e\xd4\x8f\x1e\xc7\x8e\x31"
4620                         "\x0b\xfa\x4b\xce\xfd\xf3\x57\x71"
4621                         "\xe9\x46\x03\xa5\x3d\x34\x00\xe2"
4622                         "\x18\xff\x75\x6d\x06\x2d\x00\xab"
4623                         "\xb9\x3e\x6c\x59\xc5\x84\x06\xb5"
4624                         "\x8b\xd0\x89\x9c\x4a\x79\x16\xc6"
4625                         "\x3d\x74\x54\xfa\x44\xcd\x23\x26"
4626                         "\x5c\xcf\x7e\x28\x92\x32\xbf\xdf"
4627                         "\xa7\x20\x3c\x74\x58\x2a\x9a\xde"
4628                         "\x61\x00\x1c\x4f\xff\x59\xc4\x22"
4629                         "\xac\x3c\xd0\xe8\x6c\xf9\x97\x1b"
4630                         "\x58\x9b\xad\x71\xe8\xa9\xb5\x0d"
4631                         "\xee\x2f\x04\x1f\x7f\xbc\x99\xee"
4632                         "\x84\xff\x42\x60\xdc\x3a\x18\xa5"
4633                         "\x81\xf9\xef\xdc\x7a\x0f\x65\x41"
4634                         "\x2f\xa3\xd3\xf9\xc2\xcb\xc0\x4d"
4635                         "\x8f\xd3\x76\x96\xad\x49\x6d\x38"
4636                         "\x3d\x39\x0b\x6c\x80\xb7\x54\x69"
4637                         "\xf0\x2c\x90\x02\x29\x0d\x1c\x12"
4638                         "\xad\x55\xc3\x8b\x68\xd9\xcc\xb3"
4639                         "\xb2\x64\x33\x90\x5e\xca\x4b\xe2"
4640                         "\xfb\x75\xdc\x63\xf7\x9f\x82\x74"
4641                         "\xf0\xc9\xaa\x7f\xe9\x2a\x9b\x33"
4642                         "\xbc\x88\x00\x7f\xca\xb2\x1f\x14"
4643                         "\xdb\xc5\x8e\x7b\x11\x3c\x3e\x08"
4644                         "\xf3\x83\xe8\xe0\x94\x86\x2e\x92"
4645                         "\x78\x6b\x01\xc9\xc7\x83\xba\x21"
4646                         "\x6a\x25\x15\x33\x4e\x45\x08\xec"
4647                         "\x35\xdb\xe0\x6e\x31\x51\x79\xa9"
4648                         "\x42\x44\x65\xc1\xa0\xf1\xf9\x2a"
4649                         "\x70\xd5\xb6\xc6\xc1\x8c\x39\xfc"
4650                         "\x25\xa6\x55\xd9\xdd\x2d\x4c\xec"
4651                         "\x49\xc6\xeb\x0e\xa8\x25\x2a\x16"
4652                         "\x1b\x66\x84\xda\xe2\x92\xe5\xc0"
4653                         "\xc8\x53\x07\xaf\x80\x84\xec\xfd"
4654                         "\xcd\xd1\x6e\xcd\x6f\x6a\xf5\x36"
4655                         "\xc5\x15\xe5\x25\x7d\x77\xd1\x1a"
4656                         "\x93\x36\xa9\xcf\x7c\xa4\x54\x4a"
4657                         "\x06\x51\x48\x4e\xf6\x59\x87\xd2"
4658                         "\x04\x02\xef\xd3\x44\xde\x76\x31"
4659                         "\xb3\x34\x17\x1b\x9d\x66\x11\x9f"
4660                         "\x1e\xcc\x17\xe9\xc7\x3c\x1b\xe7"
4661                         "\xcb\x50\x08\xfc\xdc\x2b\x24\xdb"
4662                         "\x65\x83\xd0\x3b\xe3\x30\xea\x94"
4663                         "\x6c\xe7\xe8\x35\x32\xc7\xdb\x64"
4664                         "\xb4\x01\xab\x36\x2c\x77\x13\xaf"
4665                         "\xf8\x2b\x88\x3f\x54\x39\xc4\x44"
4666                         "\xfe\xef\x6f\x68\x34\xbe\x0f\x05"
4667                         "\x16\x6d\xf6\x0a\x30\xe7\xe3\xed"
4668                         "\xc4\xde\x3c\x1b\x13\xd8\xdb\xfe"
4669                         "\x41\x62\xe5\x28\xd4\x8d\xa3\xc7"
4670                         "\x93\x97\xc6\x48\x45\x1d\x9f\x83"
4671                         "\xdf\x4b\x40\x3e\x42\x25\x87\x80"
4672                         "\x4c\x7d\xa8\xd4\x98\x23\x95\x75"
4673                         "\x41\x8c\xda\x41\x9b\xd4\xa7\x06"
4674                         "\xb5\xf1\x71\x09\x53\xbe\xca\xbf"
4675                         "\x32\x03\xed\xf0\x50\x1c\x56\x39"
4676                         "\x5b\xa4\x75\x18\xf7\x9b\x58\xef"
4677                         "\x53\xfc\x2a\x38\x23\x15\x75\xcd"
4678                         "\x45\xe5\x5a\x82\x55\xba\x21\xfa"
4679                         "\xd4\xbd\xc6\x94\x7c\xc5\x80\x12"
4680                         "\xf7\x4b\x32\xc4\x9a\x82\xd8\x28"
4681                         "\x8f\xd9\xc2\x0f\x60\x03\xbe\x5e"
4682                         "\x21\xd6\x5f\x58\xbf\x5c\xb1\x32"
4683                         "\x82\x8d\xa9\xe5\xf2\x66\x1a\xc0"
4684                         "\xa0\xbc\x58\x2f\x71\xf5\x2f\xed"
4685                         "\xd1\x26\xb9\xd8\x49\x5a\x07\x19"
4686                         "\x01\x7c\x59\xb0\xf8\xa4\xb7\xd3"
4687                         "\x7b\x1a\x8c\x38\xf4\x50\xa4\x59"
4688                         "\xb0\xcc\x41\x0b\x88\x7f\xe5\x31"
4689                         "\xb3\x42\xba\xa2\x7e\xd4\x32\x71"
4690                         "\x45\x87\x48\xa9\xc2\xf2\x89\xb3"
4691                         "\xe4\xa7\x7e\x52\x15\x61\xfa\xfe"
4692                         "\xc9\xdd\x81\xeb\x13\xab\xab\xc3"
4693                         "\x98\x59\xd8\x16\x3d\x14\x7a\x1c"
4694                         "\x3c\x41\x9a\x16\x16\x9b\xd2\xd2"
4695                         "\x69\x3a\x29\x23\xac\x86\x32\xa5"
4696                         "\x48\x9c\x9e\xf3\x47\x77\x81\x70"
4697                         "\x24\xe8\x85\xd2\xf5\xb5\xfa\xff"
4698                         "\x59\x6a\xd3\x50\x59\x43\x59\xde"
4699                         "\xd9\xf1\x55\xa5\x0c\xc3\x1a\x1a"
4700                         "\x18\x34\x0d\x1a\x63\x33\xed\x10"
4701                         "\xe0\x1d\x2a\x18\xd2\xc0\x54\xa8"
4702                         "\xca\xb5\x9a\xd3\xdd\xca\x45\x84"
4703                         "\x50\xe7\x0f\xfe\xa4\x99\x5a\xbe"
4704                         "\x43\x2d\x9a\xcb\x92\x3f\x5a\x1d"
4705                         "\x85\xd8\xc9\xdf\x68\xc9\x12\x80"
4706                         "\x56\x0c\xdc\x00\xdc\x3a\x7d\x9d"
4707                         "\xa3\xa2\xe8\x4d\xbf\xf9\x70\xa0"
4708                         "\xa4\x13\x4f\x6b\xaf\x0a\x89\x7f"
4709                         "\xda\xf0\xbf\x9b\xc8\x1d\xe5\xf8"
4710                         "\x2e\x8b\x07\xb5\x73\x1b\xcc\xa2"
4711                         "\xa6\xad\x30\xbc\x78\x3c\x5b\x10"
4712                         "\xfa\x5e\x62\x2d\x9e\x64\xb3\x33"
4713                         "\xce\xf9\x1f\x86\xe7\x8b\xa2\xb8"
4714                         "\xe8\x99\x57\x8c\x11\xed\x66\xd9"
4715                         "\x3c\x72\xb9\xc3\xe6\x4e\x17\x3a"
4716                         "\x6a\xcb\x42\x24\x06\xed\x3e\x4e"
4717                         "\xa3\xe8\x6a\x94\xda\x0d\x4e\xd5"
4718                         "\x14\x19\xcf\xb6\x26\xd8\x2e\xcc"
4719                         "\x64\x76\x38\x49\x4d\xfe\x30\x6d"
4720                         "\xe4\xc8\x8c\x7b\xc4\xe0\x35\xba"
4721                         "\x22\x6e\x76\xe1\x1a\xf2\x53\xc3"
4722                         "\x28\xa2\x82\x1f\x61\x69\xad\xc1"
4723                         "\x7b\x28\x4b\x1e\x6c\x85\x95\x9b"
4724                         "\x51\xb5\x17\x7f\x12\x69\x8c\x24"
4725                         "\xd5\xc7\x5a\x5a\x11\x54\xff\x5a"
4726                         "\xf7\x16\xc3\x91\xa6\xf0\xdc\x0a"
4727                         "\xb6\xa7\x4a\x0d\x7a\x58\xfe\xa5"
4728                         "\xf5\xcb\x8f\x7b\x0e\xea\x57\xe7"
4729                         "\xbd\x79\xd6\x1c\x88\x23\x6c\xf2"
4730                         "\x4d\x29\x77\x53\x35\x6a\x00\x8d"
4731                         "\xcd\xa3\x58\xbe\x77\x99\x18\xf8"
4732                         "\xe6\xe1\x8f\xe9\x37\x8f\xe3\xe2"
4733                         "\x5a\x8a\x93\x25\xaf\xf3\x78\x80"
4734                         "\xbe\xa6\x1b\xc6\xac\x8b\x1c\x91"
4735                         "\x58\xe1\x9f\x89\x35\x9d\x1d\x21"
4736                         "\x29\x9f\xf4\x99\x02\x27\x0f\xa8"
4737                         "\x4f\x79\x94\x2b\x33\x2c\xda\xa2"
4738                         "\x26\x39\x83\x94\xef\x27\xd8\x53"
4739                         "\x8f\x66\x0d\xe4\x41\x7d\x34\xcd"
4740                         "\x43\x7c\x95\x0a\x53\xef\x66\xda"
4741                         "\x7e\x9b\xf3\x93\xaf\xd0\x73\x71"
4742                         "\xba\x40\x9b\x74\xf8\xd7\xd7\x41"
4743                         "\x6d\xaf\x72\x9c\x8d\x21\x87\x3c"
4744                         "\xfd\x0a\x90\xa9\x47\x96\x9e\xd3"
4745                         "\x88\xee\x73\xcf\x66\x2f\x52\x56"
4746                         "\x6d\xa9\x80\x4c\xe2\x6f\x62\x88"
4747                         "\x3f\x0e\x54\x17\x48\x80\x5d\xd3"
4748                         "\xc3\xda\x25\x3d\xa1\xc8\xcb\x9f"
4749                         "\x9b\x70\xb3\xa1\xeb\x04\x52\xa1"
4750                         "\xf2\x22\x0f\xfc\xc8\x18\xfa\xf9"
4751                         "\x85\x9c\xf1\xac\xeb\x0c\x02\x46"
4752                         "\x75\xd2\xf5\x2c\xe3\xd2\x59\x94"
4753                         "\x12\xf3\x3c\xfc\xd7\x92\xfa\x36"
4754                         "\xba\x61\x34\x38\x7c\xda\x48\x3e"
4755                         "\x08\xc9\x39\x23\x5e\x02\x2c\x1a"
4756                         "\x18\x7e\xb4\xd9\xfd\x9e\x40\x02"
4757                         "\xb1\x33\x37\x32\xe7\xde\xd6\xd0"
4758                         "\x7c\x58\x65\x4b\xf8\x34\x27\x9c"
4759                         "\x44\xb4\xbd\xe9\xe9\x4c\x78\x7d"
4760                         "\x4b\x9f\xce\xb1\xcd\x47\xa5\x37"
4761                         "\xe5\x6d\xbd\xb9\x43\x94\x0a\xd4"
4762                         "\xd6\xf9\x04\x5f\xb5\x66\x6c\x1a"
4763                         "\x35\x12\xe3\x36\x28\x27\x36\x58"
4764                         "\x01\x2b\x79\xe4\xba\x6d\x10\x7d"
4765                         "\x65\xdf\x84\x95\xf4\xd5\xb6\x8f"
4766                         "\x2b\x9f\x96\x00\x86\x60\xf0\x21"
4767                         "\x76\xa8\x6a\x8c\x28\x1c\xb3\x6b"
4768                         "\x97\xd7\xb6\x53\x2a\xcc\xab\x40"
4769                         "\x9d\x62\x79\x58\x52\xe6\x65\xb7"
4770                         "\xab\x55\x67\x9c\x89\x7c\x03\xb0"
4771                         "\x73\x59\xc5\x81\xf5\x18\x17\x5c"
4772                         "\x89\xf3\x78\x35\x44\x62\x78\x72"
4773                         "\xd0\x96\xeb\x31\xe7\x87\x77\x14"
4774                         "\x99\x51\xf2\x59\x26\x9e\xb5\xa6"
4775                         "\x45\xfe\x6e\xbd\x07\x4c\x94\x5a"
4776                         "\xa5\x7d\xfc\xf1\x2b\x77\xe2\xfe"
4777                         "\x17\xd4\x84\xa0\xac\xb5\xc7\xda"
4778                         "\xa9\x1a\xb6\xf3\x74\x11\xb4\x9d"
4779                         "\xfb\x79\x2e\x04\x2d\x50\x28\x83"
4780                         "\xbf\xc6\x52\xd3\x34\xd6\xe8\x7a"
4781                         "\xb6\xea\xe7\xa8\x6c\x15\x1e\x2c"
4782                         "\x57\xbc\x48\x4e\x5f\x5c\xb6\x92"
4783                         "\xd2\x49\x77\x81\x6d\x90\x70\xae"
4784                         "\x98\xa1\x03\x0d\x6b\xb9\x77\x14"
4785                         "\xf1\x4e\x23\xd3\xf8\x68\xbd\xc2"
4786                         "\xfe\x04\xb7\x5c\xc5\x17\x60\x8f"
4787                         "\x65\x54\xa4\x7a\x42\xdc\x18\x0d"
4788                         "\xb5\xcf\x0f\xd3\xc7\x91\x66\x1b"
4789                         "\x45\x42\x27\x75\x50\xe5\xee\xb8"
4790                         "\x7f\x33\x2c\xba\x4a\x92\x4d\x2c"
4791                         "\x3c\xe3\x0d\x80\x01\xba\x0d\x29"
4792                         "\xd8\x3c\xe9\x13\x16\x57\xe6\xea"
4793                         "\x94\x52\xe7\x00\x4d\x30\xb0\x0f"
4794                         "\x35\xb8\xb8\xa7\xb1\xb5\x3b\x44"
4795                         "\xe1\x2f\xfd\x88\xed\x43\xe7\x52"
4796                         "\x10\x93\xb3\x8a\x30\x6b\x0a\xf7"
4797                         "\x23\xc6\x50\x9d\x4a\xb0\xde\xc3"
4798                         "\xdc\x9b\x2f\x01\x56\x36\x09\xc5"
4799                         "\x2f\x6b\xfe\xf1\xd8\x27\x45\x03"
4800                         "\x30\x5e\x5c\x5b\xb4\x62\x0e\x1a"
4801                         "\xa9\x21\x2b\x92\x94\x87\x62\x57"
4802                         "\x4c\x10\x74\x1a\xf1\x0a\xc5\x84"
4803                         "\x3b\x9e\x72\x02\xd7\xcc\x09\x56"
4804                         "\xbd\x54\xc1\xf0\xc3\xe3\xb3\xf8"
4805                         "\xd2\x0d\x61\xcb\xef\xce\x0d\x05"
4806                         "\xb0\x98\xd9\x8e\x4f\xf9\xbc\x93"
4807                         "\xa6\xea\xc8\xcf\x10\x53\x4b\xf1"
4808                         "\xec\xfc\x89\xf9\x64\xb0\x22\xbf"
4809                         "\x9e\x55\x46\x9f\x7c\x50\x8e\x84"
4810                         "\x54\x20\x98\xd7\x6c\x40\x1e\xdb"
4811                         "\x69\x34\x78\x61\x24\x21\x9c\x8a"
4812                         "\xb3\x62\x31\x8b\x6e\xf5\x2a\x35"
4813                         "\x86\x13\xb1\x6c\x64\x2e\x41\xa5"
4814                         "\x05\xf2\x42\xba\xd2\x3a\x0d\x8e"
4815                         "\x8a\x59\x94\x3c\xcf\x36\x27\x82"
4816                         "\xc2\x45\xee\x58\xcd\x88\xb4\xec"
4817                         "\xde\xb2\x96\x0a\xaf\x38\x6f\x88"
4818                         "\xd7\xd8\xe1\xdf\xb9\x96\xa9\x0a"
4819                         "\xb1\x95\x28\x86\x20\xe9\x17\x49"
4820                         "\xa2\x29\x38\xaa\xa5\xe9\x6e\xf1"
4821                         "\x19\x27\xc0\xd5\x2a\x22\xc3\x0b"
4822                         "\xdb\x7c\x73\x10\xb9\xba\x89\x76"
4823                         "\x54\xae\x7d\x71\xb3\x93\xf6\x32"
4824                         "\xe6\x47\x43\x55\xac\xa0\x0d\xc2"
4825                         "\x93\x27\x4a\x8e\x0e\x74\x15\xc7"
4826                         "\x0b\x85\xd9\x0c\xa9\x30\x7a\x3e"
4827                         "\xea\x8f\x85\x6d\x3a\x12\x4f\x72"
4828                         "\x69\x58\x7a\x80\xbb\xb5\x97\xf3"
4829                         "\xcf\x70\xd2\x5d\xdd\x4d\x21\x79"
4830                         "\x54\x4d\xe4\x05\xe8\xbd\xc2\x62"
4831                         "\xb1\x3b\x77\x1c\xd6\x5c\xf3\xa0"
4832                         "\x79\x00\xa8\x6c\x29\xd9\x18\x24"
4833                         "\x36\xa2\x46\xc0\x96\x65\x7f\xbd"
4834                         "\x2a\xed\x36\x16\x0c\xaa\x9f\xf4"
4835                         "\xc5\xb4\xe2\x12\xed\x69\xed\x4f"
4836                         "\x26\x2c\x39\x52\x89\x98\xe7\x2c"
4837                         "\x99\xa4\x9e\xa3\x9b\x99\x46\x7a"
4838                         "\x3a\xdc\xa8\x59\xa3\xdb\xc3\x3b"
4839                         "\x95\x0d\x3b\x09\x6e\xee\x83\x5d"
4840                         "\x32\x4d\xed\xab\xfa\x98\x14\x4e"
4841                         "\xc3\x15\x45\x53\x61\xc4\x93\xbd"
4842                         "\x90\xf4\x99\x95\x4c\xe6\x76\x92"
4843                         "\x29\x90\x46\x30\x92\x69\x7d\x13"
4844                         "\xf2\xa5\xcd\x69\x49\x44\xb2\x0f"
4845                         "\x63\x40\x36\x5f\x09\xe2\x78\xf8"
4846                         "\x91\xe3\xe2\xfa\x10\xf7\xc8\x24"
4847                         "\xa8\x89\x32\x5c\x37\x25\x1d\xb2"
4848                         "\xea\x17\x8a\x0a\xa9\x64\xc3\x7c"
4849                         "\x3c\x7c\xbd\xc6\x79\x34\xe7\xe2"
4850                         "\x85\x8e\xbf\xf8\xde\x92\xa0\xae"
4851                         "\x20\xc4\xf6\xbb\x1f\x38\x19\x0e"
4852                         "\xe8\x79\x9c\xa1\x23\xe9\x54\x7e"
4853                         "\x37\x2f\xe2\x94\x32\xaf\xa0\x23"
4854                         "\x49\xe4\xc0\xb3\xac\x00\x8f\x36"
4855                         "\x05\xc4\xa6\x96\xec\x05\x98\x4f"
4856                         "\x96\x67\x57\x1f\x20\x86\x1b\x2d"
4857                         "\x69\xe4\x29\x93\x66\x5f\xaf\x6b"
4858                         "\x88\x26\x2c\x67\x02\x4b\x52\xd0"
4859                         "\x83\x7a\x43\x1f\xc0\x71\x15\x25"
4860                         "\x77\x65\x08\x60\x11\x76\x4c\x8d"
4861                         "\xed\xa9\x27\xc6\xb1\x2a\x2c\x6a"
4862                         "\x4a\x97\xf5\xc6\xb7\x70\x42\xd3"
4863                         "\x03\xd1\x24\x95\xec\x6d\xab\x38"
4864                         "\x72\xce\xe2\x8b\x33\xd7\x51\x09"
4865                         "\xdc\x45\xe0\x09\x96\x32\xf3\xc4"
4866                         "\x84\xdc\x73\x73\x2d\x1b\x11\x98"
4867                         "\xc5\x0e\x69\x28\x94\xc7\xb5\x4d"
4868                         "\xc8\x8a\xd0\xaa\x13\x2e\x18\x74"
4869                         "\xdd\xd1\x1e\xf3\x90\xe8\xfc\x9a"
4870                         "\x72\x4a\x0e\xd1\xe4\xfb\x0d\x96"
4871                         "\xd1\x0c\x79\x85\x1b\x1c\xfe\xe1"
4872                         "\x62\x8f\x7a\x73\x32\xab\xc8\x18"
4873                         "\x69\xe3\x34\x30\xdf\x13\xa6\xe5"
4874                         "\xe8\x0e\x67\x7f\x81\x11\xb4\x60"
4875                         "\xc7\xbd\x79\x65\x50\xdc\xc4\x5b"
4876                         "\xde\x39\xa4\x01\x72\x63\xf3\xd1"
4877                         "\x64\x4e\xdf\xfc\x27\x92\x37\x0d"
4878                         "\x57\xcd\x11\x4f\x11\x04\x8e\x1d"
4879                         "\x16\xf7\xcd\x92\x9a\x99\x30\x14"
4880                         "\xf1\x7c\x67\x1b\x1f\x41\x0b\xe8"
4881                         "\x32\xe8\xb8\xc1\x4f\x54\x86\x4f"
4882                         "\xe5\x79\x81\x73\xcd\x43\x59\x68"
4883                         "\x73\x02\x3b\x78\x21\x72\x43\x00"
4884                         "\x49\x17\xf7\x00\xaf\x68\x24\x53"
4885                         "\x05\x0a\xc3\x33\xe0\x33\x3f\x69"
4886                         "\xd2\x84\x2f\x0b\xed\xde\x04\xf4"
4887                         "\x11\x94\x13\x69\x51\x09\x28\xde"
4888                         "\x57\x5c\xef\xdc\x9a\x49\x1c\x17"
4889                         "\x97\xf3\x96\xc1\x7f\x5d\x2e\x7d"
4890                         "\x55\xb8\xb3\x02\x09\xb3\x1f\xe7"
4891                         "\xc9\x8d\xa3\x36\x34\x8a\x77\x13"
4892                         "\x30\x63\x4c\xa5\xcd\xc3\xe0\x7e"
4893                         "\x05\xa1\x7b\x0c\xcb\x74\x47\x31"
4894                         "\x62\x03\x43\xf1\x87\xb4\xb0\x85"
4895                         "\x87\x8e\x4b\x25\xc7\xcf\xae\x4b"
4896                         "\x36\x46\x3e\x62\xbc\x6f\xeb\x5f"
4897                         "\x73\xac\xe6\x07\xee\xc1\xa1\xd6"
4898                         "\xc4\xab\xc9\xd6\x89\x45\xe1\xf1"
4899                         "\x04\x4e\x1a\x6f\xbb\x4f\x3a\xa3"
4900                         "\xa0\xcb\xa3\x0a\xd8\x71\x35\x55"
4901                         "\xe4\xbc\x2e\x04\x06\xe6\xff\x5b"
4902                         "\x1c\xc0\x11\x7c\xc5\x17\xf3\x38"
4903                         "\xcf\xe9\xba\x0f\x0e\xef\x02\xc2"
4904                         "\x8d\xc6\xbc\x4b\x67\x20\x95\xd7"
4905                         "\x2c\x45\x5b\x86\x44\x8c\x6f\x2e"
4906                         "\x7e\x9f\x1c\x77\xba\x6b\x0e\xa3"
4907                         "\x69\xdc\xab\x24\x57\x60\x47\xc1"
4908                         "\xd1\xa5\x9d\x23\xe6\xb1\x37\xfe"
4909                         "\x93\xd2\x4c\x46\xf9\x0c\xc6\xfb"
4910                         "\xd6\x9d\x99\x69\xab\x7a\x07\x0c"
4911                         "\x65\xe7\xc4\x08\x96\xe2\xa5\x01"
4912                         "\x3f\x46\x07\x05\x7e\xe8\x9a\x90"
4913                         "\x50\xdc\xe9\x7a\xea\xa1\x39\x6e"
4914                         "\x66\xe4\x6f\xa5\x5f\xb2\xd9\x5b"
4915                         "\xf5\xdb\x2a\x32\xf0\x11\x6f\x7c"
4916                         "\x26\x10\x8f\x3d\x80\xe9\x58\xf7"
4917                         "\xe0\xa8\x57\xf8\xdb\x0e\xce\x99"
4918                         "\x63\x19\x3d\xd5\xec\x1b\x77\x69"
4919                         "\x98\xf6\xe4\x5f\x67\x17\x4b\x09"
4920                         "\x85\x62\x82\x70\x18\xe2\x9a\x78"
4921                         "\xe2\x62\xbd\xb4\xf1\x42\xc6\xfb"
4922                         "\x08\xd0\xbd\xeb\x4e\x09\xf2\xc8"
4923                         "\x1e\xdc\x3d\x32\x21\x56\x9c\x4f"
4924                         "\x35\xf3\x61\x06\x72\x84\xc4\x32"
4925                         "\xf2\xf1\xfa\x0b\x2f\xc3\xdb\x02"
4926                         "\x04\xc2\xde\x57\x64\x60\x8d\xcf"
4927                         "\xcb\x86\x5d\x97\x3e\xb1\x9c\x01"
4928                         "\xd6\x28\x8f\x99\xbc\x46\xeb\x05"
4929                         "\xaf\x7e\xb8\x21\x2a\x56\x85\x1c"
4930                         "\xb3\x71\xa0\xde\xca\x96\xf1\x78"
4931                         "\x49\xa2\x99\x81\x80\x5c\x01\xf5"
4932                         "\xa0\xa2\x56\x63\xe2\x70\x07\xa5"
4933                         "\x95\xd6\x85\xeb\x36\x9e\xa9\x51"
4934                         "\x66\x56\x5f\x1d\x02\x19\xe2\xf6"
4935                         "\x4f\x73\x38\x09\x75\x64\x48\xe0"
4936                         "\xf1\x7e\x0e\xe8\x9d\xf9\xed\x94"
4937                         "\xfe\x16\x26\x62\x49\x74\xf4\xb0"
4938                         "\xd4\xa9\x6c\xb0\xfd\x53\xe9\x81"
4939                         "\xe0\x7a\xbf\xcf\xb5\xc4\x01\x81"
4940                         "\x79\x99\x77\x01\x3b\xe9\xa2\xb6"
4941                         "\xe6\x6a\x8a\x9e\x56\x1c\x8d\x1e"
4942                         "\x8f\x06\x55\x2c\x6c\xdc\x92\x87"
4943                         "\x64\x3b\x4b\x19\xa1\x13\x64\x1d"
4944                         "\x4a\xe9\xc0\x00\xb8\x95\xef\x6b"
4945                         "\x1a\x86\x6d\x37\x52\x02\xc2\xe0"
4946                         "\xc8\xbb\x42\x0c\x02\x21\x4a\xc9"
4947                         "\xef\xa0\x54\xe4\x5e\x16\x53\x81"
4948                         "\x70\x62\x10\xaf\xde\xb8\xb5\xd3"
4949                         "\xe8\x5e\x6c\xc3\x8a\x3e\x18\x07"
4950                         "\xf2\x2f\x7d\xa7\xe1\x3d\x4e\xb4"
4951                         "\x26\xa7\xa3\x93\x86\xb2\x04\x1e"
4952                         "\x53\x5d\x86\xd6\xde\x65\xca\xe3"
4953                         "\x4e\xc1\xcf\xef\xc8\x70\x1b\x83"
4954                         "\x13\xdd\x18\x8b\x0d\x76\xd2\xf6"
4955                         "\x37\x7a\x93\x7a\x50\x11\x9f\x96"
4956                         "\x86\x25\xfd\xac\xdc\xbe\x18\x93"
4957                         "\x19\x6b\xec\x58\x4f\xb9\x75\xa7"
4958                         "\xdd\x3f\x2f\xec\xc8\x5a\x84\xab"
4959                         "\xd5\xe4\x8a\x07\xf6\x4d\x23\xd6"
4960                         "\x03\xfb\x03\x6a\xea\x66\xbf\xd4"
4961                         "\xb1\x34\xfb\x78\xe9\x55\xdc\x7c"
4962                         "\x3d\x9c\xe5\x9a\xac\xc3\x7a\x80"
4963                         "\x24\x6d\xa0\xef\x25\x7c\xb7\xea"
4964                         "\xce\x4d\x5f\x18\x60\xce\x87\x22"
4965                         "\x66\x2f\xd5\xdd\xdd\x02\x21\x75"
4966                         "\x82\xa0\x1f\x58\xc6\xd3\x62\xf7"
4967                         "\x32\xd8\xaf\x1e\x07\x77\x51\x96"
4968                         "\xd5\x6b\x1e\x7e\x80\x02\xe8\x67"
4969                         "\xea\x17\x0b\x10\xd2\x3f\x28\x25"
4970                         "\x4f\x05\x77\x02\x14\x69\xf0\x2c"
4971                         "\xbe\x0c\xf1\x74\x30\xd1\xb9\x9b"
4972                         "\xfc\x8c\xbb\x04\x16\xd9\xba\xc3"
4973                         "\xbc\x91\x8a\xc4\x30\xa4\xb0\x12"
4974                         "\x4c\x21\x87\xcb\xc9\x1d\x16\x96"
4975                         "\x07\x6f\x23\x54\xb9\x6f\x79\xe5"
4976                         "\x64\xc0\x64\xda\xb1\xae\xdd\x60"
4977                         "\x6c\x1a\x9d\xd3\x04\x8e\x45\xb0"
4978                         "\x92\x61\xd0\x48\x81\xed\x5e\x1d"
4979                         "\xa0\xc9\xa4\x33\xc7\x13\x51\x5d"
4980                         "\x7f\x83\x73\xb6\x70\x18\x65\x3e"
4981                         "\x2f\x0e\x7a\x12\x39\x98\xab\xd8"
4982                         "\x7e\x6f\xa3\xd1\xba\x56\xad\xbd"
4983                         "\xf0\x03\x01\x1c\x85\x35\x9f\xeb"
4984                         "\x19\x63\xa1\xaf\xfe\x2d\x35\x50"
4985                         "\x39\xa0\x65\x7c\x95\x7e\x6b\xfe"
4986                         "\xc1\xac\x07\x7c\x98\x4f\xbe\x57"
4987                         "\xa7\x22\xec\xe2\x7e\x29\x09\x53"
4988                         "\xe8\xbf\xb4\x7e\x3f\x8f\xfc\x14"
4989                         "\xce\x54\xf9\x18\x58\xb5\xff\x44"
4990                         "\x05\x9d\xce\x1b\xb6\x82\x23\xc8"
4991                         "\x2e\xbc\x69\xbb\x4a\x29\x0f\x65"
4992                         "\x94\xf0\x63\x06\x0e\xef\x8c\xbd"
4993                         "\xff\xfd\xb0\x21\x6e\x57\x05\x75"
4994                         "\xda\xd5\xc4\xeb\x8d\x32\xf7\x50"
4995                         "\xd3\x6f\x22\xed\x5f\x8e\xa2\x5b"
4996                         "\x80\x8c\xc8\x78\x40\x24\x4b\x89"
4997                         "\x30\xce\x7a\x97\x0e\xc4\xaf\xef"
4998                         "\x9b\xb4\xcd\x66\x74\x14\x04\x2b"
4999                         "\xf7\xce\x0b\x1c\x6e\xc2\x78\x8c"
5000                         "\xca\xc5\xd0\x1c\x95\x4a\x91\x2d"
5001                         "\xa7\x20\xeb\x86\x52\xb7\x67\xd8"
5002                         "\x0c\xd6\x04\x14\xde\x51\x74\x75"
5003                         "\xe7\x11\xb4\x87\xa3\x3d\x2d\xad"
5004                         "\x4f\xef\xa0\x0f\x70\x00\x6d\x13"
5005                         "\x19\x1d\x41\x50\xe9\xd8\xf0\x32"
5006                         "\x71\xbc\xd3\x11\xf2\xac\xbe\xaf"
5007                         "\x75\x46\x65\x4e\x07\x34\x37\xa3"
5008                         "\x89\xfe\x75\xd4\x70\x4c\xc6\x3f"
5009                         "\x69\x24\x0e\x38\x67\x43\x8c\xde"
5010                         "\x06\xb5\xb8\xe7\xc4\xf0\x41\x8f"
5011                         "\xf0\xbd\x2f\x0b\xb9\x18\xf8\xde"
5012                         "\x64\xb1\xdb\xee\x00\x50\x77\xe1"
5013                         "\xc7\xff\xa6\xfa\xdd\x70\xf4\xe3"
5014                         "\x93\xe9\x77\x35\x3d\x4b\x2f\x2b"
5015                         "\x6d\x55\xf0\xfc\x88\x54\x4e\x89"
5016                         "\xc1\x8a\x23\x31\x2d\x14\x2a\xb8"
5017                         "\x1b\x15\xdd\x9e\x6e\x7b\xda\x05"
5018                         "\x91\x7d\x62\x64\x96\x72\xde\xfc"
5019                         "\xc1\xec\xf0\x23\x51\x6f\xdb\x5b"
5020                         "\x1d\x08\x57\xce\x09\xb8\xf6\xcd"
5021                         "\x8d\x95\xf2\x20\xbf\x0f\x20\x57"
5022                         "\x98\x81\x84\x4f\x15\x5c\x76\xe7"
5023                         "\x3e\x0a\x3a\x6c\xc4\x8a\xbe\x78"
5024                         "\x74\x77\xc3\x09\x4b\x5d\x48\xe4"
5025                         "\xc8\xcb\x0b\xea\x17\x28\xcf\xcf"
5026                         "\x31\x32\x44\xa4\xe5\x0e\x1a\x98"
5027                         "\x94\xc4\xf0\xff\xae\x3e\x44\xe8"
5028                         "\xa5\xb3\xb5\x37\x2f\xe8\xaf\x6f"
5029                         "\x28\xc1\x37\x5f\x31\xd2\xb9\x33"
5030                         "\xb1\xb2\x52\x94\x75\x2c\x29\x59"
5031                         "\x06\xc2\x25\xe8\x71\x65\x4e\xed"
5032                         "\xc0\x9c\xb1\xbb\x25\xdc\x6c\xe7"
5033                         "\x4b\xa5\x7a\x54\x7a\x60\xff\x7a"
5034                         "\xe0\x50\x40\x96\x35\x63\xe4\x0b"
5035                         "\x76\xbd\xa4\x65\x00\x1b\x57\x88"
5036                         "\xae\xed\x39\x88\x42\x11\x3c\xed"
5037                         "\x85\x67\x7d\xb9\x68\x82\xe9\x43"
5038                         "\x3c\x47\x53\xfa\xe8\xf8\x9f\x1f"
5039                         "\x9f\xef\x0f\xf7\x30\xd9\x30\x0e"
5040                         "\xb9\x9f\x69\x18\x2f\x7e\xf8\xf8"
5041                         "\xf8\x8c\x0f\xd4\x02\x4d\xea\xcd"
5042                         "\x0a\x9c\x6f\x71\x6d\x5a\x4c\x60"
5043                         "\xce\x20\x56\x32\xc6\xc5\x99\x1f"
5044                         "\x09\xe6\x4e\x18\x1a\x15\x13\xa8"
5045                         "\x7d\xb1\x6b\xc0\xb2\x6d\xf8\x26"
5046                         "\x66\xf8\x3d\x18\x74\x70\x66\x7a"
5047                         "\x34\x17\xde\xba\x47\xf1\x06\x18"
5048                         "\xcb\xaf\xeb\x4a\x1e\x8f\xa7\x77"
5049                         "\xe0\x3b\x78\x62\x66\xc9\x10\xea"
5050                         "\x1f\xb7\x29\x0a\x45\xa1\x1d\x1e"
5051                         "\x1d\xe2\x65\x61\x50\x9c\xd7\x05"
5052                         "\xf2\x0b\x5b\x12\x61\x02\xc8\xe5"
5053                         "\x63\x4f\x20\x0c\x07\x17\x33\x5e"
5054                         "\x03\x9a\x53\x0f\x2e\x55\xfe\x50"
5055                         "\x43\x7d\xd0\xb6\x7e\x5a\xda\xae"
5056                         "\x58\xef\x15\xa9\x83\xd9\x46\xb1"
5057                         "\x42\xaa\xf5\x02\x6c\xce\x92\x06"
5058                         "\x1b\xdb\x66\x45\x91\x79\xc2\x2d"
5059                         "\xe6\x53\xd3\x14\xfd\xbb\x44\x63"
5060                         "\xc6\xd7\x3d\x7a\x0c\x75\x78\x9d"
5061                         "\x5c\xa6\x39\xb3\xe5\x63\xca\x8b"
5062                         "\xfe\xd3\xef\x60\x83\xf6\x8e\x70"
5063                         "\xb6\x67\xc7\x77\xed\x23\xef\x4c"
5064                         "\xf0\xed\x2d\x07\x59\x6f\xc1\x01"
5065                         "\x34\x37\x08\xab\xd9\x1f\x09\xb1"
5066                         "\xce\x5b\x17\xff\x74\xf8\x9c\xd5"
5067                         "\x2c\x56\x39\x79\x0f\x69\x44\x75"
5068                         "\x58\x27\x01\xc4\xbf\xa7\xa1\x1d"
5069                         "\x90\x17\x77\x86\x5a\x3f\xd9\xd1"
5070                         "\x0e\xa0\x10\xf8\xec\x1e\xa5\x7f"
5071                         "\x5e\x36\xd1\xe3\x04\x2c\x70\xf7"
5072                         "\x8e\xc0\x98\x2f\x6c\x94\x2b\x41"
5073                         "\xb7\x60\x00\xb7\x2e\xb8\x02\x8d"
5074                         "\xb8\xb0\xd3\x86\xba\x1d\xd7\x90"
5075                         "\xd6\xb6\xe1\xfc\xd7\xd8\x28\x06"
5076                         "\x63\x9b\xce\x61\x24\x79\xc0\x70"
5077                         "\x52\xd0\xb6\xd4\x28\x95\x24\x87"
5078                         "\x03\x1f\xb7\x9a\xda\xa3\xfb\x52"
5079                         "\x5b\x68\xe7\x4c\x8c\x24\xe1\x42"
5080                         "\xf7\xd5\xfd\xad\x06\x32\x9f\xba"
5081                         "\xc1\xfc\xdd\xc6\xfc\xfc\xb3\x38"
5082                         "\x74\x56\x58\x40\x02\x37\x52\x2c"
5083                         "\x55\xcc\xb3\x9e\x7a\xe9\xd4\x38"
5084                         "\x41\x5e\x0c\x35\xe2\x11\xd1\x13"
5085                         "\xf8\xb7\x8d\x72\x6b\x22\x2a\xb0"
5086                         "\xdb\x08\xba\x35\xb9\x3f\xc8\xd3"
5087                         "\x24\x90\xec\x58\xd2\x09\xc7\x2d"
5088                         "\xed\x38\x80\x36\x72\x43\x27\x49"
5089                         "\x4a\x80\x8a\xa2\xe8\xd3\xda\x30"
5090                         "\x7d\xb6\x82\x37\x86\x92\x86\x3e"
5091                         "\x08\xb2\x28\x5a\x55\x44\x24\x7d"
5092                         "\x40\x48\x8a\xb6\x89\x58\x08\xa0"
5093                         "\xd6\x6d\x3a\x17\xbf\xf6\x54\xa2"
5094                         "\xf5\xd3\x8c\x0f\x78\x12\x57\x8b"
5095                         "\xd5\xc2\xfd\x58\x5b\x7f\x38\xe3"
5096                         "\xcc\xb7\x7c\x48\xb3\x20\xe8\x81"
5097                         "\x14\x32\x45\x05\xe0\xdb\x9f\x75"
5098                         "\x85\xb4\x6a\xfc\x95\xe3\x54\x22"
5099                         "\x12\xee\x30\xfe\xd8\x30\xef\x34"
5100                         "\x50\xab\x46\x30\x98\x2f\xb7\xc0"
5101                         "\x15\xa2\x83\xb6\xf2\x06\x21\xa2"
5102                         "\xc3\x26\x37\x14\xd1\x4d\xb5\x10"
5103                         "\x52\x76\x4d\x6a\xee\xb5\x2b\x15"
5104                         "\xb7\xf9\x51\xe8\x2a\xaf\xc7\xfa"
5105                         "\x77\xaf\xb0\x05\x4d\xd1\x68\x8e"
5106                         "\x74\x05\x9f\x9d\x93\xa5\x3e\x7f"
5107                         "\x4e\x5f\x9d\xcb\x09\xc7\x83\xe3"
5108                         "\x02\x9d\x27\x1f\xef\x85\x05\x8d"
5109                         "\xec\x55\x88\x0f\x0d\x7c\x4c\xe8"
5110                         "\xa1\x75\xa0\xd8\x06\x47\x14\xef"
5111                         "\xaa\x61\xcf\x26\x15\xad\xd8\xa3"
5112                         "\xaa\x75\xf2\x78\x4a\x5a\x61\xdf"
5113                         "\x8b\xc7\x04\xbc\xb2\x32\xd2\x7e"
5114                         "\x42\xee\xb4\x2f\x51\xff\x7b\x2e"
5115                         "\xd3\x02\xe8\xdc\x5d\x0d\x50\xdc"
5116                         "\xae\xb7\x46\xf9\xa8\xe6\xd0\x16"
5117                         "\xcc\xe6\x2c\x81\xc7\xad\xe9\xf0"
5118                         "\x05\x72\x6d\x3d\x0a\x7a\xa9\x02"
5119                         "\xac\x82\x93\x6e\xb6\x1c\x28\xfc"
5120                         "\x44\x12\xfb\x73\x77\xd4\x13\x39"
5121                         "\x29\x88\x8a\xf3\x5c\xa6\x36\xa0"
5122                         "\x2a\xed\x7e\xb1\x1d\xd6\x4c\x6b"
5123                         "\x41\x01\x18\x5d\x5d\x07\x97\xa6"
5124                         "\x4b\xef\x31\x18\xea\xac\xb1\x84"
5125                         "\x21\xed\xda\x86",
5126                 .rlen = 4100,
5127                 .np     = 2,
5128                 .tap    = { 4064, 36 },
5129         },
5130 };
5131
5132 static struct cipher_testvec aes_ctr_dec_tv_template[] = {
5133         { /* From RFC 3686 */
5134                 .key    = "\xae\x68\x52\xf8\x12\x10\x67\xcc"
5135                           "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e"
5136                           "\x00\x00\x00\x30",
5137                 .klen   = 20,
5138                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
5139                 .input  = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79"
5140                           "\x2d\x61\x75\xa3\x26\x13\x11\xb8",
5141                 .ilen   = 16,
5142                 .result = "Single block msg",
5143                 .rlen   = 16,
5144         }, {
5145                 .key    = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7"
5146                           "\x43\xd6\xce\x1f\x32\x53\x91\x63"
5147                           "\x00\x6c\xb6\xdb",
5148                 .klen   = 20,
5149                 .iv     = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b",
5150                 .input  = "\x51\x04\xa1\x06\x16\x8a\x72\xd9"
5151                           "\x79\x0d\x41\xee\x8e\xda\xd3\x88"
5152                           "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8"
5153                           "\xfc\xe6\x30\xdf\x91\x41\xbe\x28",
5154                 .ilen   = 32,
5155                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5156                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5157                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5158                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5159                 .rlen   = 32,
5160         }, {
5161                 .key    = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79"
5162                           "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed"
5163                           "\x86\x3d\x06\xcc\xfd\xb7\x85\x15"
5164                           "\x00\x00\x00\x48",
5165                 .klen   = 28,
5166                 .iv     = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb",
5167                 .input  = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8"
5168                           "\x4e\x79\x35\xa0\x03\xcb\xe9\x28",
5169                 .ilen   = 16,
5170                 .result = "Single block msg",
5171                 .rlen   = 16,
5172         }, {
5173                 .key    = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c"
5174                           "\x19\xe7\x34\x08\x19\xe0\xf6\x9c"
5175                           "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a"
5176                           "\x00\x96\xb0\x3b",
5177                 .klen   = 28,
5178                 .iv     = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d",
5179                 .input  = "\x45\x32\x43\xfc\x60\x9b\x23\x32"
5180                           "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f"
5181                           "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c"
5182                           "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00",
5183                 .ilen   = 32,
5184                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5185                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5186                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5187                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5188                 .rlen   = 32,
5189         }, {
5190                 .key    = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f"
5191                           "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c"
5192                           "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3"
5193                           "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04"
5194                           "\x00\x00\x00\x60",
5195                 .klen   = 36,
5196                 .iv     = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2",
5197                 .input  = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7"
5198                           "\x56\x08\x63\xdc\x71\xe3\xe0\xc0",
5199                 .ilen   = 16,
5200                 .result = "Single block msg",
5201                 .rlen   = 16,
5202         }, {
5203                 .key    = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb"
5204                           "\x07\x96\x36\x58\x79\xef\xf8\x86"
5205                           "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74"
5206                           "\x4b\x50\x59\x0c\x87\xa2\x38\x84"
5207                           "\x00\xfa\xac\x24",
5208                 .klen   = 36,
5209                 .iv     = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75",
5210                 .input  = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c"
5211                           "\x49\xee\x00\x0b\x80\x4e\xb2\xa9"
5212                           "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a"
5213                           "\x55\x30\x83\x1d\x93\x44\xaf\x1c",
5214                 .ilen   = 32,
5215                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5216                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5217                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5218                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5219                 .rlen   = 32,
5220         },
5221 };
5222
5223 static struct aead_testvec aes_gcm_enc_tv_template[] = {
5224         { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */
5225                 .key    = zeroed_string,
5226                 .klen   = 16,
5227                 .result = "\x58\xe2\xfc\xce\xfa\x7e\x30\x61"
5228                           "\x36\x7f\x1d\x57\xa4\xe7\x45\x5a",
5229                 .rlen   = 16,
5230         }, {
5231                 .key    = zeroed_string,
5232                 .klen   = 16,
5233                 .input  = zeroed_string,
5234                 .ilen   = 16,
5235                 .result = "\x03\x88\xda\xce\x60\xb6\xa3\x92"
5236                           "\xf3\x28\xc2\xb9\x71\xb2\xfe\x78"
5237                           "\xab\x6e\x47\xd4\x2c\xec\x13\xbd"
5238                           "\xf5\x3a\x67\xb2\x12\x57\xbd\xdf",
5239                 .rlen   = 32,
5240         }, {
5241                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5242                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5243                 .klen   = 16,
5244                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5245                           "\xde\xca\xf8\x88",
5246                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5247                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5248                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5249                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5250                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5251                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5252                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5253                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5254                 .ilen   = 64,
5255                 .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5256                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5257                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5258                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5259                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5260                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5261                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5262                           "\x3d\x58\xe0\x91\x47\x3f\x59\x85"
5263                           "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6"
5264                           "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4",
5265                 .rlen   = 80,
5266         }, {
5267                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5268                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5269                 .klen   = 16,
5270                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5271                           "\xde\xca\xf8\x88",
5272                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5273                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5274                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5275                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5276                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5277                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5278                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5279                           "\xba\x63\x7b\x39",
5280                 .ilen   = 60,
5281                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5282                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5283                           "\xab\xad\xda\xd2",
5284                 .alen   = 20,
5285                 .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5286                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5287                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5288                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5289                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5290                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5291                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5292                           "\x3d\x58\xe0\x91"
5293                           "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb"
5294                           "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47",
5295                 .rlen   = 76,
5296         }, {
5297                 .key    = zeroed_string,
5298                 .klen   = 24,
5299                 .result = "\xcd\x33\xb2\x8a\xc7\x73\xf7\x4b"
5300                           "\xa0\x0e\xd1\xf3\x12\x57\x24\x35",
5301                 .rlen   = 16,
5302         }, {
5303                 .key    = zeroed_string,
5304                 .klen   = 24,
5305                 .input  = zeroed_string,
5306                 .ilen   = 16,
5307                 .result = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41"
5308                           "\x1c\x26\x7e\x43\x84\xb0\xf6\x00"
5309                           "\x2f\xf5\x8d\x80\x03\x39\x27\xab"
5310                           "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb",
5311                 .rlen   = 32,
5312         }, {
5313                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5314                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5315                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5316                 .klen   = 24,
5317                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5318                           "\xde\xca\xf8\x88",
5319                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5320                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5321                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5322                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5323                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5324                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5325                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5326                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5327                 .ilen   = 64,
5328                 .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5329                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5330                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5331                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5332                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5333                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5334                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5335                           "\xcc\xda\x27\x10\xac\xad\xe2\x56"
5336                           "\x99\x24\xa7\xc8\x58\x73\x36\xbf"
5337                           "\xb1\x18\x02\x4d\xb8\x67\x4a\x14",
5338                 .rlen   = 80,
5339         }, {
5340                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5341                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5342                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5343                 .klen   = 24,
5344                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5345                           "\xde\xca\xf8\x88",
5346                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5347                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5348                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5349                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5350                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5351                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5352                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5353                           "\xba\x63\x7b\x39",
5354                 .ilen   = 60,
5355                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5356                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5357                           "\xab\xad\xda\xd2",
5358                 .alen   = 20,
5359                 .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5360                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5361                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5362                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5363                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5364                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5365                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5366                           "\xcc\xda\x27\x10"
5367                           "\x25\x19\x49\x8e\x80\xf1\x47\x8f"
5368                           "\x37\xba\x55\xbd\x6d\x27\x61\x8c",
5369                 .rlen   = 76,
5370                 .np     = 2,
5371                 .tap    = { 32, 28 },
5372                 .anp    = 2,
5373                 .atap   = { 8, 12 }
5374         }, {
5375                 .key    = zeroed_string,
5376                 .klen   = 32,
5377                 .result = "\x53\x0f\x8a\xfb\xc7\x45\x36\xb9"
5378                           "\xa9\x63\xb4\xf1\xc4\xcb\x73\x8b",
5379                 .rlen   = 16,
5380         }
5381 };
5382
5383 static struct aead_testvec aes_gcm_dec_tv_template[] = {
5384         { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */
5385                 .key    = zeroed_string,
5386                 .klen   = 32,
5387                 .input  = "\xce\xa7\x40\x3d\x4d\x60\x6b\x6e"
5388                           "\x07\x4e\xc5\xd3\xba\xf3\x9d\x18"
5389                           "\xd0\xd1\xc8\xa7\x99\x99\x6b\xf0"
5390                           "\x26\x5b\x98\xb5\xd4\x8a\xb9\x19",
5391                 .ilen   = 32,
5392                 .result  = zeroed_string,
5393                 .rlen   = 16,
5394         }, {
5395                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5396                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5397                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5398                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5399                 .klen   = 32,
5400                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5401                           "\xde\xca\xf8\x88",
5402                 .input  = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
5403                           "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d"
5404                           "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9"
5405                           "\x75\x98\xa2\xbd\x25\x55\xd1\xaa"
5406                           "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d"
5407                           "\xa7\xb0\x8b\x10\x56\x82\x88\x38"
5408                           "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a"
5409                           "\xbc\xc9\xf6\x62\x89\x80\x15\xad"
5410                           "\xb0\x94\xda\xc5\xd9\x34\x71\xbd"
5411                           "\xec\x1a\x50\x22\x70\xe3\xcc\x6c",
5412                 .ilen   = 80,
5413                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5414                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5415                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5416                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5417                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5418                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5419                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5420                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5421                 .rlen   = 64,
5422         }, {
5423                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5424                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5425                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5426                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5427                 .klen   = 32,
5428                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5429                           "\xde\xca\xf8\x88",
5430                 .input  = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
5431                           "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d"
5432                           "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9"
5433                           "\x75\x98\xa2\xbd\x25\x55\xd1\xaa"
5434                           "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d"
5435                           "\xa7\xb0\x8b\x10\x56\x82\x88\x38"
5436                           "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a"
5437                           "\xbc\xc9\xf6\x62"
5438                           "\x76\xfc\x6e\xce\x0f\x4e\x17\x68"
5439                           "\xcd\xdf\x88\x53\xbb\x2d\x55\x1b",
5440                 .ilen   = 76,
5441                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5442                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5443                           "\xab\xad\xda\xd2",
5444                 .alen   = 20,
5445                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5446                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5447                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5448                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5449                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5450                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5451                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5452                           "\xba\x63\x7b\x39",
5453                 .rlen   = 60,
5454                 .np     = 2,
5455                 .tap    = { 48, 28 },
5456                 .anp    = 3,
5457                 .atap   = { 8, 8, 4 }
5458         }, {
5459                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5460                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5461                 .klen   = 16,
5462                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5463                           "\xde\xca\xf8\x88",
5464                 .input  = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5465                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5466                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5467                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5468                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5469                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5470                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5471                           "\x3d\x58\xe0\x91\x47\x3f\x59\x85"
5472                           "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6"
5473                           "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4",
5474                 .ilen   = 80,
5475                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5476                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5477                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5478                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5479                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5480                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5481                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5482                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5483                 .rlen   = 64,
5484         }, {
5485                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5486                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5487                 .klen   = 16,
5488                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5489                           "\xde\xca\xf8\x88",
5490                 .input  = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5491                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5492                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5493                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5494                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5495                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5496                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5497                           "\x3d\x58\xe0\x91"
5498                           "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb"
5499                           "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47",
5500                 .ilen   = 76,
5501                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5502                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5503                           "\xab\xad\xda\xd2",
5504                 .alen   = 20,
5505                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5506                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5507                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5508                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5509                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5510                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5511                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5512                           "\xba\x63\x7b\x39",
5513                 .rlen   = 60,
5514         }, {
5515                 .key    = zeroed_string,
5516                 .klen   = 24,
5517                 .input  = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41"
5518                           "\x1c\x26\x7e\x43\x84\xb0\xf6\x00"
5519                           "\x2f\xf5\x8d\x80\x03\x39\x27\xab"
5520                           "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb",
5521                 .ilen   = 32,
5522                 .result  = zeroed_string,
5523                 .rlen   = 16,
5524         }, {
5525                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5526                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5527                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5528                 .klen   = 24,
5529                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5530                           "\xde\xca\xf8\x88",
5531                 .input  = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5532                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5533                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5534                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5535                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5536                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5537                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5538                           "\xcc\xda\x27\x10\xac\xad\xe2\x56"
5539                           "\x99\x24\xa7\xc8\x58\x73\x36\xbf"
5540                           "\xb1\x18\x02\x4d\xb8\x67\x4a\x14",
5541                 .ilen   = 80,
5542                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5543                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5544                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5545                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5546                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5547                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5548                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5549                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5550                 .rlen   = 64,
5551         }, {
5552                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5553                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5554                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5555                 .klen   = 24,
5556                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5557                           "\xde\xca\xf8\x88",
5558                 .input  = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5559                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5560                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5561                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5562                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5563                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5564                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5565                           "\xcc\xda\x27\x10"
5566                           "\x25\x19\x49\x8e\x80\xf1\x47\x8f"
5567                           "\x37\xba\x55\xbd\x6d\x27\x61\x8c",
5568                 .ilen   = 76,
5569                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5570                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5571                           "\xab\xad\xda\xd2",
5572                 .alen   = 20,
5573                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5574                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5575                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5576                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5577                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5578                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5579                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5580                           "\xba\x63\x7b\x39",
5581                 .rlen   = 60,
5582         }
5583 };
5584
5585 static struct aead_testvec aes_ccm_enc_tv_template[] = {
5586         { /* From RFC 3610 */
5587                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5588                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5589                 .klen   = 16,
5590                 .iv     = "\x01\x00\x00\x00\x03\x02\x01\x00"
5591                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5592                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
5593                 .alen   = 8,
5594                 .input  = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5595                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5596                           "\x18\x19\x1a\x1b\x1c\x1d\x1e",
5597                 .ilen   = 23,
5598                 .result = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2"
5599                           "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80"
5600                           "\x6d\x5f\x6b\x61\xda\xc3\x84\x17"
5601                           "\xe8\xd1\x2c\xfd\xf9\x26\xe0",
5602                 .rlen   = 31,
5603         }, {
5604                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5605                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5606                 .klen   = 16,
5607                 .iv     = "\x01\x00\x00\x00\x07\x06\x05\x04"
5608                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5609                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
5610                           "\x08\x09\x0a\x0b",
5611                 .alen   = 12,
5612                 .input  = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5613                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5614                           "\x1c\x1d\x1e\x1f",
5615                 .ilen   = 20,
5616                 .result = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb"
5617                           "\x9d\x4e\x13\x12\x53\x65\x8a\xd8"
5618                           "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07"
5619                           "\x7d\x9c\x2d\x93",
5620                 .rlen   = 28,
5621         }, {
5622                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5623                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5624                 .klen   = 16,
5625                 .iv     = "\x01\x00\x00\x00\x0b\x0a\x09\x08"
5626                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5627                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
5628                 .alen   = 8,
5629                 .input  = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5630                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5631                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
5632                           "\x20",
5633                 .ilen   = 25,
5634                 .result = "\x82\x53\x1a\x60\xcc\x24\x94\x5a"
5635                           "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d"
5636                           "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1"
5637                           "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1"
5638                           "\x7e\x5f\x4e",
5639                 .rlen   = 35,
5640         }, {
5641                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5642                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5643                 .klen   = 16,
5644                 .iv     = "\x01\x00\x00\x00\x0c\x0b\x0a\x09"
5645                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5646                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
5647                           "\x08\x09\x0a\x0b",
5648                 .alen   = 12,
5649                 .input  = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5650                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5651                           "\x1c\x1d\x1e",
5652                 .ilen   = 19,
5653                 .result = "\x07\x34\x25\x94\x15\x77\x85\x15"
5654                           "\x2b\x07\x40\x98\x33\x0a\xbb\x14"
5655                           "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b"
5656                           "\x4d\x99\x99\x88\xdd",
5657                 .rlen   = 29,
5658         }, {
5659                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5660                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5661                 .klen   = 16,
5662                 .iv     = "\x01\x00\x33\x56\x8e\xf7\xb2\x63"
5663                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5664                 .assoc  = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb",
5665                 .alen   = 8,
5666                 .input  = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a"
5667                           "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf"
5668                           "\xb7\x9c\x70\x28\x94\x9c\xd0\xec",
5669                 .ilen   = 24,
5670                 .result = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa"
5671                           "\xa0\x72\x6c\x55\xd3\x78\x06\x12"
5672                           "\x98\xc8\x5c\x92\x81\x4a\xbc\x33"
5673                           "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a",
5674                 .rlen   = 32,
5675         }, {
5676                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5677                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5678                 .klen   = 16,
5679                 .iv     = "\x01\x00\xd5\x60\x91\x2d\x3f\x70"
5680                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5681                 .assoc  = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81"
5682                           "\x20\xea\x60\xc0",
5683                 .alen   = 12,
5684                 .input  = "\x64\x35\xac\xba\xfb\x11\xa8\x2e"
5685                           "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9"
5686                           "\x3a\x80\x3b\xa8\x7f",
5687                 .ilen   = 21,
5688                 .result = "\x00\x97\x69\xec\xab\xdf\x48\x62"
5689                           "\x55\x94\xc5\x92\x51\xe6\x03\x57"
5690                           "\x22\x67\x5e\x04\xc8\x47\x09\x9e"
5691                           "\x5a\xe0\x70\x45\x51",
5692                 .rlen   = 29,
5693         }, {
5694                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5695                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5696                 .klen   = 16,
5697                 .iv     = "\x01\x00\x42\xff\xf8\xf1\x95\x1c"
5698                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5699                 .assoc  = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8",
5700                 .alen   = 8,
5701                 .input  = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01"
5702                           "\x8e\x5e\x67\x01\xc9\x17\x87\x65"
5703                           "\x98\x09\xd6\x7d\xbe\xdd\x18",
5704                 .ilen   = 23,
5705                 .result = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6"
5706                           "\xdb\x38\x6a\x99\xac\x1a\xef\x23"
5707                           "\xad\xe0\xb5\x29\x39\xcb\x6a\x63"
5708                           "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6"
5709                           "\xba",
5710                 .rlen   = 33,
5711         },
5712 };
5713
5714 static struct aead_testvec aes_ccm_dec_tv_template[] = {
5715         { /* From RFC 3610 */
5716                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5717                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5718                 .klen   = 16,
5719                 .iv     = "\x01\x00\x00\x00\x03\x02\x01\x00"
5720                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5721                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
5722                 .alen   = 8,
5723                 .input  = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2"
5724                           "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80"
5725                           "\x6d\x5f\x6b\x61\xda\xc3\x84\x17"
5726                           "\xe8\xd1\x2c\xfd\xf9\x26\xe0",
5727                 .ilen   = 31,
5728                 .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5729                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5730                           "\x18\x19\x1a\x1b\x1c\x1d\x1e",
5731                 .rlen   = 23,
5732         }, {
5733                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5734                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5735                 .klen   = 16,
5736                 .iv     = "\x01\x00\x00\x00\x07\x06\x05\x04"
5737                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5738                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
5739                           "\x08\x09\x0a\x0b",
5740                 .alen   = 12,
5741                 .input  = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb"
5742                           "\x9d\x4e\x13\x12\x53\x65\x8a\xd8"
5743                           "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07"
5744                           "\x7d\x9c\x2d\x93",
5745                 .ilen   = 28,
5746                 .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5747                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5748                           "\x1c\x1d\x1e\x1f",
5749                 .rlen   = 20,
5750         }, {
5751                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5752                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5753                 .klen   = 16,
5754                 .iv     = "\x01\x00\x00\x00\x0b\x0a\x09\x08"
5755                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5756                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
5757                 .alen   = 8,
5758                 .input  = "\x82\x53\x1a\x60\xcc\x24\x94\x5a"
5759                           "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d"
5760                           "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1"
5761                           "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1"
5762                           "\x7e\x5f\x4e",
5763                 .ilen   = 35,
5764                 .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5765                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5766                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
5767                           "\x20",
5768                 .rlen   = 25,
5769         }, {
5770                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5771                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5772                 .klen   = 16,
5773                 .iv     = "\x01\x00\x00\x00\x0c\x0b\x0a\x09"
5774                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5775                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
5776                           "\x08\x09\x0a\x0b",
5777                 .alen   = 12,
5778                 .input  = "\x07\x34\x25\x94\x15\x77\x85\x15"
5779                           "\x2b\x07\x40\x98\x33\x0a\xbb\x14"
5780                           "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b"
5781                           "\x4d\x99\x99\x88\xdd",
5782                 .ilen   = 29,
5783                 .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5784                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5785                           "\x1c\x1d\x1e",
5786                 .rlen   = 19,
5787         }, {
5788                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5789                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5790                 .klen   = 16,
5791                 .iv     = "\x01\x00\x33\x56\x8e\xf7\xb2\x63"
5792                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5793                 .assoc  = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb",
5794                 .alen   = 8,
5795                 .input  = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa"
5796                           "\xa0\x72\x6c\x55\xd3\x78\x06\x12"
5797                           "\x98\xc8\x5c\x92\x81\x4a\xbc\x33"
5798                           "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a",
5799                 .ilen   = 32,
5800                 .result = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a"
5801                           "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf"
5802                           "\xb7\x9c\x70\x28\x94\x9c\xd0\xec",
5803                 .rlen   = 24,
5804         }, {
5805                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5806                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5807                 .klen   = 16,
5808                 .iv     = "\x01\x00\xd5\x60\x91\x2d\x3f\x70"
5809                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5810                 .assoc  = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81"
5811                           "\x20\xea\x60\xc0",
5812                 .alen   = 12,
5813                 .input  = "\x00\x97\x69\xec\xab\xdf\x48\x62"
5814                           "\x55\x94\xc5\x92\x51\xe6\x03\x57"
5815                           "\x22\x67\x5e\x04\xc8\x47\x09\x9e"
5816                           "\x5a\xe0\x70\x45\x51",
5817                 .ilen   = 29,
5818                 .result = "\x64\x35\xac\xba\xfb\x11\xa8\x2e"
5819                           "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9"
5820                           "\x3a\x80\x3b\xa8\x7f",
5821                 .rlen   = 21,
5822         }, {
5823                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5824                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5825                 .klen   = 16,
5826                 .iv     = "\x01\x00\x42\xff\xf8\xf1\x95\x1c"
5827                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5828                 .assoc  = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8",
5829                 .alen   = 8,
5830                 .input  = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6"
5831                           "\xdb\x38\x6a\x99\xac\x1a\xef\x23"
5832                           "\xad\xe0\xb5\x29\x39\xcb\x6a\x63"
5833                           "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6"
5834                           "\xba",
5835                 .ilen   = 33,
5836                 .result = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01"
5837                           "\x8e\x5e\x67\x01\xc9\x17\x87\x65"
5838                           "\x98\x09\xd6\x7d\xbe\xdd\x18",
5839                 .rlen   = 23,
5840         },
5841 };
5842
5843 /*
5844  * rfc4309 refers to section 8 of rfc3610 for test vectors, but they all
5845  * use a 13-byte nonce, we only support an 11-byte nonce. Similarly, all of
5846  * Special Publication 800-38C's test vectors also use nonce lengths our
5847  * implementation doesn't support. The following are taken from fips cavs
5848  * fax files on hand at Red Hat.
5849  *
5850  * nb: actual key lengths are (klen - 3), the last 3 bytes are actually
5851  * part of the nonce which combine w/the iv, but need to be input this way.
5852  */
5853 static struct aead_testvec aes_ccm_rfc4309_enc_tv_template[] = {
5854         {
5855                 .key    = "\x83\xac\x54\x66\xc2\xeb\xe5\x05"
5856                           "\x2e\x01\xd1\xfc\x5d\x82\x66\x2e"
5857                           "\x96\xac\x59",
5858                 .klen   = 19,
5859                 .iv     = "\x30\x07\xa1\xe2\xa2\xc7\x55\x24",
5860                 .alen   = 0,
5861                 .input  = "\x19\xc8\x81\xf6\xe9\x86\xff\x93"
5862                           "\x0b\x78\x67\xe5\xbb\xb7\xfc\x6e"
5863                           "\x83\x77\xb3\xa6\x0c\x8c\x9f\x9c"
5864                           "\x35\x2e\xad\xe0\x62\xf9\x91\xa1",
5865                 .ilen   = 32,
5866                 .result = "\xab\x6f\xe1\x69\x1d\x19\x99\xa8"
5867                           "\x92\xa0\xc4\x6f\x7e\xe2\x8b\xb1"
5868                           "\x70\xbb\x8c\xa6\x4c\x6e\x97\x8a"
5869                           "\x57\x2b\xbe\x5d\x98\xa6\xb1\x32"
5870                           "\xda\x24\xea\xd9\xa1\x39\x98\xfd"
5871                           "\xa4\xbe\xd9\xf2\x1a\x6d\x22\xa8",
5872                 .rlen   = 48,
5873         }, {
5874                 .key    = "\x1e\x2c\x7e\x01\x41\x9a\xef\xc0"
5875                           "\x0d\x58\x96\x6e\x5c\xa2\x4b\xd3"
5876                           "\x4f\xa3\x19",
5877                 .klen   = 19,
5878                 .iv     = "\xd3\x01\x5a\xd8\x30\x60\x15\x56",
5879                 .assoc  = "\xda\xe6\x28\x9c\x45\x2d\xfd\x63"
5880                           "\x5e\xda\x4c\xb6\xe6\xfc\xf9\xb7"
5881                           "\x0c\x56\xcb\xe4\xe0\x05\x7a\xe1"
5882                           "\x0a\x63\x09\x78\xbc\x2c\x55\xde",
5883                 .alen   = 32,
5884                 .input  = "\x87\xa3\x36\xfd\x96\xb3\x93\x78"
5885                           "\xa9\x28\x63\xba\x12\xa3\x14\x85"
5886                           "\x57\x1e\x06\xc9\x7b\x21\xef\x76"
5887                           "\x7f\x38\x7e\x8e\x29\xa4\x3e\x7e",
5888                 .ilen   = 32,
5889                 .result = "\x8a\x1e\x11\xf0\x02\x6b\xe2\x19"
5890                           "\xfc\x70\xc4\x6d\x8e\xb7\x99\xab"
5891                           "\xc5\x4b\xa2\xac\xd3\xf3\x48\xff"
5892                           "\x3b\xb5\xce\x53\xef\xde\xbb\x02"
5893                           "\xa9\x86\x15\x6c\x13\xfe\xda\x0a"
5894                           "\x22\xb8\x29\x3d\xd8\x39\x9a\x23",
5895                 .rlen   = 48,
5896         }, {
5897                 .key    = "\xf4\x6b\xc2\x75\x62\xfe\xb4\xe1"
5898                           "\xa3\xf0\xff\xdd\x4e\x4b\x12\x75"
5899                           "\x53\x14\x73\x66\x8d\x88\xf6\x80"
5900                           "\xa0\x20\x35",
5901                 .klen   = 27,
5902                 .iv     = "\x26\xf2\x21\x8d\x50\x20\xda\xe2",
5903                 .assoc  = "\x5b\x9e\x13\x67\x02\x5e\xef\xc1"
5904                           "\x6c\xf9\xd7\x1e\x52\x8f\x7a\x47"
5905                           "\xe9\xd4\xcf\x20\x14\x6e\xf0\x2d"
5906                           "\xd8\x9e\x2b\x56\x10\x23\x56\xe7",
5907                 .alen   = 32,
5908                 .ilen   = 0,
5909                 .result = "\x36\xea\x7a\x70\x08\xdc\x6a\xbc"
5910                           "\xad\x0c\x7a\x63\xf6\x61\xfd\x9b",
5911                 .rlen   = 16,
5912         }, {
5913                 .key    = "\x56\xdf\x5c\x8f\x26\x3f\x0e\x42"
5914                           "\xef\x7a\xd3\xce\xfc\x84\x60\x62"
5915                           "\xca\xb4\x40\xaf\x5f\xc9\xc9\x01"
5916                           "\xd6\x3c\x8c",
5917                 .klen   = 27,
5918                 .iv     = "\x86\x84\xb6\xcd\xef\x09\x2e\x94",
5919                 .assoc  = "\x02\x65\x78\x3c\xe9\x21\x30\x91"
5920                           "\xb1\xb9\xda\x76\x9a\x78\x6d\x95"
5921                           "\xf2\x88\x32\xa3\xf2\x50\xcb\x4c"
5922                           "\xe3\x00\x73\x69\x84\x69\x87\x79",
5923                 .alen   = 32,
5924                 .input  = "\x9f\xd2\x02\x4b\x52\x49\x31\x3c"
5925                           "\x43\x69\x3a\x2d\x8e\x70\xad\x7e"
5926                           "\xe0\xe5\x46\x09\x80\x89\x13\xb2"
5927                           "\x8c\x8b\xd9\x3f\x86\xfb\xb5\x6b",
5928                 .ilen   = 32,
5929                 .result = "\x39\xdf\x7c\x3c\x5a\x29\xb9\x62"
5930                           "\x5d\x51\xc2\x16\xd8\xbd\x06\x9f"
5931                           "\x9b\x6a\x09\x70\xc1\x51\x83\xc2"
5932                           "\x66\x88\x1d\x4f\x9a\xda\xe0\x1e"
5933                           "\xc7\x79\x11\x58\xe5\x6b\x20\x40"
5934                           "\x7a\xea\x46\x42\x8b\xe4\x6f\xe1",
5935                 .rlen   = 48,
5936         }, {
5937                 .key    = "\xe0\x8d\x99\x71\x60\xd7\x97\x1a"
5938                           "\xbd\x01\x99\xd5\x8a\xdf\x71\x3a"
5939                           "\xd3\xdf\x24\x4b\x5e\x3d\x4b\x4e"
5940                           "\x30\x7a\xb9\xd8\x53\x0a\x5e\x2b"
5941                           "\x1e\x29\x91",
5942                 .klen   = 35,
5943                 .iv     = "\xad\x8e\xc1\x53\x0a\xcf\x2d\xbe",
5944                 .assoc  = "\x19\xb6\x1f\x57\xc4\xf3\xf0\x8b"
5945                           "\x78\x2b\x94\x02\x29\x0f\x42\x27"
5946                           "\x6b\x75\xcb\x98\x34\x08\x7e\x79"
5947                           "\xe4\x3e\x49\x0d\x84\x8b\x22\x87",
5948                 .alen   = 32,
5949                 .input  = "\xe1\xd9\xd8\x13\xeb\x3a\x75\x3f"
5950                           "\x9d\xbd\x5f\x66\xbe\xdc\xbb\x66"
5951                           "\xbf\x17\x99\x62\x4a\x39\x27\x1f"
5952                           "\x1d\xdc\x24\xae\x19\x2f\x98\x4c",
5953                 .ilen   = 32,
5954                 .result = "\x19\xb8\x61\x33\x45\x2b\x43\x96"
5955                           "\x6f\x51\xd0\x20\x30\x7d\x9b\xc6"
5956                           "\x26\x3d\xf8\xc9\x65\x16\xa8\x9f"
5957                           "\xf0\x62\x17\x34\xf2\x1e\x8d\x75"
5958                           "\x4e\x13\xcc\xc0\xc3\x2a\x54\x2d",
5959                 .rlen   = 40,
5960         }, {
5961                 .key    = "\x7c\xc8\x18\x3b\x8d\x99\xe0\x7c"
5962                           "\x45\x41\xb8\xbd\x5c\xa7\xc2\x32"
5963                           "\x8a\xb8\x02\x59\xa4\xfe\xa9\x2c"
5964                           "\x09\x75\x9a\x9b\x3c\x9b\x27\x39"
5965                           "\xf9\xd9\x4e",
5966                 .klen   = 35,
5967                 .iv     = "\x63\xb5\x3d\x9d\x43\xf6\x1e\x50",
5968                 .assoc  = "\x57\xf5\x6b\x8b\x57\x5c\x3d\x3b"
5969                           "\x13\x02\x01\x0c\x83\x4c\x96\x35"
5970                           "\x8e\xd6\x39\xcf\x7d\x14\x9b\x94"
5971                           "\xb0\x39\x36\xe6\x8f\x57\xe0\x13",
5972                 .alen   = 32,
5973                 .input  = "\x3b\x6c\x29\x36\xb6\xef\x07\xa6"
5974                           "\x83\x72\x07\x4f\xcf\xfa\x66\x89"
5975                           "\x5f\xca\xb1\xba\xd5\x8f\x2c\x27"
5976                           "\x30\xdb\x75\x09\x93\xd4\x65\xe4",
5977                 .ilen   = 32,
5978                 .result = "\xb0\x88\x5a\x33\xaa\xe5\xc7\x1d"
5979                           "\x85\x23\xc7\xc6\x2f\xf4\x1e\x3d"
5980                           "\xcc\x63\x44\x25\x07\x78\x4f\x9e"
5981                           "\x96\xb8\x88\xeb\xbc\x48\x1f\x06"
5982                           "\x39\xaf\x39\xac\xd8\x4a\x80\x39"
5983                           "\x7b\x72\x8a\xf7",
5984                 .rlen   = 44,
5985         }, {
5986                 .key    = "\xab\xd0\xe9\x33\x07\x26\xe5\x83"
5987                           "\x8c\x76\x95\xd4\xb6\xdc\xf3\x46"
5988                           "\xf9\x8f\xad\xe3\x02\x13\x83\x77"
5989                           "\x3f\xb0\xf1\xa1\xa1\x22\x0f\x2b"
5990                           "\x24\xa7\x8b",
5991                 .klen   = 35,
5992                 .iv     = "\x07\xcb\xcc\x0e\xe6\x33\xbf\xf5",
5993                 .assoc  = "\xd4\xdb\x30\x1d\x03\xfe\xfd\x5f"
5994                           "\x87\xd4\x8c\xb6\xb6\xf1\x7a\x5d"
5995                           "\xab\x90\x65\x8d\x8e\xca\x4d\x4f"
5996                           "\x16\x0c\x40\x90\x4b\xc7\x36\x73",
5997                 .alen   = 32,
5998                 .input  = "\xf5\xc6\x7d\x48\xc1\xb7\xe6\x92"
5999                           "\x97\x5a\xca\xc4\xa9\x6d\xf9\x3d"
6000                           "\x6c\xde\xbc\xf1\x90\xea\x6a\xb2"
6001                           "\x35\x86\x36\xaf\x5c\xfe\x4b\x3a",
6002                 .ilen   = 32,
6003                 .result = "\x83\x6f\x40\x87\x72\xcf\xc1\x13"
6004                           "\xef\xbb\x80\x21\x04\x6c\x58\x09"
6005                           "\x07\x1b\xfc\xdf\xc0\x3f\x5b\xc7"
6006                           "\xe0\x79\xa8\x6e\x71\x7c\x3f\xcf"
6007                           "\x5c\xda\xb2\x33\xe5\x13\xe2\x0d"
6008                           "\x74\xd1\xef\xb5\x0f\x3a\xb5\xf8",
6009                 .rlen   = 48,
6010         },
6011 };
6012
6013 static struct aead_testvec aes_ccm_rfc4309_dec_tv_template[] = {
6014         {
6015                 .key    = "\xab\x2f\x8a\x74\xb7\x1c\xd2\xb1"
6016                           "\xff\x80\x2e\x48\x7d\x82\xf8\xb9"
6017                           "\xc6\xfb\x7d",
6018                 .klen   = 19,
6019                 .iv     = "\x80\x0d\x13\xab\xd8\xa6\xb2\xd8",
6020                 .alen   = 0,
6021                 .input  = "\xd5\xe8\x93\x9f\xc7\x89\x2e\x2b",
6022                 .ilen   = 8,
6023                 .result = "\x00",
6024                 .rlen   = 0,
6025                 .novrfy = 1,
6026         }, {
6027                 .key    = "\xab\x2f\x8a\x74\xb7\x1c\xd2\xb1"
6028                           "\xff\x80\x2e\x48\x7d\x82\xf8\xb9"
6029                           "\xaf\x94\x87",
6030                 .klen   = 19,
6031                 .iv     = "\x78\x35\x82\x81\x7f\x88\x94\x68",
6032                 .alen   = 0,
6033                 .input  = "\x41\x3c\xb8\x87\x73\xcb\xf3\xf3",
6034                 .ilen   = 8,
6035                 .result = "\x00",
6036                 .rlen   = 0,
6037         }, {
6038                 .key    = "\x61\x0e\x8c\xae\xe3\x23\xb6\x38"
6039                           "\x76\x1c\xf6\x3a\x67\xa3\x9c\xd8"
6040                           "\xc6\xfb\x7d",
6041                 .klen   = 19,
6042                 .iv     = "\x80\x0d\x13\xab\xd8\xa6\xb2\xd8",
6043                 .assoc  = "\xf3\x94\x87\x78\x35\x82\x81\x7f"
6044                           "\x88\x94\x68\xb1\x78\x6b\x2b\xd6"
6045                           "\x04\x1f\x4e\xed\x78\xd5\x33\x66"
6046                           "\xd8\x94\x99\x91\x81\x54\x62\x57",
6047                 .alen   = 32,
6048                 .input  = "\xf0\x7c\x29\x02\xae\x1c\x2f\x55"
6049                           "\xd0\xd1\x3d\x1a\xa3\x6d\xe4\x0a"
6050                           "\x86\xb0\x87\x6b\x62\x33\x8c\x34"
6051                           "\xce\xab\x57\xcc\x79\x0b\xe0\x6f"
6052                           "\x5c\x3e\x48\x1f\x6c\x46\xf7\x51"
6053                           "\x8b\x84\x83\x2a\xc1\x05\xb8\xc5",
6054                 .ilen   = 48,
6055                 .result = "\x50\x82\x3e\x07\xe2\x1e\xb6\xfb"
6056                           "\x33\xe4\x73\xce\xd2\xfb\x95\x79"
6057                           "\xe8\xb4\xb5\x77\x11\x10\x62\x6f"
6058                           "\x6a\x82\xd1\x13\xec\xf5\xd0\x48",
6059                 .rlen   = 32,
6060                 .novrfy = 1,
6061         }, {
6062                 .key    = "\x61\x0e\x8c\xae\xe3\x23\xb6\x38"
6063                           "\x76\x1c\xf6\x3a\x67\xa3\x9c\xd8"
6064                           "\x05\xe0\xc9",
6065                 .klen   = 19,
6066                 .iv     = "\x0f\xed\x34\xea\x97\xd4\x3b\xdf",
6067                 .assoc  = "\x49\x5c\x50\x1f\x1d\x94\xcc\x81"
6068                           "\xba\xb7\xb6\x03\xaf\xa5\xc1\xa1"
6069                           "\xd8\x5c\x42\x68\xe0\x6c\xda\x89"
6070                           "\x05\xac\x56\xac\x1b\x2a\xd3\x86",
6071                 .alen   = 32,
6072                 .input  = "\x39\xbe\x7d\x15\x62\x77\xf3\x3c"
6073                           "\xad\x83\x52\x6d\x71\x03\x25\x1c"
6074                           "\xed\x81\x3a\x9a\x16\x7d\x19\x80"
6075                           "\x72\x04\x72\xd0\xf6\xff\x05\x0f"
6076                           "\xb7\x14\x30\x00\x32\x9e\xa0\xa6"
6077                           "\x9e\x5a\x18\xa1\xb8\xfe\xdb\xd3",
6078                 .ilen   = 48,
6079                 .result = "\x75\x05\xbe\xc2\xd9\x1e\xde\x60"
6080                           "\x47\x3d\x8c\x7d\xbd\xb5\xd9\xb7"
6081                           "\xf2\xae\x61\x05\x8f\x82\x24\x3f"
6082                           "\x9c\x67\x91\xe1\x38\x4f\xe4\x0c",
6083                 .rlen   = 32,
6084         }, {
6085                 .key    = "\x39\xbb\xa7\xbe\x59\x97\x9e\x73"
6086                           "\xa2\xbc\x6b\x98\xd7\x75\x7f\xe3"
6087                           "\xa4\x48\x93\x39\x26\x71\x4a\xc6"
6088                           "\xee\x49\x83",
6089                 .klen   = 27,
6090                 .iv     = "\xe9\xa9\xff\xe9\x57\xba\xfd\x9e",
6091                 .assoc  = "\x44\xa6\x2c\x05\xe9\xe1\x43\xb1"
6092                           "\x58\x7c\xf2\x5c\x6d\x39\x0a\x64"
6093                           "\xa4\xf0\x13\x05\xd1\x77\x99\x67"
6094                           "\x11\xc4\xc6\xdb\x00\x56\x36\x61",
6095                 .alen   = 32,
6096                 .input  = "\x71\x99\xfa\xf4\x44\x12\x68\x9b",
6097                 .ilen   = 8,
6098                 .result = "\x00",
6099                 .rlen   = 0,
6100         }, {
6101                 .key    = "\x58\x5d\xa0\x96\x65\x1a\x04\xd7"
6102                           "\x96\xe5\xc5\x68\xaa\x95\x35\xe0"
6103                           "\x29\xa0\xba\x9e\x48\x78\xd1\xba"
6104                           "\xee\x49\x83",
6105                 .klen   = 27,
6106                 .iv     = "\xe9\xa9\xff\xe9\x57\xba\xfd\x9e",
6107                 .assoc  = "\x44\xa6\x2c\x05\xe9\xe1\x43\xb1"
6108                           "\x58\x7c\xf2\x5c\x6d\x39\x0a\x64"
6109                           "\xa4\xf0\x13\x05\xd1\x77\x99\x67"
6110                           "\x11\xc4\xc6\xdb\x00\x56\x36\x61",
6111                 .alen   = 32,
6112                 .input  = "\xfb\xe5\x5d\x34\xbe\xe5\xe8\xe7"
6113                           "\x5a\xef\x2f\xbf\x1f\x7f\xd4\xb2"
6114                           "\x66\xca\x61\x1e\x96\x7a\x61\xb3"
6115                           "\x1c\x16\x45\x52\xba\x04\x9c\x9f"
6116                           "\xb1\xd2\x40\xbc\x52\x7c\x6f\xb1",
6117                 .ilen   = 40,
6118                 .result = "\x85\x34\x66\x42\xc8\x92\x0f\x36"
6119                           "\x58\xe0\x6b\x91\x3c\x98\x5c\xbb"
6120                           "\x0a\x85\xcc\x02\xad\x7a\x96\xe9"
6121                           "\x65\x43\xa4\xc3\x0f\xdc\x55\x81",
6122                 .rlen   = 32,
6123         }, {
6124                 .key    = "\x58\x5d\xa0\x96\x65\x1a\x04\xd7"
6125                           "\x96\xe5\xc5\x68\xaa\x95\x35\xe0"
6126                           "\x29\xa0\xba\x9e\x48\x78\xd1\xba"
6127                           "\xd1\xfc\x57",
6128                 .klen   = 27,
6129                 .iv     = "\x9c\xfe\xb8\x9c\xad\x71\xaa\x1f",
6130                 .assoc  = "\x86\x67\xa5\xa9\x14\x5f\x0d\xc6"
6131                           "\xff\x14\xc7\x44\xbf\x6c\x3a\xc3"
6132                           "\xff\xb6\x81\xbd\xe2\xd5\x06\xc7"
6133                           "\x3c\xa1\x52\x13\x03\x8a\x23\x3a",
6134                 .alen   = 32,
6135                 .input  = "\x3f\x66\xb0\x9d\xe5\x4b\x38\x00"
6136                           "\xc6\x0e\x6e\xe5\xd6\x98\xa6\x37"
6137                           "\x8c\x26\x33\xc6\xb2\xa2\x17\xfa"
6138                           "\x64\x19\xc0\x30\xd7\xfc\x14\x6b"
6139                           "\xe3\x33\xc2\x04\xb0\x37\xbe\x3f"
6140                           "\xa9\xb4\x2d\x68\x03\xa3\x44\xef",
6141                 .ilen   = 48,
6142                 .result = "\x02\x87\x4d\x28\x80\x6e\xb2\xed"
6143                           "\x99\x2a\xa8\xca\x04\x25\x45\x90"
6144                           "\x1d\xdd\x5a\xd9\xe4\xdb\x9c\x9c"
6145                           "\x49\xe9\x01\xfe\xa7\x80\x6d\x6b",
6146                 .rlen   = 32,
6147                 .novrfy = 1,
6148         }, {
6149                 .key    = "\xa4\x4b\x54\x29\x0a\xb8\x6d\x01"
6150                           "\x5b\x80\x2a\xcf\x25\xc4\xb7\x5c"
6151                           "\x20\x2c\xad\x30\xc2\x2b\x41\xfb"
6152                           "\x0e\x85\xbc\x33\xad\x0f\x2b\xff"
6153                           "\xee\x49\x83",
6154                 .klen   = 35,
6155                 .iv     = "\xe9\xa9\xff\xe9\x57\xba\xfd\x9e",
6156                 .alen   = 0,
6157                 .input  = "\x1f\xb8\x8f\xa3\xdd\x54\x00\xf2",
6158                 .ilen   = 8,
6159                 .result = "\x00",
6160                 .rlen   = 0,
6161         }, {
6162                 .key    = "\x39\xbb\xa7\xbe\x59\x97\x9e\x73"
6163                           "\xa2\xbc\x6b\x98\xd7\x75\x7f\xe3"
6164                           "\xa4\x48\x93\x39\x26\x71\x4a\xc6"
6165                           "\xae\x8f\x11\x4c\xc2\x9c\x4a\xbb"
6166                           "\x85\x34\x66",
6167                 .klen   = 35,
6168                 .iv     = "\x42\xc8\x92\x0f\x36\x58\xe0\x6b",
6169                 .alen   = 0,
6170                 .input  = "\x48\x01\x5e\x02\x24\x04\x66\x47"
6171                           "\xa1\xea\x6f\xaf\xe8\xfc\xfb\xdd"
6172                           "\xa5\xa9\x87\x8d\x84\xee\x2e\x77"
6173                           "\xbb\x86\xb9\xf5\x5c\x6c\xff\xf6"
6174                           "\x72\xc3\x8e\xf7\x70\xb1\xb2\x07"
6175                           "\xbc\xa8\xa3\xbd\x83\x7c\x1d\x2a",
6176                 .ilen   = 48,
6177                 .result = "\xdc\x56\xf2\x71\xb0\xb1\xa0\x6c"
6178                           "\xf0\x97\x3a\xfb\x6d\xe7\x32\x99"
6179                           "\x3e\xaf\x70\x5e\xb2\x4d\xea\x39"
6180                           "\x89\xd4\x75\x7a\x63\xb1\xda\x93",
6181                 .rlen   = 32,
6182                 .novrfy = 1,
6183         }, {
6184                 .key    = "\x58\x5d\xa0\x96\x65\x1a\x04\xd7"
6185                           "\x96\xe5\xc5\x68\xaa\x95\x35\xe0"
6186                           "\x29\xa0\xba\x9e\x48\x78\xd1\xba"
6187                           "\x0d\x1a\x53\x3b\xb5\xe3\xf8\x8b"
6188                           "\xcf\x76\x3f",
6189                 .klen   = 35,
6190                 .iv     = "\xd9\x95\x75\x8f\x44\x89\x40\x7b",
6191                 .assoc  = "\x8f\x86\x6c\x4d\x1d\xc5\x39\x88"
6192                           "\xc8\xf3\x5c\x52\x10\x63\x6f\x2b"
6193                           "\x8a\x2a\xc5\x6f\x30\x23\x58\x7b"
6194                           "\xfb\x36\x03\x11\xb4\xd9\xf2\xfe",
6195                 .alen   = 32,
6196                 .input  = "\x48\x58\xd6\xf3\xad\x63\x58\xbf"
6197                           "\xae\xc7\x5e\xae\x83\x8f\x7b\xe4"
6198                           "\x78\x5c\x4c\x67\x71\x89\x94\xbf"
6199                           "\x47\xf1\x63\x7e\x1c\x59\xbd\xc5"
6200                           "\x7f\x44\x0a\x0c\x01\x18\x07\x92"
6201                           "\xe1\xd3\x51\xce\x32\x6d\x0c\x5b",
6202                 .ilen   = 48,
6203                 .result = "\xc2\x54\xc8\xde\x78\x87\x77\x40"
6204                           "\x49\x71\xe4\xb7\xe7\xcb\x76\x61"
6205                           "\x0a\x41\xb9\xe9\xc0\x76\x54\xab"
6206                           "\x04\x49\x3b\x19\x93\x57\x25\x5d",
6207                 .rlen   = 32,
6208         },
6209 };
6210
6211 /* Cast5 test vectors from RFC 2144 */
6212 #define CAST5_ENC_TEST_VECTORS  3
6213 #define CAST5_DEC_TEST_VECTORS  3
6214
6215 static struct cipher_testvec cast5_enc_tv_template[] = {
6216         {
6217                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
6218                           "\x23\x45\x67\x89\x34\x56\x78\x9a",
6219                 .klen   = 16,
6220                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6221                 .ilen   = 8,
6222                 .result = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2",
6223                 .rlen   = 8,
6224         }, {
6225                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
6226                           "\x23\x45",
6227                 .klen   = 10,
6228                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6229                 .ilen   = 8,
6230                 .result = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b",
6231                 .rlen   = 8,
6232         }, {
6233                 .key    = "\x01\x23\x45\x67\x12",
6234                 .klen   = 5,
6235                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6236                 .ilen   = 8,
6237                 .result = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e",
6238                 .rlen   = 8,
6239         },
6240 };
6241
6242 static struct cipher_testvec cast5_dec_tv_template[] = {
6243         {
6244                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
6245                           "\x23\x45\x67\x89\x34\x56\x78\x9a",
6246                 .klen   = 16,
6247                 .input  = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2",
6248                 .ilen   = 8,
6249                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6250                 .rlen   = 8,
6251         }, {
6252                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
6253                           "\x23\x45",
6254                 .klen   = 10,
6255                 .input  = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b",
6256                 .ilen   = 8,
6257                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6258                 .rlen   = 8,
6259         }, {
6260                 .key    = "\x01\x23\x45\x67\x12",
6261                 .klen   = 5,
6262                 .input  = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e",
6263                 .ilen   = 8,
6264                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6265                 .rlen   = 8,
6266         },
6267 };
6268
6269 /*
6270  * ARC4 test vectors from OpenSSL
6271  */
6272 #define ARC4_ENC_TEST_VECTORS   7
6273 #define ARC4_DEC_TEST_VECTORS   7
6274
6275 static struct cipher_testvec arc4_enc_tv_template[] = {
6276         {
6277                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6278                 .klen   = 8,
6279                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6280                 .ilen   = 8,
6281                 .result = "\x75\xb7\x87\x80\x99\xe0\xc5\x96",
6282                 .rlen   = 8,
6283         }, {
6284                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6285                 .klen   = 8,
6286                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
6287                 .ilen   = 8,
6288                 .result = "\x74\x94\xc2\xe7\x10\x4b\x08\x79",
6289                 .rlen   = 8,
6290         }, {
6291                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
6292                 .klen   = 8,
6293                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
6294                 .ilen   = 8,
6295                 .result = "\xde\x18\x89\x41\xa3\x37\x5d\x3a",
6296                 .rlen   = 8,
6297         }, {
6298                 .key    = "\xef\x01\x23\x45",
6299                 .klen   = 4,
6300                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
6301                           "\x00\x00\x00\x00\x00\x00\x00\x00"
6302                           "\x00\x00\x00\x00",
6303                 .ilen   = 20,
6304                 .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6305                           "\xbd\x61\x5a\x11\x62\xe1\xc7\xba"
6306                           "\x36\xb6\x78\x58",
6307                 .rlen   = 20,
6308         }, {
6309                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6310                 .klen   = 8,
6311                 .input  = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6312                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6313                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6314                           "\x12\x34\x56\x78",
6315                 .ilen   = 28,
6316                 .result = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89"
6317                           "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c"
6318                           "\x89\x2e\xbe\x30\x14\x3c\xe2\x87"
6319                           "\x40\x01\x1e\xcf",
6320                 .rlen   = 28,
6321         }, {
6322                 .key    = "\xef\x01\x23\x45",
6323                 .klen   = 4,
6324                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
6325                           "\x00\x00",
6326                 .ilen   = 10,
6327                 .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6328                           "\xbd\x61",
6329                 .rlen   = 10,
6330         }, {
6331                 .key    = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
6332                         "\x00\x00\x00\x00\x00\x00\x00\x00",
6333                 .klen   = 16,
6334                 .input  = "\x01\x23\x45\x67\x89\xAB\xCD\xEF",
6335                 .ilen   = 8,
6336                 .result = "\x69\x72\x36\x59\x1B\x52\x42\xB1",
6337                 .rlen   = 8,
6338         },
6339 };
6340
6341 static struct cipher_testvec arc4_dec_tv_template[] = {
6342         {
6343                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6344                 .klen   = 8,
6345                 .input  = "\x75\xb7\x87\x80\x99\xe0\xc5\x96",
6346                 .ilen   = 8,
6347                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6348                 .rlen   = 8,
6349         }, {
6350                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6351                 .klen   = 8,
6352                 .input  = "\x74\x94\xc2\xe7\x10\x4b\x08\x79",
6353                 .ilen   = 8,
6354                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
6355                 .rlen   = 8,
6356         }, {
6357                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
6358                 .klen   = 8,
6359                 .input  = "\xde\x18\x89\x41\xa3\x37\x5d\x3a",
6360                 .ilen   = 8,
6361                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
6362                 .rlen   = 8,
6363         }, {
6364                 .key    = "\xef\x01\x23\x45",
6365                 .klen   = 4,
6366                 .input  = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6367                           "\xbd\x61\x5a\x11\x62\xe1\xc7\xba"
6368                           "\x36\xb6\x78\x58",
6369                 .ilen   = 20,
6370                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00"
6371                           "\x00\x00\x00\x00\x00\x00\x00\x00"
6372                           "\x00\x00\x00\x00",
6373                 .rlen   = 20,
6374         }, {
6375                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6376                 .klen   = 8,
6377                 .input  = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89"
6378                           "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c"
6379                           "\x89\x2e\xbe\x30\x14\x3c\xe2\x87"
6380                           "\x40\x01\x1e\xcf",
6381                 .ilen   = 28,
6382                 .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6383                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6384                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6385                           "\x12\x34\x56\x78",
6386                 .rlen   = 28,
6387         }, {
6388                 .key    = "\xef\x01\x23\x45",
6389                 .klen   = 4,
6390                 .input  = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6391                           "\xbd\x61",
6392                 .ilen   = 10,
6393                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00"
6394                           "\x00\x00",
6395                 .rlen   = 10,
6396         }, {
6397                 .key    = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
6398                         "\x00\x00\x00\x00\x00\x00\x00\x00",
6399                 .klen   = 16,
6400                 .input  = "\x69\x72\x36\x59\x1B\x52\x42\xB1",
6401                 .ilen   = 8,
6402                 .result = "\x01\x23\x45\x67\x89\xAB\xCD\xEF",
6403                 .rlen   = 8,
6404         },
6405 };
6406
6407 /*
6408  * TEA test vectors
6409  */
6410 #define TEA_ENC_TEST_VECTORS    4
6411 #define TEA_DEC_TEST_VECTORS    4
6412
6413 static struct cipher_testvec tea_enc_tv_template[] = {
6414         {
6415                 .key    = zeroed_string,
6416                 .klen   = 16,
6417                 .input  = zeroed_string,
6418                 .ilen   = 8,
6419                 .result = "\x0a\x3a\xea\x41\x40\xa9\xba\x94",
6420                 .rlen   = 8,
6421         }, {
6422                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6423                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6424                 .klen   = 16,
6425                 .input  = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6426                 .ilen   = 8,
6427                 .result = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09",
6428                 .rlen   = 8,
6429         }, {
6430                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6431                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6432                 .klen   = 16,
6433                 .input  = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6434                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6435                 .ilen   = 16,
6436                 .result = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e"
6437                           "\xdd\x89\xa1\x25\x04\x21\xdf\x95",
6438                 .rlen   = 16,
6439         }, {
6440                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6441                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6442                 .klen   = 16,
6443                 .input  = "\x54\x65\x61\x20\x69\x73\x20\x67"
6444                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6445                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6446                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6447                 .ilen   = 32,
6448                 .result = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47"
6449                           "\x94\x18\x95\x91\xa9\xfc\x49\xf8"
6450                           "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a"
6451                           "\x07\x89\x73\xc2\x45\x92\xc6\x90",
6452                 .rlen   = 32,
6453         }
6454 };
6455
6456 static struct cipher_testvec tea_dec_tv_template[] = {
6457         {
6458                 .key    = zeroed_string,
6459                 .klen   = 16,
6460                 .input  = "\x0a\x3a\xea\x41\x40\xa9\xba\x94",
6461                 .ilen   = 8,
6462                 .result = zeroed_string,
6463                 .rlen   = 8,
6464         }, {
6465                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6466                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6467                 .klen   = 16,
6468                 .input  = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09",
6469                 .ilen   = 8,
6470                 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6471                 .rlen   = 8,
6472         }, {
6473                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6474                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6475                 .klen   = 16,
6476                 .input  = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e"
6477                           "\xdd\x89\xa1\x25\x04\x21\xdf\x95",
6478                 .ilen   = 16,
6479                 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6480                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6481                 .rlen   = 16,
6482         }, {
6483                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6484                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6485                 .klen   = 16,
6486                 .input  = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47"
6487                           "\x94\x18\x95\x91\xa9\xfc\x49\xf8"
6488                           "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a"
6489                           "\x07\x89\x73\xc2\x45\x92\xc6\x90",
6490                 .ilen   = 32,
6491                 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
6492                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6493                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6494                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6495                 .rlen   = 32,
6496         }
6497 };
6498
6499 /*
6500  * XTEA test vectors
6501  */
6502 #define XTEA_ENC_TEST_VECTORS   4
6503 #define XTEA_DEC_TEST_VECTORS   4
6504
6505 static struct cipher_testvec xtea_enc_tv_template[] = {
6506         {
6507                 .key    = zeroed_string,
6508                 .klen   = 16,
6509                 .input  = zeroed_string,
6510                 .ilen   = 8,
6511                 .result = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7",
6512                 .rlen   = 8,
6513         }, {
6514                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6515                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6516                 .klen   = 16,
6517                 .input  = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6518                 .ilen   = 8,
6519                 .result = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8",
6520                 .rlen   = 8,
6521         }, {
6522                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6523                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6524                 .klen   = 16,
6525                 .input  = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6526                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6527                 .ilen   = 16,
6528                 .result = "\x3e\xce\xae\x22\x60\x56\xa8\x9d"
6529                           "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a",
6530                 .rlen   = 16,
6531         }, {
6532                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6533                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6534                 .klen   = 16,
6535                 .input  = "\x54\x65\x61\x20\x69\x73\x20\x67"
6536                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6537                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6538                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6539                 .ilen   = 32,
6540                 .result = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a"
6541                           "\x86\xff\x6f\xd0\xe3\x87\x70\x07"
6542                           "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4"
6543                           "\x73\xa2\xfa\xc9\x16\x59\x5d\x81",
6544                 .rlen   = 32,
6545         }
6546 };
6547
6548 static struct cipher_testvec xtea_dec_tv_template[] = {
6549         {
6550                 .key    = zeroed_string,
6551                 .klen   = 16,
6552                 .input  = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7",
6553                 .ilen   = 8,
6554                 .result = zeroed_string,
6555                 .rlen   = 8,
6556         }, {
6557                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6558                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6559                 .klen   = 16,
6560                 .input  = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8",
6561                 .ilen   = 8,
6562                 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6563                 .rlen   = 8,
6564         }, {
6565                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6566                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6567                 .klen   = 16,
6568                 .input  = "\x3e\xce\xae\x22\x60\x56\xa8\x9d"
6569                           "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a",
6570                 .ilen   = 16,
6571                 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6572                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6573                 .rlen   = 16,
6574         }, {
6575                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6576                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6577                 .klen   = 16,
6578                 .input  = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a"
6579                           "\x86\xff\x6f\xd0\xe3\x87\x70\x07"
6580                           "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4"
6581                           "\x73\xa2\xfa\xc9\x16\x59\x5d\x81",
6582                 .ilen   = 32,
6583                 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
6584                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6585                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6586                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6587                 .rlen   = 32,
6588         }
6589 };
6590
6591 /*
6592  * KHAZAD test vectors.
6593  */
6594 #define KHAZAD_ENC_TEST_VECTORS 5
6595 #define KHAZAD_DEC_TEST_VECTORS 5
6596
6597 static struct cipher_testvec khazad_enc_tv_template[] = {
6598         {
6599                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
6600                           "\x00\x00\x00\x00\x00\x00\x00\x00",
6601                 .klen   = 16,
6602                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
6603                 .ilen   = 8,
6604                 .result = "\x49\xa4\xce\x32\xac\x19\x0e\x3f",
6605                 .rlen   = 8,
6606         }, {
6607                 .key    = "\x38\x38\x38\x38\x38\x38\x38\x38"
6608                           "\x38\x38\x38\x38\x38\x38\x38\x38",
6609                 .klen   = 16,
6610                 .input  = "\x38\x38\x38\x38\x38\x38\x38\x38",
6611                 .ilen   = 8,
6612                 .result = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9",
6613                 .rlen   = 8,
6614         }, {
6615                 .key    = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2"
6616                         "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6617                 .klen   = 16,
6618                 .input  = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6619                 .ilen   = 8,
6620                 .result = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c",
6621                 .rlen   = 8,
6622         }, {
6623                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6624                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6625                 .klen   = 16,
6626                 .input  = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6627                 .ilen   = 8,
6628                 .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6629                 .rlen   = 8,
6630         }, {
6631                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6632                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6633                 .klen   = 16,
6634                 .input  = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6635                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6636                 .ilen   = 16,
6637                 .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8"
6638                         "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6639                 .rlen   = 16,
6640         },
6641 };
6642
6643 static struct cipher_testvec khazad_dec_tv_template[] = {
6644         {
6645                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
6646                           "\x00\x00\x00\x00\x00\x00\x00\x00",
6647                 .klen   = 16,
6648                 .input  = "\x49\xa4\xce\x32\xac\x19\x0e\x3f",
6649                 .ilen   = 8,
6650                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
6651                 .rlen   = 8,
6652         }, {
6653                 .key    = "\x38\x38\x38\x38\x38\x38\x38\x38"
6654                           "\x38\x38\x38\x38\x38\x38\x38\x38",
6655                 .klen   = 16,
6656                 .input  = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9",
6657                 .ilen   = 8,
6658                 .result = "\x38\x38\x38\x38\x38\x38\x38\x38",
6659                 .rlen   = 8,
6660         }, {
6661                 .key    = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2"
6662                         "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6663                 .klen   = 16,
6664                 .input  = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c",
6665                 .ilen   = 8,
6666                 .result = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6667                 .rlen   = 8,
6668         }, {
6669                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6670                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6671                 .klen   = 16,
6672                 .input  = "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6673                 .ilen   = 8,
6674                 .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6675                 .rlen   = 8,
6676         }, {
6677                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6678                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6679                 .klen   = 16,
6680                 .input  = "\x04\x74\xf5\x70\x50\x16\xd3\xb8"
6681                         "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6682                 .ilen   = 16,
6683                 .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6684                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6685                 .rlen   = 16,
6686         },
6687 };
6688
6689 /*
6690  * Anubis test vectors.
6691  */
6692
6693 #define ANUBIS_ENC_TEST_VECTORS                 5
6694 #define ANUBIS_DEC_TEST_VECTORS                 5
6695 #define ANUBIS_CBC_ENC_TEST_VECTORS             2
6696 #define ANUBIS_CBC_DEC_TEST_VECTORS             2
6697
6698 static struct cipher_testvec anubis_enc_tv_template[] = {
6699         {
6700                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6701                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6702                 .klen   = 16,
6703                 .input  = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6704                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6705                 .ilen   = 16,
6706                 .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6707                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90",
6708                 .rlen   = 16,
6709         }, {
6710
6711                 .key    = "\x03\x03\x03\x03\x03\x03\x03\x03"
6712                           "\x03\x03\x03\x03\x03\x03\x03\x03"
6713                           "\x03\x03\x03\x03",
6714                 .klen   = 20,
6715                 .input  = "\x03\x03\x03\x03\x03\x03\x03\x03"
6716                           "\x03\x03\x03\x03\x03\x03\x03\x03",
6717                 .ilen   = 16,
6718                 .result = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49"
6719                           "\x87\x41\x6f\x82\x0a\x98\x64\xae",
6720                 .rlen   = 16,
6721         }, {
6722                 .key    = "\x24\x24\x24\x24\x24\x24\x24\x24"
6723                           "\x24\x24\x24\x24\x24\x24\x24\x24"
6724                           "\x24\x24\x24\x24\x24\x24\x24\x24"
6725                           "\x24\x24\x24\x24",
6726                 .klen   = 28,
6727                 .input  = "\x24\x24\x24\x24\x24\x24\x24\x24"
6728                           "\x24\x24\x24\x24\x24\x24\x24\x24",
6729                 .ilen   = 16,
6730                 .result = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d"
6731                           "\x06\xd3\x61\x27\xfd\x13\x9e\xde",
6732                 .rlen   = 16,
6733         }, {
6734                 .key    = "\x25\x25\x25\x25\x25\x25\x25\x25"
6735                           "\x25\x25\x25\x25\x25\x25\x25\x25"
6736                           "\x25\x25\x25\x25\x25\x25\x25\x25"
6737                           "\x25\x25\x25\x25\x25\x25\x25\x25",
6738                 .klen   = 32,
6739                 .input  = "\x25\x25\x25\x25\x25\x25\x25\x25"
6740                           "\x25\x25\x25\x25\x25\x25\x25\x25",
6741                 .ilen   = 16,
6742                 .result = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4"
6743                         "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe",
6744                 .rlen   = 16,
6745         }, {
6746                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
6747                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6748                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6749                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6750                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6751                 .klen   = 40,
6752                 .input  = "\x35\x35\x35\x35\x35\x35\x35\x35"
6753                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6754                 .ilen   = 16,
6755                 .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6756                           "\x9e\xc6\x84\x0f\x17\x21\x07\xee",
6757                 .rlen   = 16,
6758         },
6759 };
6760
6761 static struct cipher_testvec anubis_dec_tv_template[] = {
6762         {
6763                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6764                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6765                 .klen   = 16,
6766                 .input  = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6767                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90",
6768                 .ilen   = 16,
6769                 .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6770                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6771                 .rlen   = 16,
6772         }, {
6773
6774                 .key    = "\x03\x03\x03\x03\x03\x03\x03\x03"
6775                           "\x03\x03\x03\x03\x03\x03\x03\x03"
6776                           "\x03\x03\x03\x03",
6777                 .klen   = 20,
6778                 .input  = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49"
6779                           "\x87\x41\x6f\x82\x0a\x98\x64\xae",
6780                 .ilen   = 16,
6781                 .result = "\x03\x03\x03\x03\x03\x03\x03\x03"
6782                           "\x03\x03\x03\x03\x03\x03\x03\x03",
6783                 .rlen   = 16,
6784         }, {
6785                 .key    = "\x24\x24\x24\x24\x24\x24\x24\x24"
6786                           "\x24\x24\x24\x24\x24\x24\x24\x24"
6787                           "\x24\x24\x24\x24\x24\x24\x24\x24"
6788                           "\x24\x24\x24\x24",
6789                 .klen   = 28,
6790                 .input  = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d"
6791                           "\x06\xd3\x61\x27\xfd\x13\x9e\xde",
6792                 .ilen   = 16,
6793                 .result = "\x24\x24\x24\x24\x24\x24\x24\x24"
6794                           "\x24\x24\x24\x24\x24\x24\x24\x24",
6795                 .rlen   = 16,
6796         }, {
6797                 .key    = "\x25\x25\x25\x25\x25\x25\x25\x25"
6798                           "\x25\x25\x25\x25\x25\x25\x25\x25"
6799                           "\x25\x25\x25\x25\x25\x25\x25\x25"
6800                           "\x25\x25\x25\x25\x25\x25\x25\x25",
6801                 .klen   = 32,
6802                 .input  = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4"
6803                         "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe",
6804                 .ilen   = 16,
6805                 .result = "\x25\x25\x25\x25\x25\x25\x25\x25"
6806                           "\x25\x25\x25\x25\x25\x25\x25\x25",
6807                 .rlen   = 16,
6808         }, {
6809                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
6810                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6811                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6812                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6813                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6814                 .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6815                          "\x9e\xc6\x84\x0f\x17\x21\x07\xee",
6816                 .klen   = 40,
6817                 .ilen   = 16,
6818                 .result = "\x35\x35\x35\x35\x35\x35\x35\x35"
6819                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6820                 .rlen   = 16,
6821         },
6822 };
6823
6824 static struct cipher_testvec anubis_cbc_enc_tv_template[] = {
6825         {
6826                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6827                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6828                 .klen   = 16,
6829                 .input  = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6830                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6831                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6832                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6833                 .ilen   = 32,
6834                 .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6835                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90"
6836                           "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66"
6837                           "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe",
6838                 .rlen   = 32,
6839         }, {
6840                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
6841                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6842                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6843                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6844                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6845                 .klen   = 40,
6846                 .input  = "\x35\x35\x35\x35\x35\x35\x35\x35"
6847                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6848                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6849                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6850                 .ilen   = 32,
6851                 .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6852                           "\x9e\xc6\x84\x0f\x17\x21\x07\xee"
6853                           "\xa2\xbc\x06\x98\xc6\x4b\xda\x75"
6854                           "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7",
6855                 .rlen   = 32,
6856         },
6857 };
6858
6859 static struct cipher_testvec anubis_cbc_dec_tv_template[] = {
6860         {
6861                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6862                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6863                 .klen   = 16,
6864                 .input  = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6865                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90"
6866                           "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66"
6867                           "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe",
6868                 .ilen   = 32,
6869                 .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6870                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6871                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6872                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6873                 .rlen   = 32,
6874         }, {
6875                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
6876                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6877                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6878                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6879                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6880                 .klen   = 40,
6881                 .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6882                           "\x9e\xc6\x84\x0f\x17\x21\x07\xee"
6883                           "\xa2\xbc\x06\x98\xc6\x4b\xda\x75"
6884                           "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7",
6885                 .ilen   = 32,
6886                 .result = "\x35\x35\x35\x35\x35\x35\x35\x35"
6887                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6888                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6889                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6890                 .rlen   = 32,
6891         },
6892 };
6893
6894 /*
6895  * XETA test vectors
6896  */
6897 #define XETA_ENC_TEST_VECTORS   4
6898 #define XETA_DEC_TEST_VECTORS   4
6899
6900 static struct cipher_testvec xeta_enc_tv_template[] = {
6901         {
6902                 .key    = zeroed_string,
6903                 .klen   = 16,
6904                 .input  = zeroed_string,
6905                 .ilen   = 8,
6906                 .result = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45",
6907                 .rlen   = 8,
6908         }, {
6909                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6910                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6911                 .klen   = 16,
6912                 .input  = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6913                 .ilen   = 8,
6914                 .result = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3",
6915                 .rlen   = 8,
6916         }, {
6917                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6918                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6919                 .klen   = 16,
6920                 .input  = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6921                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6922                 .ilen   = 16,
6923                 .result = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea"
6924                           "\x61\x35\xaa\xed\xb5\xcb\x71\x2c",
6925                 .rlen   = 16,
6926         }, {
6927                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6928                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6929                 .klen   = 16,
6930                 .input  = "\x54\x65\x61\x20\x69\x73\x20\x67"
6931                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6932                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6933                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6934                 .ilen   = 32,
6935                 .result = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1"
6936                           "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4"
6937                           "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f"
6938                           "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5",
6939                 .rlen   = 32,
6940         }
6941 };
6942
6943 static struct cipher_testvec xeta_dec_tv_template[] = {
6944         {
6945                 .key    = zeroed_string,
6946                 .klen   = 16,
6947                 .input  = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45",
6948                 .ilen   = 8,
6949                 .result = zeroed_string,
6950                 .rlen   = 8,
6951         }, {
6952                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6953                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6954                 .klen   = 16,
6955                 .input  = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3",
6956                 .ilen   = 8,
6957                 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6958                 .rlen   = 8,
6959         }, {
6960                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6961                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6962                 .klen   = 16,
6963                 .input  = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea"
6964                           "\x61\x35\xaa\xed\xb5\xcb\x71\x2c",
6965                 .ilen   = 16,
6966                 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6967                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6968                 .rlen   = 16,
6969         }, {
6970                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6971                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6972                 .klen   = 16,
6973                 .input  = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1"
6974                           "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4"
6975                           "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f"
6976                           "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5",
6977                 .ilen   = 32,
6978                 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
6979                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6980                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6981                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6982                 .rlen   = 32,
6983         }
6984 };
6985
6986 /*
6987  * FCrypt test vectors
6988  */
6989 #define FCRYPT_ENC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_enc_tv_template)
6990 #define FCRYPT_DEC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_dec_tv_template)
6991
6992 static struct cipher_testvec fcrypt_pcbc_enc_tv_template[] = {
6993         { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */
6994                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
6995                 .klen   = 8,
6996                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
6997                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
6998                 .ilen   = 8,
6999                 .result = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41",
7000                 .rlen   = 8,
7001         }, {
7002                 .key    = "\x11\x44\x77\xAA\xDD\x00\x33\x66",
7003                 .klen   = 8,
7004                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7005                 .input  = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0",
7006                 .ilen   = 8,
7007                 .result = "\xD8\xED\x78\x74\x77\xEC\x06\x80",
7008                 .rlen   = 8,
7009         }, { /* From Arla */
7010                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7011                 .klen   = 8,
7012                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7013                 .input  = "The quick brown fox jumps over the lazy dogs.\0\0",
7014                 .ilen   = 48,
7015                 .result = "\x00\xf0\x0e\x11\x75\xe6\x23\x82"
7016                           "\xee\xac\x98\x62\x44\x51\xe4\x84"
7017                           "\xc3\x59\xd8\xaa\x64\x60\xae\xf7"
7018                           "\xd2\xd9\x13\x79\x72\xa3\x45\x03"
7019                           "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1"
7020                           "\xf8\x91\x3c\xac\x44\x22\x92\xef",
7021                 .rlen   = 48,
7022         }, {
7023                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7024                 .klen   = 8,
7025                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7026                 .input  = "The quick brown fox jumps over the lazy dogs.\0\0",
7027                 .ilen   = 48,
7028                 .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7029                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7030                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7031                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7032                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7033                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7034                 .rlen   = 48,
7035         }, { /* split-page version */
7036                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7037                 .klen   = 8,
7038                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7039                 .input  = "The quick brown fox jumps over the lazy dogs.\0\0",
7040                 .ilen   = 48,
7041                 .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7042                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7043                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7044                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7045                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7046                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7047                 .rlen   = 48,
7048                 .np     = 2,
7049                 .tap    = { 20, 28 },
7050         }
7051 };
7052
7053 static struct cipher_testvec fcrypt_pcbc_dec_tv_template[] = {
7054         { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */
7055                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
7056                 .klen   = 8,
7057                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7058                 .input  = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41",
7059                 .ilen   = 8,
7060                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
7061                 .rlen   = 8,
7062         }, {
7063                 .key    = "\x11\x44\x77\xAA\xDD\x00\x33\x66",
7064                 .klen   = 8,
7065                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7066                 .input  = "\xD8\xED\x78\x74\x77\xEC\x06\x80",
7067                 .ilen   = 8,
7068                 .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0",
7069                 .rlen   = 8,
7070         }, { /* From Arla */
7071                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7072                 .klen   = 8,
7073                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7074                 .input  = "\x00\xf0\x0e\x11\x75\xe6\x23\x82"
7075                           "\xee\xac\x98\x62\x44\x51\xe4\x84"
7076                           "\xc3\x59\xd8\xaa\x64\x60\xae\xf7"
7077                           "\xd2\xd9\x13\x79\x72\xa3\x45\x03"
7078                           "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1"
7079                           "\xf8\x91\x3c\xac\x44\x22\x92\xef",
7080                 .ilen   = 48,
7081                 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
7082                 .rlen   = 48,
7083         }, {
7084                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7085                 .klen   = 8,
7086                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7087                 .input  = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7088                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7089                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7090                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7091                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7092                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7093                 .ilen   = 48,
7094                 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
7095                 .rlen   = 48,
7096         }, { /* split-page version */
7097                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7098                 .klen   = 8,
7099                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7100                 .input  = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7101                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7102                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7103                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7104                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7105                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7106                 .ilen   = 48,
7107                 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
7108                 .rlen   = 48,
7109                 .np     = 2,
7110                 .tap    = { 20, 28 },
7111         }
7112 };
7113
7114 /*
7115  * CAMELLIA test vectors.
7116  */
7117 #define CAMELLIA_ENC_TEST_VECTORS 3
7118 #define CAMELLIA_DEC_TEST_VECTORS 3
7119 #define CAMELLIA_CBC_ENC_TEST_VECTORS 2
7120 #define CAMELLIA_CBC_DEC_TEST_VECTORS 2
7121
7122 static struct cipher_testvec camellia_enc_tv_template[] = {
7123         {
7124                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7125                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7126                 .klen   = 16,
7127                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7128                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7129                 .ilen   = 16,
7130                 .result = "\x67\x67\x31\x38\x54\x96\x69\x73"
7131                           "\x08\x57\x06\x56\x48\xea\xbe\x43",
7132                 .rlen   = 16,
7133         }, {
7134                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7135                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7136                           "\x00\x11\x22\x33\x44\x55\x66\x77",
7137                 .klen   = 24,
7138                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7139                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7140                 .ilen   = 16,
7141                 .result = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8"
7142                           "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9",
7143                 .rlen   = 16,
7144         }, {
7145                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7146                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7147                           "\x00\x11\x22\x33\x44\x55\x66\x77"
7148                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
7149                 .klen   = 32,
7150                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7151                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7152                 .ilen   = 16,
7153                 .result = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c"
7154                           "\x20\xef\x7c\x91\x9e\x3a\x75\x09",
7155                 .rlen   = 16,
7156         },
7157 };
7158
7159 static struct cipher_testvec camellia_dec_tv_template[] = {
7160         {
7161                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7162                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7163                 .klen   = 16,
7164                 .input  = "\x67\x67\x31\x38\x54\x96\x69\x73"
7165                           "\x08\x57\x06\x56\x48\xea\xbe\x43",
7166                 .ilen   = 16,
7167                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7168                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7169                 .rlen   = 16,
7170         }, {
7171                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7172                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7173                           "\x00\x11\x22\x33\x44\x55\x66\x77",
7174                 .klen   = 24,
7175                 .input  = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8"
7176                           "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9",
7177                 .ilen   = 16,
7178                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7179                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7180                 .rlen   = 16,
7181         }, {
7182                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7183                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7184                           "\x00\x11\x22\x33\x44\x55\x66\x77"
7185                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
7186                 .klen   = 32,
7187                 .input  = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c"
7188                           "\x20\xef\x7c\x91\x9e\x3a\x75\x09",
7189                 .ilen   = 16,
7190                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7191                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7192                 .rlen   = 16,
7193         },
7194 };
7195
7196 static struct cipher_testvec camellia_cbc_enc_tv_template[] = {
7197         {
7198                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
7199                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
7200                 .klen   = 16,
7201                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
7202                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
7203                 .input  = "Single block msg",
7204                 .ilen   = 16,
7205                 .result = "\xea\x32\x12\x76\x3b\x50\x10\xe7"
7206                           "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51",
7207                 .rlen   = 16,
7208         }, {
7209                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
7210                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
7211                 .klen   = 16,
7212                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
7213                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
7214                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
7215                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7216                           "\x10\x11\x12\x13\x14\x15\x16\x17"
7217                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
7218                 .ilen   = 32,
7219                 .result = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01"
7220                           "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd"
7221                           "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0"
7222                           "\x15\x78\xe0\x5e\xf2\xcb\x87\x16",
7223                 .rlen   = 32,
7224         },
7225 };
7226
7227 static struct cipher_testvec camellia_cbc_dec_tv_template[] = {
7228         {
7229                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
7230                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
7231                 .klen   = 16,
7232                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
7233                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
7234                 .input  = "\xea\x32\x12\x76\x3b\x50\x10\xe7"
7235                           "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51",
7236                 .ilen   = 16,
7237                 .result = "Single block msg",
7238                 .rlen   = 16,
7239         }, {
7240                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
7241                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
7242                 .klen   = 16,
7243                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
7244                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
7245                 .input = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01"
7246                           "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd"
7247                           "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0"
7248                           "\x15\x78\xe0\x5e\xf2\xcb\x87\x16",
7249                 .ilen   = 32,
7250                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
7251                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7252                           "\x10\x11\x12\x13\x14\x15\x16\x17"
7253                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
7254                 .rlen   = 32,
7255         },
7256 };
7257
7258 /*
7259  * SEED test vectors
7260  */
7261 #define SEED_ENC_TEST_VECTORS   4
7262 #define SEED_DEC_TEST_VECTORS   4
7263
7264 static struct cipher_testvec seed_enc_tv_template[] = {
7265         {
7266                 .key    = zeroed_string,
7267                 .klen   = 16,
7268                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
7269                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7270                 .ilen   = 16,
7271                 .result = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68"
7272                           "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb",
7273                 .rlen   = 16,
7274         }, {
7275                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
7276                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7277                 .klen   = 16,
7278                 .input  = zeroed_string,
7279                 .ilen   = 16,
7280                 .result = "\xc1\x1f\x22\xf2\x01\x40\x50\x50"
7281                           "\x84\x48\x35\x97\xe4\x37\x0f\x43",
7282                 .rlen   = 16,
7283         }, {
7284                 .key    = "\x47\x06\x48\x08\x51\xe6\x1b\xe8"
7285                           "\x5d\x74\xbf\xb3\xfd\x95\x61\x85",
7286                 .klen   = 16,
7287                 .input  = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9"
7288                           "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d",
7289                 .ilen   = 16,
7290                 .result = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d"
7291                           "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a",
7292                 .rlen   = 16,
7293         }, {
7294                 .key    = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d"
7295                           "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7",
7296                 .klen   = 16,
7297                 .input  = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14"
7298                           "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7",
7299                 .ilen   = 16,
7300                 .result = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9"
7301                           "\x5d\x0b\x36\x18\xf4\x0f\x51\x22",
7302                 .rlen   = 16,
7303         }
7304 };
7305
7306 static struct cipher_testvec seed_dec_tv_template[] = {
7307         {
7308                 .key    = zeroed_string,
7309                 .klen   = 16,
7310                 .input  = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68"
7311                           "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb",
7312                 .ilen   = 16,
7313                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
7314                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7315                 .rlen   = 16,
7316         }, {
7317                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
7318                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7319                 .klen   = 16,
7320                 .input  = "\xc1\x1f\x22\xf2\x01\x40\x50\x50"
7321                           "\x84\x48\x35\x97\xe4\x37\x0f\x43",
7322                 .ilen   = 16,
7323                 .result = zeroed_string,
7324                 .rlen   = 16,
7325         }, {
7326                 .key    = "\x47\x06\x48\x08\x51\xe6\x1b\xe8"
7327                           "\x5d\x74\xbf\xb3\xfd\x95\x61\x85",
7328                 .klen   = 16,
7329                 .input  = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d"
7330                           "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a",
7331                 .ilen   = 16,
7332                 .result = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9"
7333                           "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d",
7334                 .rlen   = 16,
7335         }, {
7336                 .key    = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d"
7337                           "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7",
7338                 .klen   = 16,
7339                 .input  = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9"
7340                           "\x5d\x0b\x36\x18\xf4\x0f\x51\x22",
7341                 .ilen   = 16,
7342                 .result = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14"
7343                           "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7",
7344                 .rlen   = 16,
7345         }
7346 };
7347
7348 #define SALSA20_STREAM_ENC_TEST_VECTORS 5
7349 static struct cipher_testvec salsa20_stream_enc_tv_template[] = {
7350         /*
7351         * Testvectors from verified.test-vectors submitted to ECRYPT.
7352         * They are truncated to size 39, 64, 111, 129 to test a variety
7353         * of input length.
7354         */
7355         { /* Set 3, vector 0 */
7356                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
7357                         "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F",
7358                 .klen   = 16,
7359                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7360                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
7361                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7362                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7363                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7364                         "\x00\x00\x00\x00\x00\x00\x00",
7365                 .ilen   = 39,
7366                 .result = "\x2D\xD5\xC3\xF7\xBA\x2B\x20\xF7"
7367                          "\x68\x02\x41\x0C\x68\x86\x88\x89"
7368                          "\x5A\xD8\xC1\xBD\x4E\xA6\xC9\xB1"
7369                          "\x40\xFB\x9B\x90\xE2\x10\x49\xBF"
7370                          "\x58\x3F\x52\x79\x70\xEB\xC1",
7371                 .rlen   = 39,
7372         }, { /* Set 5, vector 0 */
7373                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
7374                         "\x00\x00\x00\x00\x00\x00\x00\x00",
7375                 .klen   = 16,
7376                 .iv     = "\x80\x00\x00\x00\x00\x00\x00\x00",
7377                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
7378                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7379                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7380                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7381                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7382                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7383                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7384                         "\x00\x00\x00\x00\x00\x00\x00\x00",
7385                 .ilen   = 64,
7386                 .result = "\xB6\x6C\x1E\x44\x46\xDD\x95\x57"
7387                          "\xE5\x78\xE2\x23\xB0\xB7\x68\x01"
7388                          "\x7B\x23\xB2\x67\xBB\x02\x34\xAE"
7389                          "\x46\x26\xBF\x44\x3F\x21\x97\x76"
7390                          "\x43\x6F\xB1\x9F\xD0\xE8\x86\x6F"
7391                          "\xCD\x0D\xE9\xA9\x53\x8F\x4A\x09"
7392                          "\xCA\x9A\xC0\x73\x2E\x30\xBC\xF9"
7393                          "\x8E\x4F\x13\xE4\xB9\xE2\x01\xD9",
7394                 .rlen   = 64,
7395         }, { /* Set 3, vector 27 */
7396                 .key    = "\x1B\x1C\x1D\x1E\x1F\x20\x21\x22"
7397                         "\x23\x24\x25\x26\x27\x28\x29\x2A"
7398                         "\x2B\x2C\x2D\x2E\x2F\x30\x31\x32"
7399                         "\x33\x34\x35\x36\x37\x38\x39\x3A",
7400                 .klen   = 32,
7401                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7402                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
7403                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7404                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7405                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7406                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7407                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7408                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7409                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7410                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7411                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7412                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7413                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7414                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7415                         "\x00\x00\x00\x00\x00\x00\x00",
7416                 .ilen   = 111,
7417                 .result = "\xAE\x39\x50\x8E\xAC\x9A\xEC\xE7"
7418                          "\xBF\x97\xBB\x20\xB9\xDE\xE4\x1F"
7419                          "\x87\xD9\x47\xF8\x28\x91\x35\x98"
7420                          "\xDB\x72\xCC\x23\x29\x48\x56\x5E"
7421                          "\x83\x7E\x0B\xF3\x7D\x5D\x38\x7B"
7422                          "\x2D\x71\x02\xB4\x3B\xB5\xD8\x23"
7423                          "\xB0\x4A\xDF\x3C\xEC\xB6\xD9\x3B"
7424                          "\x9B\xA7\x52\xBE\xC5\xD4\x50\x59"
7425                          "\x15\x14\xB4\x0E\x40\xE6\x53\xD1"
7426                          "\x83\x9C\x5B\xA0\x92\x29\x6B\x5E"
7427                          "\x96\x5B\x1E\x2F\xD3\xAC\xC1\x92"
7428                          "\xB1\x41\x3F\x19\x2F\xC4\x3B\xC6"
7429                          "\x95\x46\x45\x54\xE9\x75\x03\x08"
7430                          "\x44\xAF\xE5\x8A\x81\x12\x09",
7431                 .rlen   = 111,
7432         }, { /* Set 5, vector 27 */
7433                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
7434                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7435                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7436                         "\x00\x00\x00\x00\x00\x00\x00\x00",
7437                 .klen   = 32,
7438                 .iv     = "\x00\x00\x00\x10\x00\x00\x00\x00",
7439                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
7440                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7441                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7442                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7443                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7444                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7445                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7446                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7447                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7448                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7449                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7450                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7451                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7452                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7453                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7454                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7455                         "\x00",
7456                 .ilen   = 129,
7457                 .result = "\xD2\xDB\x1A\x5C\xF1\xC1\xAC\xDB"
7458                          "\xE8\x1A\x7A\x43\x40\xEF\x53\x43"
7459                          "\x5E\x7F\x4B\x1A\x50\x52\x3F\x8D"
7460                          "\x28\x3D\xCF\x85\x1D\x69\x6E\x60"
7461                          "\xF2\xDE\x74\x56\x18\x1B\x84\x10"
7462                          "\xD4\x62\xBA\x60\x50\xF0\x61\xF2"
7463                          "\x1C\x78\x7F\xC1\x24\x34\xAF\x58"
7464                          "\xBF\x2C\x59\xCA\x90\x77\xF3\xB0"
7465                          "\x5B\x4A\xDF\x89\xCE\x2C\x2F\xFC"
7466                          "\x67\xF0\xE3\x45\xE8\xB3\xB3\x75"
7467                          "\xA0\x95\x71\xA1\x29\x39\x94\xCA"
7468                          "\x45\x2F\xBD\xCB\x10\xB6\xBE\x9F"
7469                          "\x8E\xF9\xB2\x01\x0A\x5A\x0A\xB7"
7470                          "\x6B\x9D\x70\x8E\x4B\xD6\x2F\xCD"
7471                          "\x2E\x40\x48\x75\xE9\xE2\x21\x45"
7472                          "\x0B\xC9\xB6\xB5\x66\xBC\x9A\x59"
7473                          "\x5A",
7474                 .rlen   = 129,
7475         }, { /* large test vector generated using Crypto++ */
7476                 .key =  "\x00\x01\x02\x03\x04\x05\x06\x07"
7477                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7478                         "\x10\x11\x12\x13\x14\x15\x16\x17"
7479                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
7480                 .klen = 32,
7481                 .iv =   "\x00\x00\x00\x00\x00\x00\x00\x00"
7482                         "\x00\x00\x00\x00\x00\x00\x00\x00",
7483                 .input =
7484                         "\x00\x01\x02\x03\x04\x05\x06\x07"
7485                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7486                         "\x10\x11\x12\x13\x14\x15\x16\x17"
7487                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
7488                         "\x20\x21\x22\x23\x24\x25\x26\x27"
7489                         "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
7490                         "\x30\x31\x32\x33\x34\x35\x36\x37"
7491                         "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
7492                         "\x40\x41\x42\x43\x44\x45\x46\x47"
7493                         "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
7494                         "\x50\x51\x52\x53\x54\x55\x56\x57"
7495                         "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
7496                         "\x60\x61\x62\x63\x64\x65\x66\x67"
7497                         "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
7498                         "\x70\x71\x72\x73\x74\x75\x76\x77"
7499                         "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
7500                         "\x80\x81\x82\x83\x84\x85\x86\x87"
7501                         "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
7502                         "\x90\x91\x92\x93\x94\x95\x96\x97"
7503                         "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
7504                         "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
7505                         "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
7506                         "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
7507                         "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
7508                         "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
7509                         "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
7510                         "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
7511                         "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
7512                         "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
7513                         "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
7514                         "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
7515                         "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
7516                         "\x00\x03\x06\x09\x0c\x0f\x12\x15"
7517                         "\x18\x1b\x1e\x21\x24\x27\x2a\x2d"
7518                         "\x30\x33\x36\x39\x3c\x3f\x42\x45"
7519                         "\x48\x4b\x4e\x51\x54\x57\x5a\x5d"
7520                         "\x60\x63\x66\x69\x6c\x6f\x72\x75"
7521                         "\x78\x7b\x7e\x81\x84\x87\x8a\x8d"
7522                         "\x90\x93\x96\x99\x9c\x9f\xa2\xa5"
7523                         "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd"
7524                         "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5"
7525                         "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed"
7526                         "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05"
7527                         "\x08\x0b\x0e\x11\x14\x17\x1a\x1d"
7528                         "\x20\x23\x26\x29\x2c\x2f\x32\x35"
7529                         "\x38\x3b\x3e\x41\x44\x47\x4a\x4d"
7530                         "\x50\x53\x56\x59\x5c\x5f\x62\x65"
7531                         "\x68\x6b\x6e\x71\x74\x77\x7a\x7d"
7532                         "\x80\x83\x86\x89\x8c\x8f\x92\x95"
7533                         "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad"
7534                         "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5"
7535                         "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd"
7536                         "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5"
7537                         "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d"
7538                         "\x10\x13\x16\x19\x1c\x1f\x22\x25"
7539                         "\x28\x2b\x2e\x31\x34\x37\x3a\x3d"
7540                         "\x40\x43\x46\x49\x4c\x4f\x52\x55"
7541                         "\x58\x5b\x5e\x61\x64\x67\x6a\x6d"
7542                         "\x70\x73\x76\x79\x7c\x7f\x82\x85"
7543                         "\x88\x8b\x8e\x91\x94\x97\x9a\x9d"
7544                         "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5"
7545                         "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd"
7546                         "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5"
7547                         "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd"
7548                         "\x00\x05\x0a\x0f\x14\x19\x1e\x23"
7549                         "\x28\x2d\x32\x37\x3c\x41\x46\x4b"
7550                         "\x50\x55\x5a\x5f\x64\x69\x6e\x73"
7551                         "\x78\x7d\x82\x87\x8c\x91\x96\x9b"
7552                         "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3"
7553                         "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb"
7554                         "\xf0\xf5\xfa\xff\x04\x09\x0e\x13"
7555                         "\x18\x1d\x22\x27\x2c\x31\x36\x3b"
7556                         "\x40\x45\x4a\x4f\x54\x59\x5e\x63"
7557                         "\x68\x6d\x72\x77\x7c\x81\x86\x8b"
7558                         "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3"
7559                         "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb"
7560                         "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03"
7561                         "\x08\x0d\x12\x17\x1c\x21\x26\x2b"
7562                         "\x30\x35\x3a\x3f\x44\x49\x4e\x53"
7563                         "\x58\x5d\x62\x67\x6c\x71\x76\x7b"
7564                         "\x80\x85\x8a\x8f\x94\x99\x9e\xa3"
7565                         "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb"
7566                         "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3"
7567                         "\xf8\xfd\x02\x07\x0c\x11\x16\x1b"
7568                         "\x20\x25\x2a\x2f\x34\x39\x3e\x43"
7569                         "\x48\x4d\x52\x57\x5c\x61\x66\x6b"
7570                         "\x70\x75\x7a\x7f\x84\x89\x8e\x93"
7571                         "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb"
7572                         "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3"
7573                         "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b"
7574                         "\x10\x15\x1a\x1f\x24\x29\x2e\x33"
7575                         "\x38\x3d\x42\x47\x4c\x51\x56\x5b"
7576                         "\x60\x65\x6a\x6f\x74\x79\x7e\x83"
7577                         "\x88\x8d\x92\x97\x9c\xa1\xa6\xab"
7578                         "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3"
7579                         "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb"
7580                         "\x00\x07\x0e\x15\x1c\x23\x2a\x31"
7581                         "\x38\x3f\x46\x4d\x54\x5b\x62\x69"
7582                         "\x70\x77\x7e\x85\x8c\x93\x9a\xa1"
7583                         "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9"
7584                         "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11"
7585                         "\x18\x1f\x26\x2d\x34\x3b\x42\x49"
7586                         "\x50\x57\x5e\x65\x6c\x73\x7a\x81"
7587                         "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9"
7588                         "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1"
7589                         "\xf8\xff\x06\x0d\x14\x1b\x22\x29"
7590                         "\x30\x37\x3e\x45\x4c\x53\x5a\x61"
7591                         "\x68\x6f\x76\x7d\x84\x8b\x92\x99"
7592                         "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1"
7593                         "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09"
7594                         "\x10\x17\x1e\x25\x2c\x33\x3a\x41"
7595                         "\x48\x4f\x56\x5d\x64\x6b\x72\x79"
7596                         "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1"
7597                         "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9"
7598                         "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21"
7599                         "\x28\x2f\x36\x3d\x44\x4b\x52\x59"
7600                         "\x60\x67\x6e\x75\x7c\x83\x8a\x91"
7601                         "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9"
7602                         "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01"
7603                         "\x08\x0f\x16\x1d\x24\x2b\x32\x39"
7604                         "\x40\x47\x4e\x55\x5c\x63\x6a\x71"
7605                         "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9"
7606                         "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1"
7607                         "\xe8\xef\xf6\xfd\x04\x0b\x12\x19"
7608                         "\x20\x27\x2e\x35\x3c\x43\x4a\x51"
7609                         "\x58\x5f\x66\x6d\x74\x7b\x82\x89"
7610                         "\x90\x97\x9e\xa5\xac\xb3\xba\xc1"
7611                         "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9"
7612                         "\x00\x09\x12\x1b\x24\x2d\x36\x3f"
7613                         "\x48\x51\x5a\x63\x6c\x75\x7e\x87"
7614                         "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf"
7615                         "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17"
7616                         "\x20\x29\x32\x3b\x44\x4d\x56\x5f"
7617                         "\x68\x71\x7a\x83\x8c\x95\x9e\xa7"
7618                         "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef"
7619                         "\xf8\x01\x0a\x13\x1c\x25\x2e\x37"
7620                         "\x40\x49\x52\x5b\x64\x6d\x76\x7f"
7621                         "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7"
7622                         "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f"
7623                         "\x18\x21\x2a\x33\x3c\x45\x4e\x57"
7624                         "\x60\x69\x72\x7b\x84\x8d\x96\x9f"
7625                         "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7"
7626                         "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f"
7627                         "\x38\x41\x4a\x53\x5c\x65\x6e\x77"
7628                         "\x80\x89\x92\x9b\xa4\xad\xb6\xbf"
7629                         "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07"
7630                         "\x10\x19\x22\x2b\x34\x3d\x46\x4f"
7631                         "\x58\x61\x6a\x73\x7c\x85\x8e\x97"
7632                         "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf"
7633                         "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27"
7634                         "\x30\x39\x42\x4b\x54\x5d\x66\x6f"
7635                         "\x78\x81\x8a\x93\x9c\xa5\xae\xb7"
7636                         "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff"
7637                         "\x08\x11\x1a\x23\x2c\x35\x3e\x47"
7638                         "\x50\x59\x62\x6b\x74\x7d\x86\x8f"
7639                         "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7"
7640                         "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f"
7641                         "\x28\x31\x3a\x43\x4c\x55\x5e\x67"
7642                         "\x70\x79\x82\x8b\x94\x9d\xa6\xaf"
7643                         "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7"
7644                         "\x00\x0b\x16\x21\x2c\x37\x42\x4d"
7645                         "\x58\x63\x6e\x79\x84\x8f\x9a\xa5"
7646                         "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd"
7647                         "\x08\x13\x1e\x29\x34\x3f\x4a\x55"
7648                         "\x60\x6b\x76\x81\x8c\x97\xa2\xad"
7649                         "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05"
7650                         "\x10\x1b\x26\x31\x3c\x47\x52\x5d"
7651                         "\x68\x73\x7e\x89\x94\x9f\xaa\xb5"
7652                         "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d"
7653                         "\x18\x23\x2e\x39\x44\x4f\x5a\x65"
7654                         "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd"
7655                         "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15"
7656                         "\x20\x2b\x36\x41\x4c\x57\x62\x6d"
7657                         "\x78\x83\x8e\x99\xa4\xaf\xba\xc5"
7658                         "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d"
7659                         "\x28\x33\x3e\x49\x54\x5f\x6a\x75"
7660                         "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd"
7661                         "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25"
7662                         "\x30\x3b\x46\x51\x5c\x67\x72\x7d"
7663                         "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5"
7664                         "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d"
7665                         "\x38\x43\x4e\x59\x64\x6f\x7a\x85"
7666                         "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd"
7667                         "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35"
7668                         "\x40\x4b\x56\x61\x6c\x77\x82\x8d"
7669                         "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5"
7670                         "\xf0\xfb\x06\x11\x1c\x27\x32\x3d"
7671                         "\x48\x53\x5e\x69\x74\x7f\x8a\x95"
7672                         "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed"
7673                         "\xf8\x03\x0e\x19\x24\x2f\x3a\x45"
7674                         "\x50\x5b\x66\x71\x7c\x87\x92\x9d"
7675                         "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5"
7676                         "\x00\x0d\x1a\x27\x34\x41\x4e\x5b"
7677                         "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3"
7678                         "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b"
7679                         "\x38\x45\x52\x5f\x6c\x79\x86\x93"
7680                         "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb"
7681                         "\x08\x15\x22\x2f\x3c\x49\x56\x63"
7682                         "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb"
7683                         "\xd8\xe5\xf2\xff\x0c\x19\x26\x33"
7684                         "\x40\x4d\x5a\x67\x74\x81\x8e\x9b"
7685                         "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03"
7686                         "\x10\x1d\x2a\x37\x44\x51\x5e\x6b"
7687                         "\x78\x85\x92\x9f\xac\xb9\xc6\xd3"
7688                         "\xe0\xed\xfa\x07\x14\x21\x2e\x3b"
7689                         "\x48\x55\x62\x6f\x7c\x89\x96\xa3"
7690                         "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b"
7691                         "\x18\x25\x32\x3f\x4c\x59\x66\x73"
7692                         "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb"
7693                         "\xe8\xf5\x02\x0f\x1c\x29\x36\x43"
7694                         "\x50\x5d\x6a\x77\x84\x91\x9e\xab"
7695                         "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13"
7696                         "\x20\x2d\x3a\x47\x54\x61\x6e\x7b"
7697                         "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3"
7698                         "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b"
7699                         "\x58\x65\x72\x7f\x8c\x99\xa6\xb3"
7700                         "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b"
7701                         "\x28\x35\x42\x4f\x5c\x69\x76\x83"
7702                         "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb"
7703                         "\xf8\x05\x12\x1f\x2c\x39\x46\x53"
7704                         "\x60\x6d\x7a\x87\x94\xa1\xae\xbb"
7705                         "\xc8\xd5\xe2\xef\xfc\x09\x16\x23"
7706                         "\x30\x3d\x4a\x57\x64\x71\x7e\x8b"
7707                         "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3"
7708                         "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69"
7709                         "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1"
7710                         "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59"
7711                         "\x68\x77\x86\x95\xa4\xb3\xc2\xd1"
7712                         "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49"
7713                         "\x58\x67\x76\x85\x94\xa3\xb2\xc1"
7714                         "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39"
7715                         "\x48\x57\x66\x75\x84\x93\xa2\xb1"
7716                         "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29"
7717                         "\x38\x47\x56\x65\x74\x83\x92\xa1"
7718                         "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19"
7719                         "\x28\x37\x46\x55\x64\x73\x82\x91"
7720                         "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09"
7721                         "\x18\x27\x36\x45\x54\x63\x72\x81"
7722                         "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9"
7723                         "\x08\x17\x26\x35\x44\x53\x62\x71"
7724                         "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9"
7725                         "\xf8\x07\x16\x25\x34\x43\x52\x61"
7726                         "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9"
7727                         "\xe8\xf7\x06\x15\x24\x33\x42\x51"
7728                         "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9"
7729                         "\xd8\xe7\xf6\x05\x14\x23\x32\x41"
7730                         "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9"
7731                         "\xc8\xd7\xe6\xf5\x04\x13\x22\x31"
7732                         "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9"
7733                         "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21"
7734                         "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99"
7735                         "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11"
7736                         "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89"
7737                         "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01"
7738                         "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79"
7739                         "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1"
7740                         "\x00\x11\x22\x33\x44\x55\x66\x77"
7741                         "\x88\x99\xaa\xbb\xcc\xdd\xee\xff"
7742                         "\x10\x21\x32\x43\x54\x65\x76\x87"
7743                         "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f"
7744                         "\x20\x31\x42\x53\x64\x75\x86\x97"
7745                         "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f"
7746                         "\x30\x41\x52\x63\x74\x85\x96\xa7"
7747                         "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f"
7748                         "\x40\x51\x62\x73\x84\x95\xa6\xb7"
7749                         "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f"
7750                         "\x50\x61\x72\x83\x94\xa5\xb6\xc7"
7751                         "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f"
7752                         "\x60\x71\x82\x93\xa4\xb5\xc6\xd7"
7753                         "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f"
7754                         "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7"
7755                         "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f"
7756                         "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7"
7757                         "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f"
7758                         "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07"
7759                         "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f"
7760                         "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17"
7761                         "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f"
7762                         "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27"
7763                         "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf"
7764                         "\xc0\xd1\xe2\xf3\x04\x15\x26\x37"
7765                         "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf"
7766                         "\xd0\xe1\xf2\x03\x14\x25\x36\x47"
7767                         "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf"
7768                         "\xe0\xf1\x02\x13\x24\x35\x46\x57"
7769                         "\x68\x79\x8a\x9b\xac\xbd\xce\xdf"
7770                         "\xf0\x01\x12\x23\x34\x45\x56\x67"
7771                         "\x78\x89\x9a\xab\xbc\xcd\xde\xef"
7772                         "\x00\x13\x26\x39\x4c\x5f\x72\x85"
7773                         "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d"
7774                         "\x30\x43\x56\x69\x7c\x8f\xa2\xb5"
7775                         "\xc8\xdb\xee\x01\x14\x27\x3a\x4d"
7776                         "\x60\x73\x86\x99\xac\xbf\xd2\xe5"
7777                         "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d"
7778                         "\x90\xa3\xb6\xc9\xdc\xef\x02\x15"
7779                         "\x28\x3b\x4e\x61\x74\x87\x9a\xad"
7780                         "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45"
7781                         "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd"
7782                         "\xf0\x03\x16\x29\x3c\x4f\x62\x75"
7783                         "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d"
7784                         "\x20\x33\x46\x59\x6c\x7f\x92\xa5"
7785                         "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d"
7786                         "\x50\x63\x76\x89\x9c\xaf\xc2\xd5"
7787                         "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d"
7788                         "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05"
7789                         "\x18\x2b\x3e\x51\x64\x77\x8a\x9d"
7790                         "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35"
7791                         "\x48\x5b\x6e\x81\x94\xa7\xba\xcd"
7792                         "\xe0\xf3\x06\x19\x2c\x3f\x52\x65"
7793                         "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd"
7794                         "\x10\x23\x36\x49\x5c\x6f\x82\x95"
7795                         "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d"
7796                         "\x40\x53\x66\x79\x8c\x9f\xb2\xc5"
7797                         "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d"
7798                         "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5"
7799                         "\x08\x1b\x2e\x41\x54\x67\x7a\x8d"
7800                         "\xa0\xb3\xc6\xd9\xec\xff\x12\x25"
7801                         "\x38\x4b\x5e\x71\x84\x97\xaa\xbd"
7802                         "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55"
7803                         "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed"
7804                         "\x00\x15\x2a\x3f\x54\x69\x7e\x93"
7805                         "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b"
7806                         "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3"
7807                         "\xf8\x0d\x22\x37\x4c\x61\x76\x8b"
7808                         "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33"
7809                         "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb"
7810                         "\xf0\x05\x1a\x2f\x44\x59\x6e\x83"
7811                         "\x98\xad\xc2\xd7\xec\x01\x16\x2b"
7812                         "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3"
7813                         "\xe8\xfd\x12\x27\x3c\x51\x66\x7b"
7814                         "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23"
7815                         "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb"
7816                         "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73"
7817                         "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b"
7818                         "\x30\x45\x5a\x6f\x84\x99\xae\xc3"
7819                         "\xd8\xed\x02\x17\x2c\x41\x56\x6b"
7820                         "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13"
7821                         "\x28\x3d\x52\x67\x7c\x91\xa6\xbb"
7822                         "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63"
7823                         "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b"
7824                         "\x20\x35\x4a\x5f\x74\x89\x9e\xb3"
7825                         "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b"
7826                         "\x70\x85\x9a\xaf\xc4\xd9\xee\x03"
7827                         "\x18\x2d\x42\x57\x6c\x81\x96\xab"
7828                         "\xc0\xd5\xea\xff\x14\x29\x3e\x53"
7829                         "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb"
7830                         "\x10\x25\x3a\x4f\x64\x79\x8e\xa3"
7831                         "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b"
7832                         "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3"
7833                         "\x08\x1d\x32\x47\x5c\x71\x86\x9b"
7834                         "\xb0\xc5\xda\xef\x04\x19\x2e\x43"
7835                         "\x58\x6d\x82\x97\xac\xc1\xd6\xeb"
7836                         "\x00\x17\x2e\x45\x5c\x73\x8a\xa1"
7837                         "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59"
7838                         "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11"
7839                         "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9"
7840                         "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81"
7841                         "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39"
7842                         "\x50\x67\x7e\x95\xac\xc3\xda\xf1"
7843                         "\x08\x1f\x36\x4d\x64\x7b\x92\xa9"
7844                         "\xc0\xd7\xee\x05\x1c\x33\x4a\x61"
7845                         "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19"
7846                         "\x30\x47\x5e\x75\x8c\xa3\xba\xd1"
7847                         "\xe8\xff\x16\x2d\x44\x5b\x72\x89"
7848                         "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41"
7849                         "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9"
7850                         "\x10\x27\x3e\x55\x6c\x83\x9a\xb1"
7851                         "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69"
7852                         "\x80\x97\xae\xc5\xdc\xf3\x0a\x21"
7853                         "\x38\x4f\x66\x7d\x94\xab\xc2\xd9"
7854                         "\xf0\x07\x1e\x35\x4c\x63\x7a\x91"
7855                         "\xa8\xbf\xd6\xed\x04\x1b\x32\x49"
7856                         "\x60\x77\x8e\xa5\xbc\xd3\xea\x01"
7857                         "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9"
7858                         "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71"
7859                         "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29"
7860                         "\x40\x57\x6e\x85\x9c\xb3\xca\xe1"
7861                         "\xf8\x0f\x26\x3d\x54\x6b\x82\x99"
7862                         "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51"
7863                         "\x68\x7f\x96\xad\xc4\xdb\xf2\x09"
7864                         "\x20\x37\x4e\x65\x7c\x93\xaa\xc1"
7865                         "\xd8\xef\x06\x1d\x34\x4b\x62\x79"
7866                         "\x90\xa7\xbe\xd5\xec\x03\x1a\x31"
7867                         "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9"
7868                         "\x00\x19\x32\x4b\x64\x7d\x96\xaf"
7869                         "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77"
7870                         "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f"
7871                         "\x58\x71\x8a\xa3\xbc\xd5\xee\x07"
7872                         "\x20\x39\x52\x6b\x84\x9d\xb6\xcf"
7873                         "\xe8\x01\x1a\x33\x4c\x65\x7e\x97"
7874                         "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f"
7875                         "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27"
7876                         "\x40\x59\x72\x8b\xa4\xbd\xd6\xef"
7877                         "\x08\x21\x3a\x53\x6c\x85\x9e\xb7"
7878                         "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f"
7879                         "\x98\xb1\xca\xe3\xfc\x15\x2e\x47"
7880                         "\x60\x79\x92\xab\xc4\xdd\xf6\x0f"
7881                         "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7"
7882                         "\xf0\x09\x22\x3b\x54\x6d\x86\x9f"
7883                         "\xb8\xd1\xea\x03\x1c\x35\x4e\x67"
7884                         "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f"
7885                         "\x48\x61\x7a\x93\xac\xc5\xde\xf7"
7886                         "\x10\x29\x42\x5b\x74\x8d\xa6\xbf"
7887                         "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87"
7888                         "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f"
7889                         "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17"
7890                         "\x30\x49\x62\x7b\x94\xad\xc6\xdf"
7891                         "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7"
7892                         "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f"
7893                         "\x88\xa1\xba\xd3\xec\x05\x1e\x37"
7894                         "\x50\x69\x82\x9b\xb4\xcd\xe6\xff"
7895                         "\x18\x31\x4a\x63\x7c\x95\xae\xc7"
7896                         "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f"
7897                         "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57"
7898                         "\x70\x89\xa2\xbb\xd4\xed\x06\x1f"
7899                         "\x38\x51\x6a\x83\x9c\xb5\xce\xe7"
7900                         "\x00\x1b\x36\x51\x6c\x87\xa2\xbd"
7901                         "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95"
7902                         "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d"
7903                         "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45"
7904                         "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d"
7905                         "\x38\x53\x6e\x89\xa4\xbf\xda\xf5"
7906                         "\x10\x2b\x46\x61\x7c\x97\xb2\xcd"
7907                         "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5"
7908                         "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d"
7909                         "\x98\xb3\xce\xe9\x04\x1f\x3a\x55"
7910                         "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d"
7911                         "\x48\x63\x7e\x99\xb4\xcf\xea\x05"
7912                         "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd"
7913                         "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5"
7914                         "\xd0\xeb\x06\x21\x3c\x57\x72\x8d"
7915                         "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65"
7916                         "\x80\x9b\xb6\xd1\xec\x07\x22\x3d"
7917                         "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15"
7918                         "\x30\x4b\x66\x81\x9c\xb7\xd2\xed"
7919                         "\x08\x23\x3e\x59\x74\x8f\xaa\xc5"
7920                         "\xe0\xfb\x16\x31\x4c\x67\x82\x9d"
7921                         "\xb8\xd3\xee\x09\x24\x3f\x5a\x75"
7922                         "\x90\xab\xc6\xe1\xfc\x17\x32\x4d"
7923                         "\x68\x83\x9e\xb9\xd4\xef\x0a\x25"
7924                         "\x40\x5b\x76\x91\xac\xc7\xe2\xfd"
7925                         "\x18\x33\x4e\x69\x84\x9f\xba\xd5"
7926                         "\xf0\x0b\x26\x41\x5c\x77\x92\xad"
7927                         "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85"
7928                         "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d"
7929                         "\x78\x93\xae\xc9\xe4\xff\x1a\x35"
7930                         "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d"
7931                         "\x28\x43\x5e\x79\x94\xaf\xca\xe5"
7932                         "\x00\x1d\x3a\x57\x74\x91\xae\xcb"
7933                         "\xe8\x05\x22\x3f\x5c\x79\x96\xb3"
7934                         "\xd0\xed\x0a\x27\x44\x61\x7e\x9b"
7935                         "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83"
7936                         "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b"
7937                         "\x88\xa5\xc2\xdf\xfc\x19\x36\x53"
7938                         "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b"
7939                         "\x58\x75\x92\xaf\xcc\xe9\x06\x23"
7940                         "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b"
7941                         "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3"
7942                         "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb"
7943                         "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3"
7944                         "\xe0\xfd\x1a\x37\x54\x71\x8e\xab"
7945                         "\xc8\xe5\x02\x1f\x3c\x59\x76\x93"
7946                         "\xb0\xcd\xea\x07\x24\x41\x5e\x7b"
7947                         "\x98\xb5\xd2\xef\x0c\x29\x46\x63"
7948                         "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b"
7949                         "\x68\x85\xa2\xbf\xdc\xf9\x16\x33"
7950                         "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b"
7951                         "\x38\x55\x72\x8f\xac\xc9\xe6\x03"
7952                         "\x20\x3d\x5a\x77\x94\xb1\xce\xeb"
7953                         "\x08\x25\x42\x5f\x7c\x99\xb6\xd3"
7954                         "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb"
7955                         "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3"
7956                         "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b"
7957                         "\xa8\xc5\xe2\xff\x1c\x39\x56\x73"
7958                         "\x90\xad\xca\xe7\x04\x21\x3e\x5b"
7959                         "\x78\x95\xb2\xcf\xec\x09\x26\x43"
7960                         "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b"
7961                         "\x48\x65\x82\x9f\xbc\xd9\xf6\x13"
7962                         "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb"
7963                         "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3"
7964                         "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9"
7965                         "\xf8\x17\x36\x55\x74\x93\xb2\xd1"
7966                         "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9"
7967                         "\xe8\x07\x26\x45\x64\x83\xa2\xc1"
7968                         "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9"
7969                         "\xd8\xf7\x16\x35\x54\x73\x92\xb1"
7970                         "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9"
7971                         "\xc8\xe7\x06\x25\x44\x63\x82\xa1"
7972                         "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99"
7973                         "\xb8\xd7\xf6\x15\x34\x53\x72\x91"
7974                         "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89"
7975                         "\xa8\xc7\xe6\x05\x24\x43\x62\x81"
7976                         "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79"
7977                         "\x98\xb7\xd6\xf5\x14\x33\x52\x71"
7978                         "\x90\xaf\xce\xed\x0c\x2b\x4a\x69"
7979                         "\x88\xa7\xc6\xe5\x04\x23\x42\x61"
7980                         "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59"
7981                         "\x78\x97\xb6\xd5\xf4\x13\x32\x51"
7982                         "\x70\x8f\xae\xcd\xec\x0b\x2a\x49"
7983                         "\x68\x87\xa6\xc5\xe4\x03\x22\x41"
7984                         "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39"
7985                         "\x58\x77\x96\xb5\xd4\xf3\x12\x31"
7986                         "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29"
7987                         "\x48\x67\x86\xa5\xc4\xe3\x02\x21"
7988                         "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19"
7989                         "\x38\x57\x76\x95\xb4\xd3\xf2\x11"
7990                         "\x30\x4f\x6e\x8d\xac\xcb\xea\x09"
7991                         "\x28\x47\x66\x85\xa4\xc3\xe2\x01"
7992                         "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9"
7993                         "\x18\x37\x56\x75\x94\xb3\xd2\xf1"
7994                         "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9"
7995                         "\x08\x27\x46\x65\x84\xa3\xc2\xe1"
7996                         "\x00\x21\x42\x63",
7997                 .ilen = 4100,
7998                 .result =
7999                         "\xb5\x81\xf5\x64\x18\x73\xe3\xf0"
8000                         "\x4c\x13\xf2\x77\x18\x60\x65\x5e"
8001                         "\x29\x01\xce\x98\x55\x53\xf9\x0c"
8002                         "\x2a\x08\xd5\x09\xb3\x57\x55\x56"
8003                         "\xc5\xe9\x56\x90\xcb\x6a\xa3\xc0"
8004                         "\xff\xc4\x79\xb4\xd2\x97\x5d\xc4"
8005                         "\x43\xd1\xfe\x94\x7b\x88\x06\x5a"
8006                         "\xb2\x9e\x2c\xfc\x44\x03\xb7\x90"
8007                         "\xa0\xc1\xba\x6a\x33\xb8\xc7\xb2"
8008                         "\x9d\xe1\x12\x4f\xc0\x64\xd4\x01"
8009                         "\xfe\x8c\x7a\x66\xf7\xe6\x5a\x91"
8010                         "\xbb\xde\x56\x86\xab\x65\x21\x30"
8011                         "\x00\x84\x65\x24\xa5\x7d\x85\xb4"
8012                         "\xe3\x17\xed\x3a\xb7\x6f\xb4\x0b"
8013                         "\x0b\xaf\x15\xae\x5a\x8f\xf2\x0c"
8014                         "\x2f\x27\xf4\x09\xd8\xd2\x96\xb7"
8015                         "\x71\xf2\xc5\x99\x4d\x7e\x7f\x75"
8016                         "\x77\x89\x30\x8b\x59\xdb\xa2\xb2"
8017                         "\xa0\xf3\x19\x39\x2b\xc5\x7e\x3f"
8018                         "\x4f\xd9\xd3\x56\x28\x97\x44\xdc"
8019                         "\xc0\x8b\x77\x24\xd9\x52\xe7\xc5"
8020                         "\xaf\xf6\x7d\x59\xb2\x44\x05\x1d"
8021                         "\xb1\xb0\x11\xa5\x0f\xec\x33\xe1"
8022                         "\x6d\x1b\x4e\x1f\xff\x57\x91\xb4"
8023                         "\x5b\x9a\x96\xc5\x53\xbc\xae\x20"
8024                         "\x3c\xbb\x14\xe2\xe8\x22\x33\xc1"
8025                         "\x5e\x76\x9e\x46\x99\xf6\x2a\x15"
8026                         "\xc6\x97\x02\xa0\x66\x43\xd1\xa6"
8027                         "\x31\xa6\x9f\xfb\xf4\xd3\x69\xe5"
8028                         "\xcd\x76\x95\xb8\x7a\x82\x7f\x21"
8029                         "\x45\xff\x3f\xce\x55\xf6\x95\x10"
8030                         "\x08\x77\x10\x43\xc6\xf3\x09\xe5"
8031                         "\x68\xe7\x3c\xad\x00\x52\x45\x0d"
8032                         "\xfe\x2d\xc6\xc2\x94\x8c\x12\x1d"
8033                         "\xe6\x25\xae\x98\x12\x8e\x19\x9c"
8034                         "\x81\x68\xb1\x11\xf6\x69\xda\xe3"
8035                         "\x62\x08\x18\x7a\x25\x49\x28\xac"
8036                         "\xba\x71\x12\x0b\xe4\xa2\xe5\xc7"
8037                         "\x5d\x8e\xec\x49\x40\x21\xbf\x5a"
8038                         "\x98\xf3\x02\x68\x55\x03\x7f\x8a"
8039                         "\xe5\x94\x0c\x32\x5c\x07\x82\x63"
8040                         "\xaf\x6f\x91\x40\x84\x8e\x52\x25"
8041                         "\xd0\xb0\x29\x53\x05\xe2\x50\x7a"
8042                         "\x34\xeb\xc9\x46\x20\xa8\x3d\xde"
8043                         "\x7f\x16\x5f\x36\xc5\x2e\xdc\xd1"
8044                         "\x15\x47\xc7\x50\x40\x6d\x91\xc5"
8045                         "\xe7\x93\x95\x1a\xd3\x57\xbc\x52"
8046                         "\x33\xee\x14\x19\x22\x52\x89\xa7"
8047                         "\x4a\x25\x56\x77\x4b\xca\xcf\x0a"
8048                         "\xe1\xf5\x35\x85\x30\x7e\x59\x4a"
8049                         "\xbd\x14\x5b\xdf\xe3\x46\xcb\xac"
8050                         "\x1f\x6c\x96\x0e\xf4\x81\xd1\x99"
8051                         "\xca\x88\x63\x3d\x02\x58\x6b\xa9"
8052                         "\xe5\x9f\xb3\x00\xb2\x54\xc6\x74"
8053                         "\x1c\xbf\x46\xab\x97\xcc\xf8\x54"
8054                         "\x04\x07\x08\x52\xe6\xc0\xda\x93"
8055                         "\x74\x7d\x93\x99\x5d\x78\x68\xa6"
8056                         "\x2e\x6b\xd3\x6a\x69\xcc\x12\x6b"
8057                         "\xd4\xc7\xa5\xc6\xe7\xf6\x03\x04"
8058                         "\x5d\xcd\x61\x5e\x17\x40\xdc\xd1"
8059                         "\x5c\xf5\x08\xdf\x5c\x90\x85\xa4"
8060                         "\xaf\xf6\x78\xbb\x0d\xf1\xf4\xa4"
8061                         "\x54\x26\x72\x9e\x61\xfa\x86\xcf"
8062                         "\xe8\x9e\xa1\xe0\xc7\x48\x23\xae"
8063                         "\x5a\x90\xae\x75\x0a\x74\x18\x89"
8064                         "\x05\xb1\x92\xb2\x7f\xd0\x1b\xa6"
8065                         "\x62\x07\x25\x01\xc7\xc2\x4f\xf9"
8066                         "\xe8\xfe\x63\x95\x80\x07\xb4\x26"
8067                         "\xcc\xd1\x26\xb6\xc4\x3f\x9e\xcb"
8068                         "\x8e\x3b\x2e\x44\x16\xd3\x10\x9a"
8069                         "\x95\x08\xeb\xc8\xcb\xeb\xbf\x6f"
8070                         "\x0b\xcd\x1f\xc8\xca\x86\xaa\xec"
8071                         "\x33\xe6\x69\xf4\x45\x25\x86\x3a"
8072                         "\x22\x94\x4f\x00\x23\x6a\x44\xc2"
8073                         "\x49\x97\x33\xab\x36\x14\x0a\x70"
8074                         "\x24\xc3\xbe\x04\x3b\x79\xa0\xf9"
8075                         "\xb8\xe7\x76\x29\x22\x83\xd7\xf2"
8076                         "\x94\xf4\x41\x49\xba\x5f\x7b\x07"
8077                         "\xb5\xfb\xdb\x03\x1a\x9f\xb6\x4c"
8078                         "\xc2\x2e\x37\x40\x49\xc3\x38\x16"
8079                         "\xe2\x4f\x77\x82\xb0\x68\x4c\x71"
8080                         "\x1d\x57\x61\x9c\xd9\x4e\x54\x99"
8081                         "\x47\x13\x28\x73\x3c\xbb\x00\x90"
8082                         "\xf3\x4d\xc9\x0e\xfd\xe7\xb1\x71"
8083                         "\xd3\x15\x79\xbf\xcc\x26\x2f\xbd"
8084                         "\xad\x6c\x50\x69\x6c\x3e\x6d\x80"
8085                         "\x9a\xea\x78\xaf\x19\xb2\x0d\x4d"
8086                         "\xad\x04\x07\xae\x22\x90\x4a\x93"
8087                         "\x32\x0e\x36\x9b\x1b\x46\xba\x3b"
8088                         "\xb4\xac\xc6\xd1\xa2\x31\x53\x3b"
8089                         "\x2a\x3d\x45\xfe\x03\x61\x10\x85"
8090                         "\x17\x69\xa6\x78\xcc\x6c\x87\x49"
8091                         "\x53\xf9\x80\x10\xde\x80\xa2\x41"
8092                         "\x6a\xc3\x32\x02\xad\x6d\x3c\x56"
8093                         "\x00\x71\x51\x06\xa7\xbd\xfb\xef"
8094                         "\x3c\xb5\x9f\xfc\x48\x7d\x53\x7c"
8095                         "\x66\xb0\x49\x23\xc4\x47\x10\x0e"
8096                         "\xe5\x6c\x74\x13\xe6\xc5\x3f\xaa"
8097                         "\xde\xff\x07\x44\xdd\x56\x1b\xad"
8098                         "\x09\x77\xfb\x5b\x12\xb8\x0d\x38"
8099                         "\x17\x37\x35\x7b\x9b\xbc\xfe\xd4"
8100                         "\x7e\x8b\xda\x7e\x5b\x04\xa7\x22"
8101                         "\xa7\x31\xa1\x20\x86\xc7\x1b\x99"
8102                         "\xdb\xd1\x89\xf4\x94\xa3\x53\x69"
8103                         "\x8d\xe7\xe8\x74\x11\x8d\x74\xd6"
8104                         "\x07\x37\x91\x9f\xfd\x67\x50\x3a"
8105                         "\xc9\xe1\xf4\x36\xd5\xa0\x47\xd1"
8106                         "\xf9\xe5\x39\xa3\x31\xac\x07\x36"
8107                         "\x23\xf8\x66\x18\x14\x28\x34\x0f"
8108                         "\xb8\xd0\xe7\x29\xb3\x04\x4b\x55"
8109                         "\x01\x41\xb2\x75\x8d\xcb\x96\x85"
8110                         "\x3a\xfb\xab\x2b\x9e\xfa\x58\x20"
8111                         "\x44\x1f\xc0\x14\x22\x75\x61\xe8"
8112                         "\xaa\x19\xcf\xf1\x82\x56\xf4\xd7"
8113                         "\x78\x7b\x3d\x5f\xb3\x9e\x0b\x8a"
8114                         "\x57\x50\xdb\x17\x41\x65\x4d\xa3"
8115                         "\x02\xc9\x9c\x9c\x53\xfb\x39\x39"
8116                         "\x9b\x1d\x72\x24\xda\xb7\x39\xbe"
8117                         "\x13\x3b\xfa\x29\xda\x9e\x54\x64"
8118                         "\x6e\xba\xd8\xa1\xcb\xb3\x36\xfa"
8119                         "\xcb\x47\x85\xe9\x61\x38\xbc\xbe"
8120                         "\xc5\x00\x38\x2a\x54\xf7\xc4\xb9"
8121                         "\xb3\xd3\x7b\xa0\xa0\xf8\x72\x7f"
8122                         "\x8c\x8e\x82\x0e\xc6\x1c\x75\x9d"
8123                         "\xca\x8e\x61\x87\xde\xad\x80\xd2"
8124                         "\xf5\xf9\x80\xef\x15\x75\xaf\xf5"
8125                         "\x80\xfb\xff\x6d\x1e\x25\xb7\x40"
8126                         "\x61\x6a\x39\x5a\x6a\xb5\x31\xab"
8127                         "\x97\x8a\x19\x89\x44\x40\xc0\xa6"
8128                         "\xb4\x4e\x30\x32\x7b\x13\xe7\x67"
8129                         "\xa9\x8b\x57\x04\xc2\x01\xa6\xf4"
8130                         "\x28\x99\xad\x2c\x76\xa3\x78\xc2"
8131                         "\x4a\xe6\xca\x5c\x50\x6a\xc1\xb0"
8132                         "\x62\x4b\x10\x8e\x7c\x17\x43\xb3"
8133                         "\x17\x66\x1c\x3e\x8d\x69\xf0\x5a"
8134                         "\x71\xf5\x97\xdc\xd1\x45\xdd\x28"
8135                         "\xf3\x5d\xdf\x53\x7b\x11\xe5\xbc"
8136                         "\x4c\xdb\x1b\x51\x6b\xe9\xfb\x3d"
8137                         "\xc1\xc3\x2c\xb9\x71\xf5\xb6\xb2"
8138                         "\x13\x36\x79\x80\x53\xe8\xd3\xa6"
8139                         "\x0a\xaf\xfd\x56\x97\xf7\x40\x8e"
8140                         "\x45\xce\xf8\xb0\x9e\x5c\x33\x82"
8141                         "\xb0\x44\x56\xfc\x05\x09\xe9\x2a"
8142                         "\xac\x26\x80\x14\x1d\xc8\x3a\x35"
8143                         "\x4c\x82\x97\xfd\x76\xb7\xa9\x0a"
8144                         "\x35\x58\x79\x8e\x0f\x66\xea\xaf"
8145                         "\x51\x6c\x09\xa9\x6e\x9b\xcb\x9a"
8146                         "\x31\x47\xa0\x2f\x7c\x71\xb4\x4a"
8147                         "\x11\xaa\x8c\x66\xc5\x64\xe6\x3a"
8148                         "\x54\xda\x24\x6a\xc4\x41\x65\x46"
8149                         "\x82\xa0\x0a\x0f\x5f\xfb\x25\xd0"
8150                         "\x2c\x91\xa7\xee\xc4\x81\x07\x86"
8151                         "\x75\x5e\x33\x69\x97\xe4\x2c\xa8"
8152                         "\x9d\x9f\x0b\x6a\xbe\xad\x98\xda"
8153                         "\x6d\x94\x41\xda\x2c\x1e\x89\xc4"
8154                         "\xc2\xaf\x1e\x00\x05\x0b\x83\x60"
8155                         "\xbd\x43\xea\x15\x23\x7f\xb9\xac"
8156                         "\xee\x4f\x2c\xaf\x2a\xf3\xdf\xd0"
8157                         "\xf3\x19\x31\xbb\x4a\x74\x84\x17"
8158                         "\x52\x32\x2c\x7d\x61\xe4\xcb\xeb"
8159                         "\x80\x38\x15\x52\xcb\x6f\xea\xe5"
8160                         "\x73\x9c\xd9\x24\x69\xc6\x95\x32"
8161                         "\x21\xc8\x11\xe4\xdc\x36\xd7\x93"
8162                         "\x38\x66\xfb\xb2\x7f\x3a\xb9\xaf"
8163                         "\x31\xdd\x93\x75\x78\x8a\x2c\x94"
8164                         "\x87\x1a\x58\xec\x9e\x7d\x4d\xba"
8165                         "\xe1\xe5\x4d\xfc\xbc\xa4\x2a\x14"
8166                         "\xef\xcc\xa7\xec\xab\x43\x09\x18"
8167                         "\xd3\xab\x68\xd1\x07\x99\x44\x47"
8168                         "\xd6\x83\x85\x3b\x30\xea\xa9\x6b"
8169                         "\x63\xea\xc4\x07\xfb\x43\x2f\xa4"
8170                         "\xaa\xb0\xab\x03\x89\xce\x3f\x8c"
8171                         "\x02\x7c\x86\x54\xbc\x88\xaf\x75"
8172                         "\xd2\xdc\x63\x17\xd3\x26\xf6\x96"
8173                         "\xa9\x3c\xf1\x61\x8c\x11\x18\xcc"
8174                         "\xd6\xea\x5b\xe2\xcd\xf0\xf1\xb2"
8175                         "\xe5\x35\x90\x1f\x85\x4c\x76\x5b"
8176                         "\x66\xce\x44\xa4\x32\x9f\xe6\x7b"
8177                         "\x71\x6e\x9f\x58\x15\x67\x72\x87"
8178                         "\x64\x8e\x3a\x44\x45\xd4\x76\xfa"
8179                         "\xc2\xf6\xef\x85\x05\x18\x7a\x9b"
8180                         "\xba\x41\x54\xac\xf0\xfc\x59\x12"
8181                         "\x3f\xdf\xa0\xe5\x8a\x65\xfd\x3a"
8182                         "\x62\x8d\x83\x2c\x03\xbe\x05\x76"
8183                         "\x2e\x53\x49\x97\x94\x33\xae\x40"
8184                         "\x81\x15\xdb\x6e\xad\xaa\xf5\x4b"
8185                         "\xe3\x98\x70\xdf\xe0\x7c\xcd\xdb"
8186                         "\x02\xd4\x7d\x2f\xc1\xe6\xb4\xf3"
8187                         "\xd7\x0d\x7a\xd9\x23\x9e\x87\x2d"
8188                         "\xce\x87\xad\xcc\x72\x05\x00\x29"
8189                         "\xdc\x73\x7f\x64\xc1\x15\x0e\xc2"
8190                         "\xdf\xa7\x5f\xeb\x41\xa1\xcd\xef"
8191                         "\x5c\x50\x79\x2a\x56\x56\x71\x8c"
8192                         "\xac\xc0\x79\x50\x69\xca\x59\x32"
8193                         "\x65\xf2\x54\xe4\x52\x38\x76\xd1"
8194                         "\x5e\xde\x26\x9e\xfb\x75\x2e\x11"
8195                         "\xb5\x10\xf4\x17\x73\xf5\x89\xc7"
8196                         "\x4f\x43\x5c\x8e\x7c\xb9\x05\x52"
8197                         "\x24\x40\x99\xfe\x9b\x85\x0b\x6c"
8198                         "\x22\x3e\x8b\xae\x86\xa1\xd2\x79"
8199                         "\x05\x68\x6b\xab\xe3\x41\x49\xed"
8200                         "\x15\xa1\x8d\x40\x2d\x61\xdf\x1a"
8201                         "\x59\xc9\x26\x8b\xef\x30\x4c\x88"
8202                         "\x4b\x10\xf8\x8d\xa6\x92\x9f\x4b"
8203                         "\xf3\xc4\x53\x0b\x89\x5d\x28\x92"
8204                         "\xcf\x78\xb2\xc0\x5d\xed\x7e\xfc"
8205                         "\xc0\x12\x23\x5f\x5a\x78\x86\x43"
8206                         "\x6e\x27\xf7\x5a\xa7\x6a\xed\x19"
8207                         "\x04\xf0\xb3\x12\xd1\xbd\x0e\x89"
8208                         "\x6e\xbc\x96\xa8\xd8\x49\x39\x9f"
8209                         "\x7e\x67\xf0\x2e\x3e\x01\xa9\xba"
8210                         "\xec\x8b\x62\x8e\xcb\x4a\x70\x43"
8211                         "\xc7\xc2\xc4\xca\x82\x03\x73\xe9"
8212                         "\x11\xdf\xcf\x54\xea\xc9\xb0\x95"
8213                         "\x51\xc0\x13\x3d\x92\x05\xfa\xf4"
8214                         "\xa9\x34\xc8\xce\x6c\x3d\x54\xcc"
8215                         "\xc4\xaf\xf1\xdc\x11\x44\x26\xa2"
8216                         "\xaf\xf1\x85\x75\x7d\x03\x61\x68"
8217                         "\x4e\x78\xc6\x92\x7d\x86\x7d\x77"
8218                         "\xdc\x71\x72\xdb\xc6\xae\xa1\xcb"
8219                         "\x70\x9a\x0b\x19\xbe\x4a\x6c\x2a"
8220                         "\xe2\xba\x6c\x64\x9a\x13\x28\xdf"
8221                         "\x85\x75\xe6\x43\xf6\x87\x08\x68"
8222                         "\x6e\xba\x6e\x79\x9f\x04\xbc\x23"
8223                         "\x50\xf6\x33\x5c\x1f\x24\x25\xbe"
8224                         "\x33\x47\x80\x45\x56\xa3\xa7\xd7"
8225                         "\x7a\xb1\x34\x0b\x90\x3c\x9c\xad"
8226                         "\x44\x5f\x9e\x0e\x9d\xd4\xbd\x93"
8227                         "\x5e\xfa\x3c\xe0\xb0\xd9\xed\xf3"
8228                         "\xd6\x2e\xff\x24\xd8\x71\x6c\xed"
8229                         "\xaf\x55\xeb\x22\xac\x93\x68\x32"
8230                         "\x05\x5b\x47\xdd\xc6\x4a\xcb\xc7"
8231                         "\x10\xe1\x3c\x92\x1a\xf3\x23\x78"
8232                         "\x2b\xa1\xd2\x80\xf4\x12\xb1\x20"
8233                         "\x8f\xff\x26\x35\xdd\xfb\xc7\x4e"
8234                         "\x78\xf1\x2d\x50\x12\x77\xa8\x60"
8235                         "\x7c\x0f\xf5\x16\x2f\x63\x70\x2a"
8236                         "\xc0\x96\x80\x4e\x0a\xb4\x93\x35"
8237                         "\x5d\x1d\x3f\x56\xf7\x2f\xbb\x90"
8238                         "\x11\x16\x8f\xa2\xec\x47\xbe\xac"
8239                         "\x56\x01\x26\x56\xb1\x8c\xb2\x10"
8240                         "\xf9\x1a\xca\xf5\xd1\xb7\x39\x20"
8241                         "\x63\xf1\x69\x20\x4f\x13\x12\x1f"
8242                         "\x5b\x65\xfc\x98\xf7\xc4\x7a\xbe"
8243                         "\xf7\x26\x4d\x2b\x84\x7b\x42\xad"
8244                         "\xd8\x7a\x0a\xb4\xd8\x74\xbf\xc1"
8245                         "\xf0\x6e\xb4\x29\xa3\xbb\xca\x46"
8246                         "\x67\x70\x6a\x2d\xce\x0e\xa2\x8a"
8247                         "\xa9\x87\xbf\x05\xc4\xc1\x04\xa3"
8248                         "\xab\xd4\x45\x43\x8c\xb6\x02\xb0"
8249                         "\x41\xc8\xfc\x44\x3d\x59\xaa\x2e"
8250                         "\x44\x21\x2a\x8d\x88\x9d\x57\xf4"
8251                         "\xa0\x02\x77\xb8\xa6\xa0\xe6\x75"
8252                         "\x5c\x82\x65\x3e\x03\x5c\x29\x8f"
8253                         "\x38\x55\xab\x33\x26\xef\x9f\x43"
8254                         "\x52\xfd\x68\xaf\x36\xb4\xbb\x9a"
8255                         "\x58\x09\x09\x1b\xc3\x65\x46\x46"
8256                         "\x1d\xa7\x94\x18\x23\x50\x2c\xca"
8257                         "\x2c\x55\x19\x97\x01\x9d\x93\x3b"
8258                         "\x63\x86\xf2\x03\x67\x45\xd2\x72"
8259                         "\x28\x52\x6c\xf4\xe3\x1c\xb5\x11"
8260                         "\x13\xf1\xeb\x21\xc7\xd9\x56\x82"
8261                         "\x2b\x82\x39\xbd\x69\x54\xed\x62"
8262                         "\xc3\xe2\xde\x73\xd4\x6a\x12\xae"
8263                         "\x13\x21\x7f\x4b\x5b\xfc\xbf\xe8"
8264                         "\x2b\xbe\x56\xba\x68\x8b\x9a\xb1"
8265                         "\x6e\xfa\xbf\x7e\x5a\x4b\xf1\xac"
8266                         "\x98\x65\x85\xd1\x93\x53\xd3\x7b"
8267                         "\x09\xdd\x4b\x10\x6d\x84\xb0\x13"
8268                         "\x65\xbd\xcf\x52\x09\xc4\x85\xe2"
8269                         "\x84\x74\x15\x65\xb7\xf7\x51\xaf"
8270                         "\x55\xad\xa4\xd1\x22\x54\x70\x94"
8271                         "\xa0\x1c\x90\x41\xfd\x99\xd7\x5a"
8272                         "\x31\xef\xaa\x25\xd0\x7f\x4f\xea"
8273                         "\x1d\x55\x42\xe5\x49\xb0\xd0\x46"
8274                         "\x62\x36\x43\xb2\x82\x15\x75\x50"
8275                         "\xa4\x72\xeb\x54\x27\x1f\x8a\xe4"
8276                         "\x7d\xe9\x66\xc5\xf1\x53\xa4\xd1"
8277                         "\x0c\xeb\xb8\xf8\xbc\xd4\xe2\xe7"
8278                         "\xe1\xf8\x4b\xcb\xa9\xa1\xaf\x15"
8279                         "\x83\xcb\x72\xd0\x33\x79\x00\x2d"
8280                         "\x9f\xd7\xf1\x2e\x1e\x10\xe4\x45"
8281                         "\xc0\x75\x3a\x39\xea\x68\xf7\x5d"
8282                         "\x1b\x73\x8f\xe9\x8e\x0f\x72\x47"
8283                         "\xae\x35\x0a\x31\x7a\x14\x4d\x4a"
8284                         "\x6f\x47\xf7\x7e\x91\x6e\x74\x8b"
8285                         "\x26\x47\xf9\xc3\xf9\xde\x70\xf5"
8286                         "\x61\xab\xa9\x27\x9f\x82\xe4\x9c"
8287                         "\x89\x91\x3f\x2e\x6a\xfd\xb5\x49"
8288                         "\xe9\xfd\x59\x14\x36\x49\x40\x6d"
8289                         "\x32\xd8\x85\x42\xf3\xa5\xdf\x0c"
8290                         "\xa8\x27\xd7\x54\xe2\x63\x2f\xf2"
8291                         "\x7e\x8b\x8b\xe7\xf1\x9a\x95\x35"
8292                         "\x43\xdc\x3a\xe4\xb6\xf4\xd0\xdf"
8293                         "\x9c\xcb\x94\xf3\x21\xa0\x77\x50"
8294                         "\xe2\xc6\xc4\xc6\x5f\x09\x64\x5b"
8295                         "\x92\x90\xd8\xe1\xd1\xed\x4b\x42"
8296                         "\xd7\x37\xaf\x65\x3d\x11\x39\xb6"
8297                         "\x24\x8a\x60\xae\xd6\x1e\xbf\x0e"
8298                         "\x0d\xd7\xdc\x96\x0e\x65\x75\x4e"
8299                         "\x29\x06\x9d\xa4\x51\x3a\x10\x63"
8300                         "\x8f\x17\x07\xd5\x8e\x3c\xf4\x28"
8301                         "\x00\x5a\x5b\x05\x19\xd8\xc0\x6c"
8302                         "\xe5\x15\xe4\x9c\x9d\x71\x9d\x5e"
8303                         "\x94\x29\x1a\xa7\x80\xfa\x0e\x33"
8304                         "\x03\xdd\xb7\x3e\x9a\xa9\x26\x18"
8305                         "\x37\xa9\x64\x08\x4d\x94\x5a\x88"
8306                         "\xca\x35\xce\x81\x02\xe3\x1f\x1b"
8307                         "\x89\x1a\x77\x85\xe3\x41\x6d\x32"
8308                         "\x42\x19\x23\x7d\xc8\x73\xee\x25"
8309                         "\x85\x0d\xf8\x31\x25\x79\x1b\x6f"
8310                         "\x79\x25\xd2\xd8\xd4\x23\xfd\xf7"
8311                         "\x82\x36\x6a\x0c\x46\x22\x15\xe9"
8312                         "\xff\x72\x41\x91\x91\x7d\x3a\xb7"
8313                         "\xdd\x65\x99\x70\xf6\x8d\x84\xf8"
8314                         "\x67\x15\x20\x11\xd6\xb2\x55\x7b"
8315                         "\xdb\x87\xee\xef\x55\x89\x2a\x59"
8316                         "\x2b\x07\x8f\x43\x8a\x59\x3c\x01"
8317                         "\x8b\x65\x54\xa1\x66\xd5\x38\xbd"
8318                         "\xc6\x30\xa9\xcc\x49\xb6\xa8\x1b"
8319                         "\xb8\xc0\x0e\xe3\x45\x28\xe2\xff"
8320                         "\x41\x9f\x7e\x7c\xd1\xae\x9e\x25"
8321                         "\x3f\x4c\x7c\x7c\xf4\xa8\x26\x4d"
8322                         "\x5c\xfd\x4b\x27\x18\xf9\x61\x76"
8323                         "\x48\xba\x0c\x6b\xa9\x4d\xfc\xf5"
8324                         "\x3b\x35\x7e\x2f\x4a\xa9\xc2\x9a"
8325                         "\xae\xab\x86\x09\x89\xc9\xc2\x40"
8326                         "\x39\x2c\x81\xb3\xb8\x17\x67\xc2"
8327                         "\x0d\x32\x4a\x3a\x67\x81\xd7\x1a"
8328                         "\x34\x52\xc5\xdb\x0a\xf5\x63\x39"
8329                         "\xea\x1f\xe1\x7c\xa1\x9e\xc1\x35"
8330                         "\xe3\xb1\x18\x45\x67\xf9\x22\x38"
8331                         "\x95\xd9\x34\x34\x86\xc6\x41\x94"
8332                         "\x15\xf9\x5b\x41\xa6\x87\x8b\xf8"
8333                         "\xd5\xe1\x1b\xe2\x5b\xf3\x86\x10"
8334                         "\xff\xe6\xae\x69\x76\xbc\x0d\xb4"
8335                         "\x09\x90\x0c\xa2\x65\x0c\xad\x74"
8336                         "\xf5\xd7\xff\xda\xc1\xce\x85\xbe"
8337                         "\x00\xa7\xff\x4d\x2f\x65\xd3\x8c"
8338                         "\x86\x2d\x05\xe8\xed\x3e\x6b\x8b"
8339                         "\x0f\x3d\x83\x8c\xf1\x1d\x5b\x96"
8340                         "\x2e\xb1\x9c\xc2\x98\xe1\x70\xb9"
8341                         "\xba\x5c\x8a\x43\xd6\x34\xa7\x2d"
8342                         "\xc9\x92\xae\xf2\xa5\x7b\x05\x49"
8343                         "\xa7\x33\x34\x86\xca\xe4\x96\x23"
8344                         "\x76\x5b\xf2\xc6\xf1\x51\x28\x42"
8345                         "\x7b\xcc\x76\x8f\xfa\xa2\xad\x31"
8346                         "\xd4\xd6\x7a\x6d\x25\x25\x54\xe4"
8347                         "\x3f\x50\x59\xe1\x5c\x05\xb7\x27"
8348                         "\x48\xbf\x07\xec\x1b\x13\xbe\x2b"
8349                         "\xa1\x57\x2b\xd5\xab\xd7\xd0\x4c"
8350                         "\x1e\xcb\x71\x9b\xc5\x90\x85\xd3"
8351                         "\xde\x59\xec\x71\xeb\x89\xbb\xd0"
8352                         "\x09\x50\xe1\x16\x3f\xfd\x1c\x34"
8353                         "\xc3\x1c\xa1\x10\x77\x53\x98\xef"
8354                         "\xf2\xfd\xa5\x01\x59\xc2\x9b\x26"
8355                         "\xc7\x42\xd9\x49\xda\x58\x2b\x6e"
8356                         "\x9f\x53\x19\x76\x7e\xd9\xc9\x0e"
8357                         "\x68\xc8\x7f\x51\x22\x42\xef\x49"
8358                         "\xa4\x55\xb6\x36\xac\x09\xc7\x31"
8359                         "\x88\x15\x4b\x2e\x8f\x3a\x08\xf7"
8360                         "\xd8\xf7\xa8\xc5\xa9\x33\xa6\x45"
8361                         "\xe4\xc4\x94\x76\xf3\x0d\x8f\x7e"
8362                         "\xc8\xf6\xbc\x23\x0a\xb6\x4c\xd3"
8363                         "\x6a\xcd\x36\xc2\x90\x5c\x5c\x3c"
8364                         "\x65\x7b\xc2\xd6\xcc\xe6\x0d\x87"
8365                         "\x73\x2e\x71\x79\x16\x06\x63\x28"
8366                         "\x09\x15\xd8\x89\x38\x38\x3d\xb5"
8367                         "\x42\x1c\x08\x24\xf7\x2a\xd2\x9d"
8368                         "\xc8\xca\xef\xf9\x27\xd8\x07\x86"
8369                         "\xf7\x43\x0b\x55\x15\x3f\x9f\x83"
8370                         "\xef\xdc\x49\x9d\x2a\xc1\x54\x62"
8371                         "\xbd\x9b\x66\x55\x9f\xb7\x12\xf3"
8372                         "\x1b\x4d\x9d\x2a\x5c\xed\x87\x75"
8373                         "\x87\x26\xec\x61\x2c\xb4\x0f\x89"
8374                         "\xb0\xfb\x2e\x68\x5d\x15\xc7\x8d"
8375                         "\x2e\xc0\xd9\xec\xaf\x4f\xd2\x25"
8376                         "\x29\xe8\xd2\x26\x2b\x67\xe9\xfc"
8377                         "\x2b\xa8\x67\x96\x12\x1f\x5b\x96"
8378                         "\xc6\x14\x53\xaf\x44\xea\xd6\xe2"
8379                         "\x94\x98\xe4\x12\x93\x4c\x92\xe0"
8380                         "\x18\xa5\x8d\x2d\xe4\x71\x3c\x47"
8381                         "\x4c\xf7\xe6\x47\x9e\xc0\x68\xdf"
8382                         "\xd4\xf5\x5a\x74\xb1\x2b\x29\x03"
8383                         "\x19\x07\xaf\x90\x62\x5c\x68\x98"
8384                         "\x48\x16\x11\x02\x9d\xee\xb4\x9b"
8385                         "\xe5\x42\x7f\x08\xfd\x16\x32\x0b"
8386                         "\xd0\xb3\xfa\x2b\xb7\x99\xf9\x29"
8387                         "\xcd\x20\x45\x9f\xb3\x1a\x5d\xa2"
8388                         "\xaf\x4d\xe0\xbd\x42\x0d\xbc\x74"
8389                         "\x99\x9c\x8e\x53\x1a\xb4\x3e\xbd"
8390                         "\xa2\x9a\x2d\xf7\xf8\x39\x0f\x67"
8391                         "\x63\xfc\x6b\xc0\xaf\xb3\x4b\x4f"
8392                         "\x55\xc4\xcf\xa7\xc8\x04\x11\x3e"
8393                         "\x14\x32\xbb\x1b\x38\x77\xd6\x7f"
8394                         "\x54\x4c\xdf\x75\xf3\x07\x2d\x33"
8395                         "\x9b\xa8\x20\xe1\x7b\x12\xb5\xf3"
8396                         "\xef\x2f\xce\x72\xe5\x24\x60\xc1"
8397                         "\x30\xe2\xab\xa1\x8e\x11\x09\xa8"
8398                         "\x21\x33\x44\xfe\x7f\x35\x32\x93"
8399                         "\x39\xa7\xad\x8b\x79\x06\xb2\xcb"
8400                         "\x4e\xa9\x5f\xc7\xba\x74\x29\xec"
8401                         "\x93\xa0\x4e\x54\x93\xc0\xbc\x55"
8402                         "\x64\xf0\x48\xe5\x57\x99\xee\x75"
8403                         "\xd6\x79\x0f\x66\xb7\xc6\x57\x76"
8404                         "\xf7\xb7\xf3\x9c\xc5\x60\xe8\x7f"
8405                         "\x83\x76\xd6\x0e\xaa\xe6\x90\x39"
8406                         "\x1d\xa6\x32\x6a\x34\xe3\x55\xf8"
8407                         "\x58\xa0\x58\x7d\x33\xe0\x22\x39"
8408                         "\x44\x64\x87\x86\x5a\x2f\xa7\x7e"
8409                         "\x0f\x38\xea\xb0\x30\xcc\x61\xa5"
8410                         "\x6a\x32\xae\x1e\xf7\xe9\xd0\xa9"
8411                         "\x0c\x32\x4b\xb5\x49\x28\xab\x85"
8412                         "\x2f\x8e\x01\x36\x38\x52\xd0\xba"
8413                         "\xd6\x02\x78\xf8\x0e\x3e\x9c\x8b"
8414                         "\x6b\x45\x99\x3f\x5c\xfe\x58\xf1"
8415                         "\x5c\x94\x04\xe1\xf5\x18\x6d\x51"
8416                         "\xb2\x5d\x18\x20\xb6\xc2\x9a\x42"
8417                         "\x1d\xb3\xab\x3c\xb6\x3a\x13\x03"
8418                         "\xb2\x46\x82\x4f\xfc\x64\xbc\x4f"
8419                         "\xca\xfa\x9c\xc0\xd5\xa7\xbd\x11"
8420                         "\xb7\xe4\x5a\xf6\x6f\x4d\x4d\x54"
8421                         "\xea\xa4\x98\x66\xd4\x22\x3b\xd3"
8422                         "\x8f\x34\x47\xd9\x7c\xf4\x72\x3b"
8423                         "\x4d\x02\x77\xf6\xd6\xdd\x08\x0a"
8424                         "\x81\xe1\x86\x89\x3e\x56\x10\x3c"
8425                         "\xba\xd7\x81\x8c\x08\xbc\x8b\xe2"
8426                         "\x53\xec\xa7\x89\xee\xc8\x56\xb5"
8427                         "\x36\x2c\xb2\x03\xba\x99\xdd\x7c"
8428                         "\x48\xa0\xb0\xbc\x91\x33\xe9\xa8"
8429                         "\xcb\xcd\xcf\x59\x5f\x1f\x15\xe2"
8430                         "\x56\xf5\x4e\x01\x35\x27\x45\x77"
8431                         "\x47\xc8\xbc\xcb\x7e\x39\xc1\x97"
8432                         "\x28\xd3\x84\xfc\x2c\x3e\xc8\xad"
8433                         "\x9c\xf8\x8a\x61\x9c\x28\xaa\xc5"
8434                         "\x99\x20\x43\x85\x9d\xa5\xe2\x8b"
8435                         "\xb8\xae\xeb\xd0\x32\x0d\x52\x78"
8436                         "\x09\x56\x3f\xc7\xd8\x7e\x26\xfc"
8437                         "\x37\xfb\x6f\x04\xfc\xfa\x92\x10"
8438                         "\xac\xf8\x3e\x21\xdc\x8c\x21\x16"
8439                         "\x7d\x67\x6e\xf6\xcd\xda\xb6\x98"
8440                         "\x23\xab\x23\x3c\xb2\x10\xa0\x53"
8441                         "\x5a\x56\x9f\xc5\xd0\xff\xbb\xe4"
8442                         "\x98\x3c\x69\x1e\xdb\x38\x8f\x7e"
8443                         "\x0f\xd2\x98\x88\x81\x8b\x45\x67"
8444                         "\xea\x33\xf1\xeb\xe9\x97\x55\x2e"
8445                         "\xd9\xaa\xeb\x5a\xec\xda\xe1\x68"
8446                         "\xa8\x9d\x3c\x84\x7c\x05\x3d\x62"
8447                         "\x87\x8f\x03\x21\x28\x95\x0c\x89"
8448                         "\x25\x22\x4a\xb0\x93\xa9\x50\xa2"
8449                         "\x2f\x57\x6e\x18\x42\x19\x54\x0c"
8450                         "\x55\x67\xc6\x11\x49\xf4\x5c\xd2"
8451                         "\xe9\x3d\xdd\x8b\x48\x71\x21\x00"
8452                         "\xc3\x9a\x6c\x85\x74\x28\x83\x4a"
8453                         "\x1b\x31\x05\xe1\x06\x92\xe7\xda"
8454                         "\x85\x73\x78\x45\x20\x7f\xae\x13"
8455                         "\x7c\x33\x06\x22\xf4\x83\xf9\x35"
8456                         "\x3f\x6c\x71\xa8\x4e\x48\xbe\x9b"
8457                         "\xce\x8a\xba\xda\xbe\x28\x08\xf7"
8458                         "\xe2\x14\x8c\x71\xea\x72\xf9\x33"
8459                         "\xf2\x88\x3f\xd7\xbb\x69\x6c\x29"
8460                         "\x19\xdc\x84\xce\x1f\x12\x4f\xc8"
8461                         "\xaf\xa5\x04\xba\x5a\xab\xb0\xd9"
8462                         "\x14\x1f\x6c\x68\x98\x39\x89\x7a"
8463                         "\xd9\xd8\x2f\xdf\xa8\x47\x4a\x25"
8464                         "\xe2\xfb\x33\xf4\x59\x78\xe1\x68"
8465                         "\x85\xcf\xfe\x59\x20\xd4\x05\x1d"
8466                         "\x80\x99\xae\xbc\xca\xae\x0f\x2f"
8467                         "\x65\x43\x34\x8e\x7e\xac\xd3\x93"
8468                         "\x2f\xac\x6d\x14\x3d\x02\x07\x70"
8469                         "\x9d\xa4\xf3\x1b\x5c\x36\xfc\x01"
8470                         "\x73\x34\x85\x0c\x6c\xd6\xf1\xbd"
8471                         "\x3f\xdf\xee\xf5\xd9\xba\x56\xef"
8472                         "\xf4\x9b\x6b\xee\x9f\x5a\x78\x6d"
8473                         "\x32\x19\xf4\xf7\xf8\x4c\x69\x0b"
8474                         "\x4b\xbc\xbb\xb7\xf2\x85\xaf\x70"
8475                         "\x75\x24\x6c\x54\xa7\x0e\x4d\x1d"
8476                         "\x01\xbf\x08\xac\xcf\x7f\x2c\xe3"
8477                         "\x14\x89\x5e\x70\x5a\x99\x92\xcd"
8478                         "\x01\x84\xc8\xd2\xab\xe5\x4f\x58"
8479                         "\xe7\x0f\x2f\x0e\xff\x68\xea\xfd"
8480                         "\x15\xb3\x17\xe6\xb0\xe7\x85\xd8"
8481                         "\x23\x2e\x05\xc7\xc9\xc4\x46\x1f"
8482                         "\xe1\x9e\x49\x20\x23\x24\x4d\x7e"
8483                         "\x29\x65\xff\xf4\xb6\xfd\x1a\x85"
8484                         "\xc4\x16\xec\xfc\xea\x7b\xd6\x2c"
8485                         "\x43\xf8\xb7\xbf\x79\xc0\x85\xcd"
8486                         "\xef\xe1\x98\xd3\xa5\xf7\x90\x8c"
8487                         "\xe9\x7f\x80\x6b\xd2\xac\x4c\x30"
8488                         "\xa7\xc6\x61\x6c\xd2\xf9\x2c\xff"
8489                         "\x30\xbc\x22\x81\x7d\x93\x12\xe4"
8490                         "\x0a\xcd\xaf\xdd\xe8\xab\x0a\x1e"
8491                         "\x13\xa4\x27\xc3\x5f\xf7\x4b\xbb"
8492                         "\x37\x09\x4b\x91\x6f\x92\x4f\xaf"
8493                         "\x52\xee\xdf\xef\x09\x6f\xf7\x5c"
8494                         "\x6e\x12\x17\x72\x63\x57\xc7\xba"
8495                         "\x3b\x6b\x38\x32\x73\x1b\x9c\x80"
8496                         "\xc1\x7a\xc6\xcf\xcd\x35\xc0\x6b"
8497                         "\x31\x1a\x6b\xe9\xd8\x2c\x29\x3f"
8498                         "\x96\xfb\xb6\xcd\x13\x91\x3b\xc2"
8499                         "\xd2\xa3\x31\x8d\xa4\xcd\x57\xcd"
8500                         "\x13\x3d\x64\xfd\x06\xce\xe6\xdc"
8501                         "\x0c\x24\x43\x31\x40\x57\xf1\x72"
8502                         "\x17\xe3\x3a\x63\x6d\x35\xcf\x5d"
8503                         "\x97\x40\x59\xdd\xf7\x3c\x02\xf7"
8504                         "\x1c\x7e\x05\xbb\xa9\x0d\x01\xb1"
8505                         "\x8e\xc0\x30\xa9\x53\x24\xc9\x89"
8506                         "\x84\x6d\xaa\xd0\xcd\x91\xc2\x4d"
8507                         "\x91\xb0\x89\xe2\xbf\x83\x44\xaa"
8508                         "\x28\x72\x23\xa0\xc2\xad\xad\x1c"
8509                         "\xfc\x3f\x09\x7a\x0b\xdc\xc5\x1b"
8510                         "\x87\x13\xc6\x5b\x59\x8d\xf2\xc8"
8511                         "\xaf\xdf\x11\x95",
8512                 .rlen   = 4100,
8513                 .np     = 2,
8514                 .tap    = { 4064, 36 },
8515         },
8516 };
8517
8518 /*
8519  * CTS (Cipher Text Stealing) mode tests
8520  */
8521 #define CTS_MODE_ENC_TEST_VECTORS 6
8522 #define CTS_MODE_DEC_TEST_VECTORS 6
8523 static struct cipher_testvec cts_mode_enc_tv_template[] = {
8524         { /* from rfc3962 */
8525                 .klen   = 16,
8526                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8527                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8528                 .ilen   = 17,
8529                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8530                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8531                           "\x20",
8532                 .rlen   = 17,
8533                 .result = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4"
8534                           "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f"
8535                           "\x97",
8536         }, {
8537                 .klen   = 16,
8538                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8539                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8540                 .ilen   = 31,
8541                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8542                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8543                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8544                           "\x20\x47\x61\x75\x27\x73\x20",
8545                 .rlen   = 31,
8546                 .result = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1"
8547                           "\xd4\x45\xd4\xc8\xef\xf7\xed\x22"
8548                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8549                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5",
8550         }, {
8551                 .klen   = 16,
8552                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8553                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8554                 .ilen   = 32,
8555                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8556                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8557                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8558                           "\x20\x47\x61\x75\x27\x73\x20\x43",
8559                 .rlen   = 32,
8560                 .result = "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8561                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8562                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8563                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84",
8564         }, {
8565                 .klen   = 16,
8566                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8567                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8568                 .ilen   = 47,
8569                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8570                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8571                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8572                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8573                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8574                           "\x70\x6c\x65\x61\x73\x65\x2c",
8575                 .rlen   = 47,
8576                 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8577                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8578                           "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c"
8579                           "\x1b\x55\x49\xd2\xf8\x38\x02\x9e"
8580                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8581                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5",
8582         }, {
8583                 .klen   = 16,
8584                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8585                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8586                 .ilen   = 48,
8587                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8588                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8589                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8590                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8591                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8592                           "\x70\x6c\x65\x61\x73\x65\x2c\x20",
8593                 .rlen   = 48,
8594                 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8595                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8596                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8597                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8"
8598                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8599                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8",
8600         }, {
8601                 .klen   = 16,
8602                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8603                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8604                 .ilen   = 64,
8605                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8606                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8607                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8608                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8609                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8610                           "\x70\x6c\x65\x61\x73\x65\x2c\x20"
8611                           "\x61\x6e\x64\x20\x77\x6f\x6e\x74"
8612                           "\x6f\x6e\x20\x73\x6f\x75\x70\x2e",
8613                 .rlen   = 64,
8614                 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8615                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8616                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8617                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8618                           "\x48\x07\xef\xe8\x36\xee\x89\xa5"
8619                           "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40"
8620                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8621                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8",
8622         }
8623 };
8624
8625 static struct cipher_testvec cts_mode_dec_tv_template[] = {
8626         { /* from rfc3962 */
8627                 .klen   = 16,
8628                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8629                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8630                 .rlen   = 17,
8631                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8632                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8633                           "\x20",
8634                 .ilen   = 17,
8635                 .input  = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4"
8636                           "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f"
8637                           "\x97",
8638         }, {
8639                 .klen   = 16,
8640                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8641                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8642                 .rlen   = 31,
8643                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8644                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8645                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8646                           "\x20\x47\x61\x75\x27\x73\x20",
8647                 .ilen   = 31,
8648                 .input  = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1"
8649                           "\xd4\x45\xd4\xc8\xef\xf7\xed\x22"
8650                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8651                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5",
8652         }, {
8653                 .klen   = 16,
8654                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8655                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8656                 .rlen   = 32,
8657                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8658                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8659                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8660                           "\x20\x47\x61\x75\x27\x73\x20\x43",
8661                 .ilen   = 32,
8662                 .input  = "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8663                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8664                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8665                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84",
8666         }, {
8667                 .klen   = 16,
8668                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8669                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8670                 .rlen   = 47,
8671                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8672                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8673                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8674                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8675                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8676                           "\x70\x6c\x65\x61\x73\x65\x2c",
8677                 .ilen   = 47,
8678                 .input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8679                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8680                           "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c"
8681                           "\x1b\x55\x49\xd2\xf8\x38\x02\x9e"
8682                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8683                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5",
8684         }, {
8685                 .klen   = 16,
8686                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8687                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8688                 .rlen   = 48,
8689                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8690                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8691                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8692                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8693                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8694                           "\x70\x6c\x65\x61\x73\x65\x2c\x20",
8695                 .ilen   = 48,
8696                 .input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8697                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8698                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8699                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8"
8700                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8701                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8",
8702         }, {
8703                 .klen   = 16,
8704                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8705                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8706                 .rlen   = 64,
8707                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8708                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8709                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8710                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8711                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8712                           "\x70\x6c\x65\x61\x73\x65\x2c\x20"
8713                           "\x61\x6e\x64\x20\x77\x6f\x6e\x74"
8714                           "\x6f\x6e\x20\x73\x6f\x75\x70\x2e",
8715                 .ilen   = 64,
8716                 .input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8717                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8718                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8719                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8720                           "\x48\x07\xef\xe8\x36\xee\x89\xa5"
8721                           "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40"
8722                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8723                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8",
8724         }
8725 };
8726
8727 /*
8728  * Compression stuff.
8729  */
8730 #define COMP_BUF_SIZE           512
8731
8732 struct comp_testvec {
8733         int inlen, outlen;
8734         char input[COMP_BUF_SIZE];
8735         char output[COMP_BUF_SIZE];
8736 };
8737
8738 struct pcomp_testvec {
8739         void *params;
8740         unsigned int paramsize;
8741         int inlen, outlen;
8742         char input[COMP_BUF_SIZE];
8743         char output[COMP_BUF_SIZE];
8744 };
8745
8746 /*
8747  * Deflate test vectors (null-terminated strings).
8748  * Params: winbits=-11, Z_DEFAULT_COMPRESSION, MAX_MEM_LEVEL.
8749  */
8750
8751 #define DEFLATE_COMP_TEST_VECTORS 2
8752 #define DEFLATE_DECOMP_TEST_VECTORS 2
8753
8754 static struct comp_testvec deflate_comp_tv_template[] = {
8755         {
8756                 .inlen  = 70,
8757                 .outlen = 38,
8758                 .input  = "Join us now and share the software "
8759                         "Join us now and share the software ",
8760                 .output = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8761                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8762                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8763                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8764                           "\x71\xbc\x08\x2b\x01\x00",
8765         }, {
8766                 .inlen  = 191,
8767                 .outlen = 122,
8768                 .input  = "This document describes a compression method based on the DEFLATE"
8769                         "compression algorithm.  This document defines the application of "
8770                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8771                 .output = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8772                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8773                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8774                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8775                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
8776                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8777                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8778                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8779                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8780                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8781                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8782                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8783                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8784                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8785                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8786                           "\xfa\x02",
8787         },
8788 };
8789
8790 static struct comp_testvec deflate_decomp_tv_template[] = {
8791         {
8792                 .inlen  = 122,
8793                 .outlen = 191,
8794                 .input  = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8795                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8796                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8797                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8798                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
8799                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8800                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8801                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8802                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8803                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8804                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8805                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8806                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8807                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8808                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8809                           "\xfa\x02",
8810                 .output = "This document describes a compression method based on the DEFLATE"
8811                         "compression algorithm.  This document defines the application of "
8812                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8813         }, {
8814                 .inlen  = 38,
8815                 .outlen = 70,
8816                 .input  = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8817                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8818                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8819                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8820                           "\x71\xbc\x08\x2b\x01\x00",
8821                 .output = "Join us now and share the software "
8822                         "Join us now and share the software ",
8823         },
8824 };
8825
8826 #define ZLIB_COMP_TEST_VECTORS 2
8827 #define ZLIB_DECOMP_TEST_VECTORS 2
8828
8829 static const struct {
8830         struct nlattr nla;
8831         int val;
8832 } deflate_comp_params[] = {
8833         {
8834                 .nla = {
8835                         .nla_len        = NLA_HDRLEN + sizeof(int),
8836                         .nla_type       = ZLIB_COMP_LEVEL,
8837                 },
8838                 .val                    = Z_DEFAULT_COMPRESSION,
8839         }, {
8840                 .nla = {
8841                         .nla_len        = NLA_HDRLEN + sizeof(int),
8842                         .nla_type       = ZLIB_COMP_METHOD,
8843                 },
8844                 .val                    = Z_DEFLATED,
8845         }, {
8846                 .nla = {
8847                         .nla_len        = NLA_HDRLEN + sizeof(int),
8848                         .nla_type       = ZLIB_COMP_WINDOWBITS,
8849                 },
8850                 .val                    = -11,
8851         }, {
8852                 .nla = {
8853                         .nla_len        = NLA_HDRLEN + sizeof(int),
8854                         .nla_type       = ZLIB_COMP_MEMLEVEL,
8855                 },
8856                 .val                    = MAX_MEM_LEVEL,
8857         }, {
8858                 .nla = {
8859                         .nla_len        = NLA_HDRLEN + sizeof(int),
8860                         .nla_type       = ZLIB_COMP_STRATEGY,
8861                 },
8862                 .val                    = Z_DEFAULT_STRATEGY,
8863         }
8864 };
8865
8866 static const struct {
8867         struct nlattr nla;
8868         int val;
8869 } deflate_decomp_params[] = {
8870         {
8871                 .nla = {
8872                         .nla_len        = NLA_HDRLEN + sizeof(int),
8873                         .nla_type       = ZLIB_DECOMP_WINDOWBITS,
8874                 },
8875                 .val                    = -11,
8876         }
8877 };
8878
8879 static struct pcomp_testvec zlib_comp_tv_template[] = {
8880         {
8881                 .params = &deflate_comp_params,
8882                 .paramsize = sizeof(deflate_comp_params),
8883                 .inlen  = 70,
8884                 .outlen = 38,
8885                 .input  = "Join us now and share the software "
8886                         "Join us now and share the software ",
8887                 .output = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8888                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8889                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8890                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8891                           "\x71\xbc\x08\x2b\x01\x00",
8892         }, {
8893                 .params = &deflate_comp_params,
8894                 .paramsize = sizeof(deflate_comp_params),
8895                 .inlen  = 191,
8896                 .outlen = 122,
8897                 .input  = "This document describes a compression method based on the DEFLATE"
8898                         "compression algorithm.  This document defines the application of "
8899                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8900                 .output = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8901                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8902                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8903                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8904                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
8905                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8906                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8907                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8908                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8909                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8910                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8911                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8912                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8913                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8914                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8915                           "\xfa\x02",
8916         },
8917 };
8918
8919 static struct pcomp_testvec zlib_decomp_tv_template[] = {
8920         {
8921                 .params = &deflate_decomp_params,
8922                 .paramsize = sizeof(deflate_decomp_params),
8923                 .inlen  = 122,
8924                 .outlen = 191,
8925                 .input  = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8926                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8927                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8928                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8929                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
8930                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8931                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8932                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8933                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8934                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8935                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8936                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8937                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8938                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8939                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8940                           "\xfa\x02",
8941                 .output = "This document describes a compression method based on the DEFLATE"
8942                         "compression algorithm.  This document defines the application of "
8943                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8944         }, {
8945                 .params = &deflate_decomp_params,
8946                 .paramsize = sizeof(deflate_decomp_params),
8947                 .inlen  = 38,
8948                 .outlen = 70,
8949                 .input  = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8950                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8951                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8952                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8953                           "\x71\xbc\x08\x2b\x01\x00",
8954                 .output = "Join us now and share the software "
8955                         "Join us now and share the software ",
8956         },
8957 };
8958
8959 /*
8960  * LZO test vectors (null-terminated strings).
8961  */
8962 #define LZO_COMP_TEST_VECTORS 2
8963 #define LZO_DECOMP_TEST_VECTORS 2
8964
8965 static struct comp_testvec lzo_comp_tv_template[] = {
8966         {
8967                 .inlen  = 70,
8968                 .outlen = 46,
8969                 .input  = "Join us now and share the software "
8970                         "Join us now and share the software ",
8971                 .output = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75"
8972                         "\x73\x20\x6e\x6f\x77\x20\x61\x6e"
8973                         "\x64\x20\x73\x68\x61\x72\x65\x20"
8974                         "\x74\x68\x65\x20\x73\x6f\x66\x74"
8975                         "\x77\x70\x01\x01\x4a\x6f\x69\x6e"
8976                         "\x3d\x88\x00\x11\x00\x00",
8977         }, {
8978                 .inlen  = 159,
8979                 .outlen = 133,
8980                 .input  = "This document describes a compression method based on the LZO "
8981                         "compression algorithm.  This document defines the application of "
8982                         "the LZO algorithm used in UBIFS.",
8983                 .output = "\x00\x2b\x54\x68\x69\x73\x20\x64"
8984                           "\x6f\x63\x75\x6d\x65\x6e\x74\x20"
8985                           "\x64\x65\x73\x63\x72\x69\x62\x65"
8986                           "\x73\x20\x61\x20\x63\x6f\x6d\x70"
8987                           "\x72\x65\x73\x73\x69\x6f\x6e\x20"
8988                           "\x6d\x65\x74\x68\x6f\x64\x20\x62"
8989                           "\x61\x73\x65\x64\x20\x6f\x6e\x20"
8990                           "\x74\x68\x65\x20\x4c\x5a\x4f\x2b"
8991                           "\x8c\x00\x0d\x61\x6c\x67\x6f\x72"
8992                           "\x69\x74\x68\x6d\x2e\x20\x20\x54"
8993                           "\x68\x69\x73\x2a\x54\x01\x02\x66"
8994                           "\x69\x6e\x65\x73\x94\x06\x05\x61"
8995                           "\x70\x70\x6c\x69\x63\x61\x74\x76"
8996                           "\x0a\x6f\x66\x88\x02\x60\x09\x27"
8997                           "\xf0\x00\x0c\x20\x75\x73\x65\x64"
8998                           "\x20\x69\x6e\x20\x55\x42\x49\x46"
8999                           "\x53\x2e\x11\x00\x00",
9000         },
9001 };
9002
9003 static struct comp_testvec lzo_decomp_tv_template[] = {
9004         {
9005                 .inlen  = 133,
9006                 .outlen = 159,
9007                 .input  = "\x00\x2b\x54\x68\x69\x73\x20\x64"
9008                           "\x6f\x63\x75\x6d\x65\x6e\x74\x20"
9009                           "\x64\x65\x73\x63\x72\x69\x62\x65"
9010                           "\x73\x20\x61\x20\x63\x6f\x6d\x70"
9011                           "\x72\x65\x73\x73\x69\x6f\x6e\x20"
9012                           "\x6d\x65\x74\x68\x6f\x64\x20\x62"
9013                           "\x61\x73\x65\x64\x20\x6f\x6e\x20"
9014                           "\x74\x68\x65\x20\x4c\x5a\x4f\x2b"
9015                           "\x8c\x00\x0d\x61\x6c\x67\x6f\x72"
9016                           "\x69\x74\x68\x6d\x2e\x20\x20\x54"
9017                           "\x68\x69\x73\x2a\x54\x01\x02\x66"
9018                           "\x69\x6e\x65\x73\x94\x06\x05\x61"
9019                           "\x70\x70\x6c\x69\x63\x61\x74\x76"
9020                           "\x0a\x6f\x66\x88\x02\x60\x09\x27"
9021                           "\xf0\x00\x0c\x20\x75\x73\x65\x64"
9022                           "\x20\x69\x6e\x20\x55\x42\x49\x46"
9023                           "\x53\x2e\x11\x00\x00",
9024                 .output = "This document describes a compression method based on the LZO "
9025                         "compression algorithm.  This document defines the application of "
9026                         "the LZO algorithm used in UBIFS.",
9027         }, {
9028                 .inlen  = 46,
9029                 .outlen = 70,
9030                 .input  = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75"
9031                           "\x73\x20\x6e\x6f\x77\x20\x61\x6e"
9032                           "\x64\x20\x73\x68\x61\x72\x65\x20"
9033                           "\x74\x68\x65\x20\x73\x6f\x66\x74"
9034                           "\x77\x70\x01\x01\x4a\x6f\x69\x6e"
9035                           "\x3d\x88\x00\x11\x00\x00",
9036                 .output = "Join us now and share the software "
9037                         "Join us now and share the software ",
9038         },
9039 };
9040
9041 /*
9042  * Michael MIC test vectors from IEEE 802.11i
9043  */
9044 #define MICHAEL_MIC_TEST_VECTORS 6
9045
9046 static struct hash_testvec michael_mic_tv_template[] = {
9047         {
9048                 .key = "\x00\x00\x00\x00\x00\x00\x00\x00",
9049                 .ksize = 8,
9050                 .plaintext = zeroed_string,
9051                 .psize = 0,
9052                 .digest = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8",
9053         },
9054         {
9055                 .key = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8",
9056                 .ksize = 8,
9057                 .plaintext = "M",
9058                 .psize = 1,
9059                 .digest = "\x43\x47\x21\xca\x40\x63\x9b\x3f",
9060         },
9061         {
9062                 .key = "\x43\x47\x21\xca\x40\x63\x9b\x3f",
9063                 .ksize = 8,
9064                 .plaintext = "Mi",
9065                 .psize = 2,
9066                 .digest = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29",
9067         },
9068         {
9069                 .key = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29",
9070                 .ksize = 8,
9071                 .plaintext = "Mic",
9072                 .psize = 3,
9073                 .digest = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb",
9074         },
9075         {
9076                 .key = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb",
9077                 .ksize = 8,
9078                 .plaintext = "Mich",
9079                 .psize = 4,
9080                 .digest = "\xd5\x5e\x10\x05\x10\x12\x89\x86",
9081         },
9082         {
9083                 .key = "\xd5\x5e\x10\x05\x10\x12\x89\x86",
9084                 .ksize = 8,
9085                 .plaintext = "Michael",
9086                 .psize = 7,
9087                 .digest = "\x0a\x94\x2b\x12\x4e\xca\xa5\x46",
9088         }
9089 };
9090
9091 /*
9092  * CRC32C test vectors
9093  */
9094 #define CRC32C_TEST_VECTORS 14
9095
9096 static struct hash_testvec crc32c_tv_template[] = {
9097         {
9098                 .psize = 0,
9099                 .digest = "\x00\x00\x00\x00",
9100         },
9101         {
9102                 .key = "\x87\xa9\xcb\xed",
9103                 .ksize = 4,
9104                 .psize = 0,
9105                 .digest = "\x78\x56\x34\x12",
9106         },
9107         {
9108                 .key = "\xff\xff\xff\xff",
9109                 .ksize = 4,
9110                 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08"
9111                              "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
9112                              "\x11\x12\x13\x14\x15\x16\x17\x18"
9113                              "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
9114                              "\x21\x22\x23\x24\x25\x26\x27\x28",
9115                 .psize = 40,
9116                 .digest = "\x7f\x15\x2c\x0e",
9117         },
9118         {
9119                 .key = "\xff\xff\xff\xff",
9120                 .ksize = 4,
9121                 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
9122                              "\x31\x32\x33\x34\x35\x36\x37\x38"
9123                              "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
9124                              "\x41\x42\x43\x44\x45\x46\x47\x48"
9125                              "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50",
9126                 .psize = 40,
9127                 .digest = "\xf6\xeb\x80\xe9",
9128         },
9129         {
9130                 .key = "\xff\xff\xff\xff",
9131                 .ksize = 4,
9132                 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58"
9133                              "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
9134                              "\x61\x62\x63\x64\x65\x66\x67\x68"
9135                              "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
9136                              "\x71\x72\x73\x74\x75\x76\x77\x78",
9137                 .psize = 40,
9138                 .digest = "\xed\xbd\x74\xde",
9139         },
9140         {
9141                 .key = "\xff\xff\xff\xff",
9142                 .ksize = 4,
9143                 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
9144                              "\x81\x82\x83\x84\x85\x86\x87\x88"
9145                              "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
9146                              "\x91\x92\x93\x94\x95\x96\x97\x98"
9147                              "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0",
9148                 .psize = 40,
9149                 .digest = "\x62\xc8\x79\xd5",
9150         },
9151         {
9152                 .key = "\xff\xff\xff\xff",
9153                 .ksize = 4,
9154                 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
9155                              "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
9156                              "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
9157                              "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
9158                              "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8",
9159                 .psize = 40,
9160                 .digest = "\xd0\x9a\x97\xba",
9161         },
9162         {
9163                 .key = "\xff\xff\xff\xff",
9164                 .ksize = 4,
9165                 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
9166                              "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
9167                              "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
9168                              "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
9169                              "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
9170                 .psize = 40,
9171                 .digest = "\x13\xd9\x29\x2b",
9172         },
9173         {
9174                 .key = "\x80\xea\xd3\xf1",
9175                 .ksize = 4,
9176                 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
9177                              "\x31\x32\x33\x34\x35\x36\x37\x38"
9178                              "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
9179                              "\x41\x42\x43\x44\x45\x46\x47\x48"
9180                              "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50",
9181                 .psize = 40,
9182                 .digest = "\x0c\xb5\xe2\xa2",
9183         },
9184         {
9185                 .key = "\xf3\x4a\x1d\x5d",
9186                 .ksize = 4,
9187                 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58"
9188                              "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
9189                              "\x61\x62\x63\x64\x65\x66\x67\x68"
9190                              "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
9191                              "\x71\x72\x73\x74\x75\x76\x77\x78",
9192                 .psize = 40,
9193                 .digest = "\xd1\x7f\xfb\xa6",
9194         },
9195         {
9196                 .key = "\x2e\x80\x04\x59",
9197                 .ksize = 4,
9198                 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
9199                              "\x81\x82\x83\x84\x85\x86\x87\x88"
9200                              "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
9201                              "\x91\x92\x93\x94\x95\x96\x97\x98"
9202                              "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0",
9203                 .psize = 40,
9204                 .digest = "\x59\x33\xe6\x7a",
9205         },
9206         {
9207                 .key = "\xa6\xcc\x19\x85",
9208                 .ksize = 4,
9209                 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
9210                              "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
9211                              "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
9212                              "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
9213                              "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8",
9214                 .psize = 40,
9215                 .digest = "\xbe\x03\x01\xd2",
9216         },
9217         {
9218                 .key = "\x41\xfc\xfe\x2d",
9219                 .ksize = 4,
9220                 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
9221                              "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
9222                              "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
9223                              "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
9224                              "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
9225                 .psize = 40,
9226                 .digest = "\x75\xd3\xc5\x24",
9227         },
9228         {
9229                 .key = "\xff\xff\xff\xff",
9230                 .ksize = 4,
9231                 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08"
9232                              "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
9233                              "\x11\x12\x13\x14\x15\x16\x17\x18"
9234                              "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
9235                              "\x21\x22\x23\x24\x25\x26\x27\x28"
9236                              "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
9237                              "\x31\x32\x33\x34\x35\x36\x37\x38"
9238                              "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
9239                              "\x41\x42\x43\x44\x45\x46\x47\x48"
9240                              "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50"
9241                              "\x51\x52\x53\x54\x55\x56\x57\x58"
9242                              "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
9243                              "\x61\x62\x63\x64\x65\x66\x67\x68"
9244                              "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
9245                              "\x71\x72\x73\x74\x75\x76\x77\x78"
9246                              "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
9247                              "\x81\x82\x83\x84\x85\x86\x87\x88"
9248                              "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
9249                              "\x91\x92\x93\x94\x95\x96\x97\x98"
9250                              "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0"
9251                              "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
9252                              "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
9253                              "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
9254                              "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
9255                              "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8"
9256                              "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
9257                              "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
9258                              "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
9259                              "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
9260                              "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
9261                 .psize = 240,
9262                 .digest = "\x75\xd3\xc5\x24",
9263                 .np = 2,
9264                 .tap = { 31, 209 }
9265         },
9266 };
9267
9268 #endif  /* _CRYPTO_TESTMGR_H */