crypto: testmgr - Handle AEAD test vectors expected to fail verification
[safe/jmp/linux-2.6] / 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 static char zeroed_string[48];
74
75 /*
76  * MD4 test vectors from RFC1320
77  */
78 #define MD4_TEST_VECTORS        7
79
80 static struct hash_testvec md4_tv_template [] = {
81         {
82                 .plaintext = "",
83                 .digest = "\x31\xd6\xcf\xe0\xd1\x6a\xe9\x31"
84                           "\xb7\x3c\x59\xd7\xe0\xc0\x89\xc0",
85         }, {
86                 .plaintext = "a",
87                 .psize  = 1,
88                 .digest = "\xbd\xe5\x2c\xb3\x1d\xe3\x3e\x46"
89                           "\x24\x5e\x05\xfb\xdb\xd6\xfb\x24",
90         }, {
91                 .plaintext = "abc",
92                 .psize  = 3,
93                 .digest = "\xa4\x48\x01\x7a\xaf\x21\xd8\x52"
94                           "\x5f\xc1\x0a\xe8\x7a\xa6\x72\x9d",
95         }, {
96                 .plaintext = "message digest",
97                 .psize  = 14,
98                 .digest = "\xd9\x13\x0a\x81\x64\x54\x9f\xe8"
99                         "\x18\x87\x48\x06\xe1\xc7\x01\x4b",
100         }, {
101                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
102                 .psize  = 26,
103                 .digest = "\xd7\x9e\x1c\x30\x8a\xa5\xbb\xcd"
104                           "\xee\xa8\xed\x63\xdf\x41\x2d\xa9",
105                 .np     = 2,
106                 .tap    = { 13, 13 },
107         }, {
108                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
109                 .psize  = 62,
110                 .digest = "\x04\x3f\x85\x82\xf2\x41\xdb\x35"
111                           "\x1c\xe6\x27\xe1\x53\xe7\xf0\xe4",
112         }, {
113                 .plaintext = "123456789012345678901234567890123456789012345678901234567890123"
114                            "45678901234567890",
115                 .psize  = 80,
116                 .digest = "\xe3\x3b\x4d\xdc\x9c\x38\xf2\x19"
117                           "\x9c\x3e\x7b\x16\x4f\xcc\x05\x36",
118         },
119 };
120
121 /*
122  * MD5 test vectors from RFC1321
123  */
124 #define MD5_TEST_VECTORS        7
125
126 static struct hash_testvec md5_tv_template[] = {
127         {
128                 .digest = "\xd4\x1d\x8c\xd9\x8f\x00\xb2\x04"
129                           "\xe9\x80\x09\x98\xec\xf8\x42\x7e",
130         }, {
131                 .plaintext = "a",
132                 .psize  = 1,
133                 .digest = "\x0c\xc1\x75\xb9\xc0\xf1\xb6\xa8"
134                           "\x31\xc3\x99\xe2\x69\x77\x26\x61",
135         }, {
136                 .plaintext = "abc",
137                 .psize  = 3,
138                 .digest = "\x90\x01\x50\x98\x3c\xd2\x4f\xb0"
139                           "\xd6\x96\x3f\x7d\x28\xe1\x7f\x72",
140         }, {
141                 .plaintext = "message digest",
142                 .psize  = 14,
143                 .digest = "\xf9\x6b\x69\x7d\x7c\xb7\x93\x8d"
144                           "\x52\x5a\x2f\x31\xaa\xf1\x61\xd0",
145         }, {
146                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
147                 .psize  = 26,
148                 .digest = "\xc3\xfc\xd3\xd7\x61\x92\xe4\x00"
149                           "\x7d\xfb\x49\x6c\xca\x67\xe1\x3b",
150                 .np     = 2,
151                 .tap    = {13, 13}
152         }, {
153                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
154                 .psize  = 62,
155                 .digest = "\xd1\x74\xab\x98\xd2\x77\xd9\xf5"
156                           "\xa5\x61\x1c\x2c\x9f\x41\x9d\x9f",
157         }, {
158                 .plaintext = "12345678901234567890123456789012345678901234567890123456789012"
159                            "345678901234567890",
160                 .psize  = 80,
161                 .digest = "\x57\xed\xf4\xa2\x2b\xe3\xc9\x55"
162                           "\xac\x49\xda\x2e\x21\x07\xb6\x7a",
163         }
164
165 };
166
167 /*
168  * RIPEMD-128 test vectors from ISO/IEC 10118-3:2004(E)
169  */
170 #define RMD128_TEST_VECTORS     10
171
172 static struct hash_testvec rmd128_tv_template[] = {
173         {
174                 .digest = "\xcd\xf2\x62\x13\xa1\x50\xdc\x3e"
175                           "\xcb\x61\x0f\x18\xf6\xb3\x8b\x46",
176         }, {
177                 .plaintext = "a",
178                 .psize  = 1,
179                 .digest = "\x86\xbe\x7a\xfa\x33\x9d\x0f\xc7"
180                           "\xcf\xc7\x85\xe7\x2f\x57\x8d\x33",
181         }, {
182                 .plaintext = "abc",
183                 .psize  = 3,
184                 .digest = "\xc1\x4a\x12\x19\x9c\x66\xe4\xba"
185                           "\x84\x63\x6b\x0f\x69\x14\x4c\x77",
186         }, {
187                 .plaintext = "message digest",
188                 .psize  = 14,
189                 .digest = "\x9e\x32\x7b\x3d\x6e\x52\x30\x62"
190                           "\xaf\xc1\x13\x2d\x7d\xf9\xd1\xb8",
191         }, {
192                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
193                 .psize  = 26,
194                 .digest = "\xfd\x2a\xa6\x07\xf7\x1d\xc8\xf5"
195                           "\x10\x71\x49\x22\xb3\x71\x83\x4e",
196         }, {
197                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
198                              "fghijklmnopqrstuvwxyz0123456789",
199                 .psize  = 62,
200                 .digest = "\xd1\xe9\x59\xeb\x17\x9c\x91\x1f"
201                           "\xae\xa4\x62\x4c\x60\xc5\xc7\x02",
202         }, {
203                 .plaintext = "1234567890123456789012345678901234567890"
204                              "1234567890123456789012345678901234567890",
205                 .psize  = 80,
206                 .digest = "\x3f\x45\xef\x19\x47\x32\xc2\xdb"
207                           "\xb2\xc4\xa2\xc7\x69\x79\x5f\xa3",
208         }, {
209                 .plaintext = "abcdbcdecdefdefgefghfghighij"
210                              "hijkijkljklmklmnlmnomnopnopq",
211                 .psize  = 56,
212                 .digest = "\xa1\xaa\x06\x89\xd0\xfa\xfa\x2d"
213                           "\xdc\x22\xe8\x8b\x49\x13\x3a\x06",
214                 .np     = 2,
215                 .tap    = { 28, 28 },
216         }, {
217                 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi"
218                              "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr"
219                              "lmnopqrsmnopqrstnopqrstu",
220                 .psize  = 112,
221                 .digest = "\xd4\xec\xc9\x13\xe1\xdf\x77\x6b"
222                           "\xf4\x8d\xe9\xd5\x5b\x1f\x25\x46",
223         }, {
224                 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
225                 .psize  = 32,
226                 .digest = "\x13\xfc\x13\xe8\xef\xff\x34\x7d"
227                           "\xe1\x93\xff\x46\xdb\xac\xcf\xd4",
228         }
229 };
230
231 /*
232  * RIPEMD-160 test vectors from ISO/IEC 10118-3:2004(E)
233  */
234 #define RMD160_TEST_VECTORS     10
235
236 static struct hash_testvec rmd160_tv_template[] = {
237         {
238                 .digest = "\x9c\x11\x85\xa5\xc5\xe9\xfc\x54\x61\x28"
239                           "\x08\x97\x7e\xe8\xf5\x48\xb2\x25\x8d\x31",
240         }, {
241                 .plaintext = "a",
242                 .psize  = 1,
243                 .digest = "\x0b\xdc\x9d\x2d\x25\x6b\x3e\xe9\xda\xae"
244                           "\x34\x7b\xe6\xf4\xdc\x83\x5a\x46\x7f\xfe",
245         }, {
246                 .plaintext = "abc",
247                 .psize  = 3,
248                 .digest = "\x8e\xb2\x08\xf7\xe0\x5d\x98\x7a\x9b\x04"
249                           "\x4a\x8e\x98\xc6\xb0\x87\xf1\x5a\x0b\xfc",
250         }, {
251                 .plaintext = "message digest",
252                 .psize  = 14,
253                 .digest = "\x5d\x06\x89\xef\x49\xd2\xfa\xe5\x72\xb8"
254                           "\x81\xb1\x23\xa8\x5f\xfa\x21\x59\x5f\x36",
255         }, {
256                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
257                 .psize  = 26,
258                 .digest = "\xf7\x1c\x27\x10\x9c\x69\x2c\x1b\x56\xbb"
259                           "\xdc\xeb\x5b\x9d\x28\x65\xb3\x70\x8d\xbc",
260         }, {
261                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
262                              "fghijklmnopqrstuvwxyz0123456789",
263                 .psize  = 62,
264                 .digest = "\xb0\xe2\x0b\x6e\x31\x16\x64\x02\x86\xed"
265                           "\x3a\x87\xa5\x71\x30\x79\xb2\x1f\x51\x89",
266         }, {
267                 .plaintext = "1234567890123456789012345678901234567890"
268                              "1234567890123456789012345678901234567890",
269                 .psize  = 80,
270                 .digest = "\x9b\x75\x2e\x45\x57\x3d\x4b\x39\xf4\xdb"
271                           "\xd3\x32\x3c\xab\x82\xbf\x63\x32\x6b\xfb",
272         }, {
273                 .plaintext = "abcdbcdecdefdefgefghfghighij"
274                              "hijkijkljklmklmnlmnomnopnopq",
275                 .psize  = 56,
276                 .digest = "\x12\xa0\x53\x38\x4a\x9c\x0c\x88\xe4\x05"
277                           "\xa0\x6c\x27\xdc\xf4\x9a\xda\x62\xeb\x2b",
278                 .np     = 2,
279                 .tap    = { 28, 28 },
280         }, {
281                 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghi"
282                              "jklmghijklmnhijklmnoijklmnopjklmnopqklmnopqr"
283                              "lmnopqrsmnopqrstnopqrstu",
284                 .psize  = 112,
285                 .digest = "\x6f\x3f\xa3\x9b\x6b\x50\x3c\x38\x4f\x91"
286                           "\x9a\x49\xa7\xaa\x5c\x2c\x08\xbd\xfb\x45",
287         }, {
288                 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
289                 .psize  = 32,
290                 .digest = "\x94\xc2\x64\x11\x54\x04\xe6\x33\x79\x0d"
291                           "\xfc\xc8\x7b\x58\x7d\x36\x77\x06\x7d\x9f",
292         }
293 };
294
295 /*
296  * RIPEMD-256 test vectors
297  */
298 #define RMD256_TEST_VECTORS     8
299
300 static struct hash_testvec rmd256_tv_template[] = {
301         {
302                 .digest = "\x02\xba\x4c\x4e\x5f\x8e\xcd\x18"
303                           "\x77\xfc\x52\xd6\x4d\x30\xe3\x7a"
304                           "\x2d\x97\x74\xfb\x1e\x5d\x02\x63"
305                           "\x80\xae\x01\x68\xe3\xc5\x52\x2d",
306         }, {
307                 .plaintext = "a",
308                 .psize  = 1,
309                 .digest = "\xf9\x33\x3e\x45\xd8\x57\xf5\xd9"
310                           "\x0a\x91\xba\xb7\x0a\x1e\xba\x0c"
311                           "\xfb\x1b\xe4\xb0\x78\x3c\x9a\xcf"
312                           "\xcd\x88\x3a\x91\x34\x69\x29\x25",
313         }, {
314                 .plaintext = "abc",
315                 .psize  = 3,
316                 .digest = "\xaf\xbd\x6e\x22\x8b\x9d\x8c\xbb"
317                           "\xce\xf5\xca\x2d\x03\xe6\xdb\xa1"
318                           "\x0a\xc0\xbc\x7d\xcb\xe4\x68\x0e"
319                           "\x1e\x42\xd2\xe9\x75\x45\x9b\x65",
320         }, {
321                 .plaintext = "message digest",
322                 .psize  = 14,
323                 .digest = "\x87\xe9\x71\x75\x9a\x1c\xe4\x7a"
324                           "\x51\x4d\x5c\x91\x4c\x39\x2c\x90"
325                           "\x18\xc7\xc4\x6b\xc1\x44\x65\x55"
326                           "\x4a\xfc\xdf\x54\xa5\x07\x0c\x0e",
327         }, {
328                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
329                 .psize  = 26,
330                 .digest = "\x64\x9d\x30\x34\x75\x1e\xa2\x16"
331                           "\x77\x6b\xf9\xa1\x8a\xcc\x81\xbc"
332                           "\x78\x96\x11\x8a\x51\x97\x96\x87"
333                           "\x82\xdd\x1f\xd9\x7d\x8d\x51\x33",
334         }, {
335                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
336                              "fghijklmnopqrstuvwxyz0123456789",
337                 .psize  = 62,
338                 .digest = "\x57\x40\xa4\x08\xac\x16\xb7\x20"
339                           "\xb8\x44\x24\xae\x93\x1c\xbb\x1f"
340                           "\xe3\x63\xd1\xd0\xbf\x40\x17\xf1"
341                           "\xa8\x9f\x7e\xa6\xde\x77\xa0\xb8",
342         }, {
343                 .plaintext = "1234567890123456789012345678901234567890"
344                              "1234567890123456789012345678901234567890",
345                 .psize  = 80,
346                 .digest = "\x06\xfd\xcc\x7a\x40\x95\x48\xaa"
347                           "\xf9\x13\x68\xc0\x6a\x62\x75\xb5"
348                           "\x53\xe3\xf0\x99\xbf\x0e\xa4\xed"
349                           "\xfd\x67\x78\xdf\x89\xa8\x90\xdd",
350         }, {
351                 .plaintext = "abcdbcdecdefdefgefghfghighij"
352                              "hijkijkljklmklmnlmnomnopnopq",
353                 .psize  = 56,
354                 .digest = "\x38\x43\x04\x55\x83\xaa\xc6\xc8"
355                           "\xc8\xd9\x12\x85\x73\xe7\xa9\x80"
356                           "\x9a\xfb\x2a\x0f\x34\xcc\xc3\x6e"
357                           "\xa9\xe7\x2f\x16\xf6\x36\x8e\x3f",
358                 .np     = 2,
359                 .tap    = { 28, 28 },
360         }
361 };
362
363 /*
364  * RIPEMD-320 test vectors
365  */
366 #define RMD320_TEST_VECTORS     8
367
368 static struct hash_testvec rmd320_tv_template[] = {
369         {
370                 .digest = "\x22\xd6\x5d\x56\x61\x53\x6c\xdc\x75\xc1"
371                           "\xfd\xf5\xc6\xde\x7b\x41\xb9\xf2\x73\x25"
372                           "\xeb\xc6\x1e\x85\x57\x17\x7d\x70\x5a\x0e"
373                           "\xc8\x80\x15\x1c\x3a\x32\xa0\x08\x99\xb8",
374         }, {
375                 .plaintext = "a",
376                 .psize  = 1,
377                 .digest = "\xce\x78\x85\x06\x38\xf9\x26\x58\xa5\xa5"
378                           "\x85\x09\x75\x79\x92\x6d\xda\x66\x7a\x57"
379                           "\x16\x56\x2c\xfc\xf6\xfb\xe7\x7f\x63\x54"
380                           "\x2f\x99\xb0\x47\x05\xd6\x97\x0d\xff\x5d",
381         }, {
382                 .plaintext = "abc",
383                 .psize  = 3,
384                 .digest = "\xde\x4c\x01\xb3\x05\x4f\x89\x30\xa7\x9d"
385                           "\x09\xae\x73\x8e\x92\x30\x1e\x5a\x17\x08"
386                           "\x5b\xef\xfd\xc1\xb8\xd1\x16\x71\x3e\x74"
387                           "\xf8\x2f\xa9\x42\xd6\x4c\xdb\xc4\x68\x2d",
388         }, {
389                 .plaintext = "message digest",
390                 .psize  = 14,
391                 .digest = "\x3a\x8e\x28\x50\x2e\xd4\x5d\x42\x2f\x68"
392                           "\x84\x4f\x9d\xd3\x16\xe7\xb9\x85\x33\xfa"
393                           "\x3f\x2a\x91\xd2\x9f\x84\xd4\x25\xc8\x8d"
394                           "\x6b\x4e\xff\x72\x7d\xf6\x6a\x7c\x01\x97",
395         }, {
396                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
397                 .psize  = 26,
398                 .digest = "\xca\xbd\xb1\x81\x0b\x92\x47\x0a\x20\x93"
399                           "\xaa\x6b\xce\x05\x95\x2c\x28\x34\x8c\xf4"
400                           "\x3f\xf6\x08\x41\x97\x51\x66\xbb\x40\xed"
401                           "\x23\x40\x04\xb8\x82\x44\x63\xe6\xb0\x09",
402         }, {
403                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
404                              "fghijklmnopqrstuvwxyz0123456789",
405                 .psize  = 62,
406                 .digest = "\xed\x54\x49\x40\xc8\x6d\x67\xf2\x50\xd2"
407                           "\x32\xc3\x0b\x7b\x3e\x57\x70\xe0\xc6\x0c"
408                           "\x8c\xb9\xa4\xca\xfe\x3b\x11\x38\x8a\xf9"
409                           "\x92\x0e\x1b\x99\x23\x0b\x84\x3c\x86\xa4",
410         }, {
411                 .plaintext = "1234567890123456789012345678901234567890"
412                              "1234567890123456789012345678901234567890",
413                 .psize  = 80,
414                 .digest = "\x55\x78\x88\xaf\x5f\x6d\x8e\xd6\x2a\xb6"
415                           "\x69\x45\xc6\xd2\xa0\xa4\x7e\xcd\x53\x41"
416                           "\xe9\x15\xeb\x8f\xea\x1d\x05\x24\x95\x5f"
417                           "\x82\x5d\xc7\x17\xe4\xa0\x08\xab\x2d\x42",
418         }, {
419                 .plaintext = "abcdbcdecdefdefgefghfghighij"
420                              "hijkijkljklmklmnlmnomnopnopq",
421                 .psize  = 56,
422                 .digest = "\xd0\x34\xa7\x95\x0c\xf7\x22\x02\x1b\xa4"
423                           "\xb8\x4d\xf7\x69\xa5\xde\x20\x60\xe2\x59"
424                           "\xdf\x4c\x9b\xb4\xa4\x26\x8c\x0e\x93\x5b"
425                           "\xbc\x74\x70\xa9\x69\xc9\xd0\x72\xa1\xac",
426                 .np     = 2,
427                 .tap    = { 28, 28 },
428         }
429 };
430
431 /*
432  * SHA1 test vectors  from from FIPS PUB 180-1
433  */
434 #define SHA1_TEST_VECTORS       2
435
436 static struct hash_testvec sha1_tv_template[] = {
437         {
438                 .plaintext = "abc",
439                 .psize  = 3,
440                 .digest = "\xa9\x99\x3e\x36\x47\x06\x81\x6a\xba\x3e"
441                           "\x25\x71\x78\x50\xc2\x6c\x9c\xd0\xd8\x9d",
442         }, {
443                 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
444                 .psize  = 56,
445                 .digest = "\x84\x98\x3e\x44\x1c\x3b\xd2\x6e\xba\xae"
446                           "\x4a\xa1\xf9\x51\x29\xe5\xe5\x46\x70\xf1",
447                 .np     = 2,
448                 .tap    = { 28, 28 }
449         }
450 };
451
452
453 /*
454  * SHA224 test vectors from from FIPS PUB 180-2
455  */
456 #define SHA224_TEST_VECTORS     2
457
458 static struct hash_testvec sha224_tv_template[] = {
459         {
460                 .plaintext = "abc",
461                 .psize  = 3,
462                 .digest = "\x23\x09\x7D\x22\x34\x05\xD8\x22"
463                           "\x86\x42\xA4\x77\xBD\xA2\x55\xB3"
464                           "\x2A\xAD\xBC\xE4\xBD\xA0\xB3\xF7"
465                           "\xE3\x6C\x9D\xA7",
466         }, {
467                 .plaintext =
468                 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
469                 .psize  = 56,
470                 .digest = "\x75\x38\x8B\x16\x51\x27\x76\xCC"
471                           "\x5D\xBA\x5D\xA1\xFD\x89\x01\x50"
472                           "\xB0\xC6\x45\x5C\xB4\xF5\x8B\x19"
473                           "\x52\x52\x25\x25",
474                 .np     = 2,
475                 .tap    = { 28, 28 }
476         }
477 };
478
479 /*
480  * SHA256 test vectors from from NIST
481  */
482 #define SHA256_TEST_VECTORS     2
483
484 static struct hash_testvec sha256_tv_template[] = {
485         {
486                 .plaintext = "abc",
487                 .psize  = 3,
488                 .digest = "\xba\x78\x16\xbf\x8f\x01\xcf\xea"
489                           "\x41\x41\x40\xde\x5d\xae\x22\x23"
490                           "\xb0\x03\x61\xa3\x96\x17\x7a\x9c"
491                           "\xb4\x10\xff\x61\xf2\x00\x15\xad",
492         }, {
493                 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
494                 .psize  = 56,
495                 .digest = "\x24\x8d\x6a\x61\xd2\x06\x38\xb8"
496                           "\xe5\xc0\x26\x93\x0c\x3e\x60\x39"
497                           "\xa3\x3c\xe4\x59\x64\xff\x21\x67"
498                           "\xf6\xec\xed\xd4\x19\xdb\x06\xc1",
499                 .np     = 2,
500                 .tap    = { 28, 28 }
501         },
502 };
503
504 /*
505  * SHA384 test vectors from from NIST and kerneli
506  */
507 #define SHA384_TEST_VECTORS     4
508
509 static struct hash_testvec sha384_tv_template[] = {
510         {
511                 .plaintext= "abc",
512                 .psize  = 3,
513                 .digest = "\xcb\x00\x75\x3f\x45\xa3\x5e\x8b"
514                           "\xb5\xa0\x3d\x69\x9a\xc6\x50\x07"
515                           "\x27\x2c\x32\xab\x0e\xde\xd1\x63"
516                           "\x1a\x8b\x60\x5a\x43\xff\x5b\xed"
517                           "\x80\x86\x07\x2b\xa1\xe7\xcc\x23"
518                           "\x58\xba\xec\xa1\x34\xc8\x25\xa7",
519         }, {
520                 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
521                 .psize  = 56,
522                 .digest = "\x33\x91\xfd\xdd\xfc\x8d\xc7\x39"
523                           "\x37\x07\xa6\x5b\x1b\x47\x09\x39"
524                           "\x7c\xf8\xb1\xd1\x62\xaf\x05\xab"
525                           "\xfe\x8f\x45\x0d\xe5\xf3\x6b\xc6"
526                           "\xb0\x45\x5a\x85\x20\xbc\x4e\x6f"
527                           "\x5f\xe9\x5b\x1f\xe3\xc8\x45\x2b",
528         }, {
529                 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"
530                            "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
531                 .psize  = 112,
532                 .digest = "\x09\x33\x0c\x33\xf7\x11\x47\xe8"
533                           "\x3d\x19\x2f\xc7\x82\xcd\x1b\x47"
534                           "\x53\x11\x1b\x17\x3b\x3b\x05\xd2"
535                           "\x2f\xa0\x80\x86\xe3\xb0\xf7\x12"
536                           "\xfc\xc7\xc7\x1a\x55\x7e\x2d\xb9"
537                           "\x66\xc3\xe9\xfa\x91\x74\x60\x39",
538         }, {
539                 .plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd"
540                            "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz",
541                 .psize  = 104,
542                 .digest = "\x3d\x20\x89\x73\xab\x35\x08\xdb"
543                           "\xbd\x7e\x2c\x28\x62\xba\x29\x0a"
544                           "\xd3\x01\x0e\x49\x78\xc1\x98\xdc"
545                           "\x4d\x8f\xd0\x14\xe5\x82\x82\x3a"
546                           "\x89\xe1\x6f\x9b\x2a\x7b\xbc\x1a"
547                           "\xc9\x38\xe2\xd1\x99\xe8\xbe\xa4",
548                 .np     = 4,
549                 .tap    = { 26, 26, 26, 26 }
550         },
551 };
552
553 /*
554  * SHA512 test vectors from from NIST and kerneli
555  */
556 #define SHA512_TEST_VECTORS     4
557
558 static struct hash_testvec sha512_tv_template[] = {
559         {
560                 .plaintext = "abc",
561                 .psize  = 3,
562                 .digest = "\xdd\xaf\x35\xa1\x93\x61\x7a\xba"
563                           "\xcc\x41\x73\x49\xae\x20\x41\x31"
564                           "\x12\xe6\xfa\x4e\x89\xa9\x7e\xa2"
565                           "\x0a\x9e\xee\xe6\x4b\x55\xd3\x9a"
566                           "\x21\x92\x99\x2a\x27\x4f\xc1\xa8"
567                           "\x36\xba\x3c\x23\xa3\xfe\xeb\xbd"
568                           "\x45\x4d\x44\x23\x64\x3c\xe8\x0e"
569                           "\x2a\x9a\xc9\x4f\xa5\x4c\xa4\x9f",
570         }, {
571                 .plaintext = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
572                 .psize  = 56,
573                 .digest = "\x20\x4a\x8f\xc6\xdd\xa8\x2f\x0a"
574                           "\x0c\xed\x7b\xeb\x8e\x08\xa4\x16"
575                           "\x57\xc1\x6e\xf4\x68\xb2\x28\xa8"
576                           "\x27\x9b\xe3\x31\xa7\x03\xc3\x35"
577                           "\x96\xfd\x15\xc1\x3b\x1b\x07\xf9"
578                           "\xaa\x1d\x3b\xea\x57\x78\x9c\xa0"
579                           "\x31\xad\x85\xc7\xa7\x1d\xd7\x03"
580                           "\x54\xec\x63\x12\x38\xca\x34\x45",
581         }, {
582                 .plaintext = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"
583                            "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
584                 .psize  = 112,
585                 .digest = "\x8e\x95\x9b\x75\xda\xe3\x13\xda"
586                           "\x8c\xf4\xf7\x28\x14\xfc\x14\x3f"
587                           "\x8f\x77\x79\xc6\xeb\x9f\x7f\xa1"
588                           "\x72\x99\xae\xad\xb6\x88\x90\x18"
589                           "\x50\x1d\x28\x9e\x49\x00\xf7\xe4"
590                           "\x33\x1b\x99\xde\xc4\xb5\x43\x3a"
591                           "\xc7\xd3\x29\xee\xb6\xdd\x26\x54"
592                           "\x5e\x96\xe5\x5b\x87\x4b\xe9\x09",
593         }, {
594                 .plaintext = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd"
595                            "efghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz",
596                 .psize  = 104,
597                 .digest = "\x93\x0d\x0c\xef\xcb\x30\xff\x11"
598                           "\x33\xb6\x89\x81\x21\xf1\xcf\x3d"
599                           "\x27\x57\x8a\xfc\xaf\xe8\x67\x7c"
600                           "\x52\x57\xcf\x06\x99\x11\xf7\x5d"
601                           "\x8f\x58\x31\xb5\x6e\xbf\xda\x67"
602                           "\xb2\x78\xe6\x6d\xff\x8b\x84\xfe"
603                           "\x2b\x28\x70\xf7\x42\xa5\x80\xd8"
604                           "\xed\xb4\x19\x87\x23\x28\x50\xc9",
605                 .np     = 4,
606                 .tap    = { 26, 26, 26, 26 }
607         },
608 };
609
610
611 /*
612  * WHIRLPOOL test vectors from Whirlpool package
613  * by Vincent Rijmen and Paulo S. L. M. Barreto as part of the NESSIE
614  * submission
615  */
616 #define WP512_TEST_VECTORS      8
617
618 static struct hash_testvec wp512_tv_template[] = {
619         {
620                 .plaintext = "",
621                 .psize  = 0,
622                 .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66"
623                           "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26"
624                           "\xC5\x30\x23\x21\x30\xD4\x07\xF8"
625                           "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7"
626                           "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB"
627                           "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57"
628                           "\xEA\x89\x64\xE5\x9B\x63\xD9\x37"
629                           "\x08\xB1\x38\xCC\x42\xA6\x6E\xB3",
630
631
632         }, {
633                 .plaintext = "a",
634                 .psize  = 1,
635                 .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F"
636                           "\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
637                           "\xF0\xDF\xF5\x94\x13\x14\x5E\x69"
638                           "\x73\xC4\x50\x01\xD0\x08\x7B\x42"
639                           "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6"
640                           "\x3A\x42\x39\x1A\x39\x14\x5A\x59"
641                           "\x1A\x92\x20\x0D\x56\x01\x95\xE5"
642                           "\x3B\x47\x85\x84\xFD\xAE\x23\x1A",
643         }, {
644                 .plaintext = "abc",
645                 .psize  = 3,
646                 .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB"
647                           "\x16\xB6\x56\x2C\x73\xB4\x02\x0B"
648                           "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72"
649                           "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C"
650                           "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27"
651                           "\x7D\x0E\x34\x95\x71\x14\xCB\xD6"
652                           "\xC7\x97\xFC\x9D\x95\xD8\xB5\x82"
653                           "\xD2\x25\x29\x20\x76\xD4\xEE\xF5",
654         }, {
655                 .plaintext = "message digest",
656                 .psize  = 14,
657                 .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6"
658                           "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC"
659                           "\x83\x8D\x00\x03\x22\x30\xF5\x3C"
660                           "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B"
661                           "\x84\x21\x55\x76\x59\xEF\x55\xC1"
662                           "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6"
663                           "\x92\xED\x92\x00\x52\x83\x8F\x33"
664                           "\x62\xE8\x6D\xBD\x37\xA8\x90\x3E",
665         }, {
666                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
667                 .psize  = 26,
668                 .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9"
669                           "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A"
670                           "\x8D\x38\x63\x1E\xAD\x42\x38\xF5"
671                           "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B"
672                           "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A"
673                           "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6"
674                           "\xF6\x8F\x67\x3E\x72\x07\x86\x5D"
675                           "\x5D\x98\x19\xA3\xDB\xA4\xEB\x3B",
676         }, {
677                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
678                            "abcdefghijklmnopqrstuvwxyz0123456789",
679                 .psize  = 62,
680                 .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B"
681                           "\xF1\x1F\x00\xED\x9A\xBA\x26\x90"
682                           "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC"
683                           "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E"
684                           "\x08\xEB\xA2\x66\x29\x12\x9D\x8F"
685                           "\xB7\xCB\x57\x21\x1B\x92\x81\xA6"
686                           "\x55\x17\xCC\x87\x9D\x7B\x96\x21"
687                           "\x42\xC6\x5F\x5A\x7A\xF0\x14\x67",
688         }, {
689                 .plaintext = "1234567890123456789012345678901234567890"
690                            "1234567890123456789012345678901234567890",
691                 .psize  = 80,
692                 .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D"
693                           "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0"
694                           "\x87\x84\x37\x2B\xCC\xB2\x04\xD6"
695                           "\x54\x9C\x4A\xFA\xDB\x60\x14\x29"
696                           "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5"
697                           "\x38\xCD\x04\x7B\x26\x81\xA5\x1A"
698                           "\x2C\x60\x48\x1E\x88\xC5\xA2\x0B"
699                           "\x2C\x2A\x80\xCF\x3A\x9A\x08\x3B",
700         }, {
701                 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
702                 .psize  = 32,
703                 .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61"
704                           "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48"
705                           "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62"
706                           "\x07\xC5\x62\xF9\x88\xE9\x5C\x69"
707                           "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B"
708                           "\x7B\x94\x76\x39\xFE\x05\x0B\x56"
709                           "\x93\x9B\xAA\xA0\xAD\xFF\x9A\xE6"
710                           "\x74\x5B\x7B\x18\x1C\x3B\xE3\xFD",
711         },
712 };
713
714 #define WP384_TEST_VECTORS      8
715
716 static struct hash_testvec wp384_tv_template[] = {
717         {
718                 .plaintext = "",
719                 .psize  = 0,
720                 .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66"
721                           "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26"
722                           "\xC5\x30\x23\x21\x30\xD4\x07\xF8"
723                           "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7"
724                           "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB"
725                           "\xCF\x88\xE3\xE0\x3C\x4F\x07\x57",
726
727
728         }, {
729                 .plaintext = "a",
730                 .psize  = 1,
731                 .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F"
732                           "\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
733                           "\xF0\xDF\xF5\x94\x13\x14\x5E\x69"
734                           "\x73\xC4\x50\x01\xD0\x08\x7B\x42"
735                           "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6"
736                           "\x3A\x42\x39\x1A\x39\x14\x5A\x59",
737         }, {
738                 .plaintext = "abc",
739                 .psize  = 3,
740                 .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB"
741                           "\x16\xB6\x56\x2C\x73\xB4\x02\x0B"
742                           "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72"
743                           "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C"
744                           "\x71\x81\xEE\xBD\xB6\xC5\x7E\x27"
745                           "\x7D\x0E\x34\x95\x71\x14\xCB\xD6",
746         }, {
747                 .plaintext = "message digest",
748                 .psize  = 14,
749                 .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6"
750                           "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC"
751                           "\x83\x8D\x00\x03\x22\x30\xF5\x3C"
752                           "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B"
753                           "\x84\x21\x55\x76\x59\xEF\x55\xC1"
754                           "\x06\xB4\xB5\x2A\xC5\xA4\xAA\xA6",
755         }, {
756                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
757                 .psize  = 26,
758                 .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9"
759                           "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A"
760                           "\x8D\x38\x63\x1E\xAD\x42\x38\xF5"
761                           "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B"
762                           "\x08\xBF\x2A\x92\x51\xC3\x0B\x6A"
763                           "\x0B\x8A\xAE\x86\x17\x7A\xB4\xA6",
764         }, {
765                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
766                            "abcdefghijklmnopqrstuvwxyz0123456789",
767                 .psize  = 62,
768                 .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B"
769                           "\xF1\x1F\x00\xED\x9A\xBA\x26\x90"
770                           "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC"
771                           "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E"
772                           "\x08\xEB\xA2\x66\x29\x12\x9D\x8F"
773                           "\xB7\xCB\x57\x21\x1B\x92\x81\xA6",
774         }, {
775                 .plaintext = "1234567890123456789012345678901234567890"
776                            "1234567890123456789012345678901234567890",
777                 .psize  = 80,
778                 .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D"
779                           "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0"
780                           "\x87\x84\x37\x2B\xCC\xB2\x04\xD6"
781                           "\x54\x9C\x4A\xFA\xDB\x60\x14\x29"
782                           "\x4D\x5B\xD8\xDF\x2A\x6C\x44\xE5"
783                           "\x38\xCD\x04\x7B\x26\x81\xA5\x1A",
784         }, {
785                 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
786                 .psize  = 32,
787                 .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61"
788                           "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48"
789                           "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62"
790                           "\x07\xC5\x62\xF9\x88\xE9\x5C\x69"
791                           "\x16\xBD\xC8\x03\x1B\xC5\xBE\x1B"
792                           "\x7B\x94\x76\x39\xFE\x05\x0B\x56",
793         },
794 };
795
796 #define WP256_TEST_VECTORS      8
797
798 static struct hash_testvec wp256_tv_template[] = {
799         {
800                 .plaintext = "",
801                 .psize  = 0,
802                 .digest = "\x19\xFA\x61\xD7\x55\x22\xA4\x66"
803                           "\x9B\x44\xE3\x9C\x1D\x2E\x17\x26"
804                           "\xC5\x30\x23\x21\x30\xD4\x07\xF8"
805                           "\x9A\xFE\xE0\x96\x49\x97\xF7\xA7",
806
807
808         }, {
809                 .plaintext = "a",
810                 .psize  = 1,
811                 .digest = "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F"
812                           "\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
813                           "\xF0\xDF\xF5\x94\x13\x14\x5E\x69"
814                           "\x73\xC4\x50\x01\xD0\x08\x7B\x42",
815         }, {
816                 .plaintext = "abc",
817                 .psize  = 3,
818                 .digest = "\x4E\x24\x48\xA4\xC6\xF4\x86\xBB"
819                           "\x16\xB6\x56\x2C\x73\xB4\x02\x0B"
820                           "\xF3\x04\x3E\x3A\x73\x1B\xCE\x72"
821                           "\x1A\xE1\xB3\x03\xD9\x7E\x6D\x4C",
822         }, {
823                 .plaintext = "message digest",
824                 .psize  = 14,
825                 .digest = "\x37\x8C\x84\xA4\x12\x6E\x2D\xC6"
826                           "\xE5\x6D\xCC\x74\x58\x37\x7A\xAC"
827                           "\x83\x8D\x00\x03\x22\x30\xF5\x3C"
828                           "\xE1\xF5\x70\x0C\x0F\xFB\x4D\x3B",
829         }, {
830                 .plaintext = "abcdefghijklmnopqrstuvwxyz",
831                 .psize  = 26,
832                 .digest = "\xF1\xD7\x54\x66\x26\x36\xFF\xE9"
833                           "\x2C\x82\xEB\xB9\x21\x2A\x48\x4A"
834                           "\x8D\x38\x63\x1E\xAD\x42\x38\xF5"
835                           "\x44\x2E\xE1\x3B\x80\x54\xE4\x1B",
836         }, {
837                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
838                            "abcdefghijklmnopqrstuvwxyz0123456789",
839                 .psize  = 62,
840                 .digest = "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B"
841                           "\xF1\x1F\x00\xED\x9A\xBA\x26\x90"
842                           "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC"
843                           "\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E",
844         }, {
845                 .plaintext = "1234567890123456789012345678901234567890"
846                            "1234567890123456789012345678901234567890",
847                 .psize  = 80,
848                 .digest = "\x46\x6E\xF1\x8B\xAB\xB0\x15\x4D"
849                           "\x25\xB9\xD3\x8A\x64\x14\xF5\xC0"
850                           "\x87\x84\x37\x2B\xCC\xB2\x04\xD6"
851                           "\x54\x9C\x4A\xFA\xDB\x60\x14\x29",
852         }, {
853                 .plaintext = "abcdbcdecdefdefgefghfghighijhijk",
854                 .psize  = 32,
855                 .digest = "\x2A\x98\x7E\xA4\x0F\x91\x70\x61"
856                           "\xF5\xD6\xF0\xA0\xE4\x64\x4F\x48"
857                           "\x8A\x7A\x5A\x52\xDE\xEE\x65\x62"
858                           "\x07\xC5\x62\xF9\x88\xE9\x5C\x69",
859         },
860 };
861
862 /*
863  * TIGER test vectors from Tiger website
864  */
865 #define TGR192_TEST_VECTORS     6
866
867 static struct hash_testvec tgr192_tv_template[] = {
868         {
869                 .plaintext = "",
870                 .psize  = 0,
871                 .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32"
872                           "\x16\x16\x6e\x76\xb1\xbb\x92\x5f"
873                           "\xf3\x73\xde\x2d\x49\x58\x4e\x7a",
874         }, {
875                 .plaintext = "abc",
876                 .psize  = 3,
877                 .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a"
878                           "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf"
879                           "\x93\x5f\x7b\x95\x1c\x13\x29\x51",
880         }, {
881                 .plaintext = "Tiger",
882                 .psize  = 5,
883                 .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd"
884                           "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec"
885                           "\x37\x79\x0c\x11\x6f\x9d\x2b\xdf",
886         }, {
887                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-",
888                 .psize  = 64,
889                 .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7"
890                           "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e"
891                           "\xb5\x86\x44\x50\x34\xa5\xa3\x86",
892         }, {
893                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789",
894                 .psize  = 64,
895                 .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48"
896                           "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9"
897                           "\x57\x89\x65\x65\x97\x5f\x91\x97",
898         }, {
899                 .plaintext = "Tiger - A Fast New Hash Function, "
900                            "by Ross Anderson and Eli Biham, "
901                            "proceedings of Fast Software Encryption 3, "
902                            "Cambridge, 1996.",
903                 .psize  = 125,
904                 .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63"
905                           "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24"
906                           "\xdd\x68\x15\x1d\x50\x39\x74\xfc",
907         },
908 };
909
910 #define TGR160_TEST_VECTORS     6
911
912 static struct hash_testvec tgr160_tv_template[] = {
913         {
914                 .plaintext = "",
915                 .psize  = 0,
916                 .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32"
917                           "\x16\x16\x6e\x76\xb1\xbb\x92\x5f"
918                           "\xf3\x73\xde\x2d",
919         }, {
920                 .plaintext = "abc",
921                 .psize  = 3,
922                 .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a"
923                           "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf"
924                           "\x93\x5f\x7b\x95",
925         }, {
926                 .plaintext = "Tiger",
927                 .psize  = 5,
928                 .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd"
929                           "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec"
930                           "\x37\x79\x0c\x11",
931         }, {
932                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-",
933                 .psize  = 64,
934                 .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7"
935                           "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e"
936                           "\xb5\x86\x44\x50",
937         }, {
938                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789",
939                 .psize  = 64,
940                 .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48"
941                           "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9"
942                           "\x57\x89\x65\x65",
943         }, {
944                 .plaintext = "Tiger - A Fast New Hash Function, "
945                            "by Ross Anderson and Eli Biham, "
946                            "proceedings of Fast Software Encryption 3, "
947                            "Cambridge, 1996.",
948                 .psize  = 125,
949                 .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63"
950                           "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24"
951                           "\xdd\x68\x15\x1d",
952         },
953 };
954
955 #define TGR128_TEST_VECTORS     6
956
957 static struct hash_testvec tgr128_tv_template[] = {
958         {
959                 .plaintext = "",
960                 .psize  = 0,
961                 .digest = "\x24\xf0\x13\x0c\x63\xac\x93\x32"
962                           "\x16\x16\x6e\x76\xb1\xbb\x92\x5f",
963         }, {
964                 .plaintext = "abc",
965                 .psize  = 3,
966                 .digest = "\xf2\x58\xc1\xe8\x84\x14\xab\x2a"
967                           "\x52\x7a\xb5\x41\xff\xc5\xb8\xbf",
968         }, {
969                 .plaintext = "Tiger",
970                 .psize  = 5,
971                 .digest = "\x9f\x00\xf5\x99\x07\x23\x00\xdd"
972                           "\x27\x6a\xbb\x38\xc8\xeb\x6d\xec",
973         }, {
974                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-",
975                 .psize  = 64,
976                 .digest = "\x87\xfb\x2a\x90\x83\x85\x1c\xf7"
977                           "\x47\x0d\x2c\xf8\x10\xe6\xdf\x9e",
978         }, {
979                 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdefghijklmnopqrstuvwxyz+0123456789",
980                 .psize  = 64,
981                 .digest = "\x46\x7d\xb8\x08\x63\xeb\xce\x48"
982                           "\x8d\xf1\xcd\x12\x61\x65\x5d\xe9",
983         }, {
984                 .plaintext = "Tiger - A Fast New Hash Function, "
985                            "by Ross Anderson and Eli Biham, "
986                            "proceedings of Fast Software Encryption 3, "
987                            "Cambridge, 1996.",
988                 .psize  = 125,
989                 .digest = "\x3d\x9a\xeb\x03\xd1\xbd\x1a\x63"
990                           "\x57\xb2\x77\x4d\xfd\x6d\x5b\x24",
991         },
992 };
993
994 /*
995  * HMAC-MD5 test vectors from RFC2202
996  * (These need to be fixed to not use strlen).
997  */
998 #define HMAC_MD5_TEST_VECTORS   7
999
1000 static struct hash_testvec hmac_md5_tv_template[] =
1001 {
1002         {
1003                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1004                 .ksize  = 16,
1005                 .plaintext = "Hi There",
1006                 .psize  = 8,
1007                 .digest = "\x92\x94\x72\x7a\x36\x38\xbb\x1c"
1008                           "\x13\xf4\x8e\xf8\x15\x8b\xfc\x9d",
1009         }, {
1010                 .key    = "Jefe",
1011                 .ksize  = 4,
1012                 .plaintext = "what do ya want for nothing?",
1013                 .psize  = 28,
1014                 .digest = "\x75\x0c\x78\x3e\x6a\xb0\xb5\x03"
1015                           "\xea\xa8\x6e\x31\x0a\x5d\xb7\x38",
1016                 .np     = 2,
1017                 .tap    = {14, 14}
1018         }, {
1019                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1020                 .ksize  = 16,
1021                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1022                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1023                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1024                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1025                 .psize  = 50,
1026                 .digest = "\x56\xbe\x34\x52\x1d\x14\x4c\x88"
1027                           "\xdb\xb8\xc7\x33\xf0\xe8\xb3\xf6",
1028         }, {
1029                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1030                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1031                           "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1032                 .ksize  = 25,
1033                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1034                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1035                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1036                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1037                 .psize  = 50,
1038                 .digest = "\x69\x7e\xaf\x0a\xca\x3a\x3a\xea"
1039                           "\x3a\x75\x16\x47\x46\xff\xaa\x79",
1040         }, {
1041                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1042                 .ksize  = 16,
1043                 .plaintext = "Test With Truncation",
1044                 .psize  = 20,
1045                 .digest = "\x56\x46\x1e\xf2\x34\x2e\xdc\x00"
1046                           "\xf9\xba\xb9\x95\x69\x0e\xfd\x4c",
1047         }, {
1048                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1049                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1050                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1051                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1052                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1053                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1054                         "\xaa\xaa",
1055                 .ksize  = 80,
1056                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1057                 .psize  = 54,
1058                 .digest = "\x6b\x1a\xb7\xfe\x4b\xd7\xbf\x8f"
1059                           "\x0b\x62\xe6\xce\x61\xb9\xd0\xcd",
1060         }, {
1061                 .key    = "\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\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1067                         "\xaa\xaa",
1068                 .ksize  = 80,
1069                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1070                            "Block-Size Data",
1071                 .psize  = 73,
1072                 .digest = "\x6f\x63\x0f\xad\x67\xcd\xa0\xee"
1073                           "\x1f\xb1\xf5\x62\xdb\x3a\xa5\x3e",
1074         },
1075 };
1076
1077 /*
1078  * HMAC-RIPEMD128 test vectors from RFC2286
1079  */
1080 #define HMAC_RMD128_TEST_VECTORS        7
1081
1082 static struct hash_testvec hmac_rmd128_tv_template[] = {
1083         {
1084                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1085                 .ksize  = 16,
1086                 .plaintext = "Hi There",
1087                 .psize  = 8,
1088                 .digest = "\xfb\xf6\x1f\x94\x92\xaa\x4b\xbf"
1089                           "\x81\xc1\x72\xe8\x4e\x07\x34\xdb",
1090         }, {
1091                 .key    = "Jefe",
1092                 .ksize  = 4,
1093                 .plaintext = "what do ya want for nothing?",
1094                 .psize  = 28,
1095                 .digest = "\x87\x5f\x82\x88\x62\xb6\xb3\x34"
1096                           "\xb4\x27\xc5\x5f\x9f\x7f\xf0\x9b",
1097                 .np     = 2,
1098                 .tap    = { 14, 14 },
1099         }, {
1100                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1101                 .ksize  = 16,
1102                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1103                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1104                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1105                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1106                 .psize  = 50,
1107                 .digest = "\x09\xf0\xb2\x84\x6d\x2f\x54\x3d"
1108                           "\xa3\x63\xcb\xec\x8d\x62\xa3\x8d",
1109         }, {
1110                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1111                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1112                           "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1113                 .ksize  = 25,
1114                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1115                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1116                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1117                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1118                 .psize  = 50,
1119                 .digest = "\xbd\xbb\xd7\xcf\x03\xe4\x4b\x5a"
1120                           "\xa6\x0a\xf8\x15\xbe\x4d\x22\x94",
1121         }, {
1122                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1123                 .ksize  = 16,
1124                 .plaintext = "Test With Truncation",
1125                 .psize  = 20,
1126                 .digest = "\xe7\x98\x08\xf2\x4b\x25\xfd\x03"
1127                           "\x1c\x15\x5f\x0d\x55\x1d\x9a\x3a",
1128         }, {
1129                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1130                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1131                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1132                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1133                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1134                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1135                         "\xaa\xaa",
1136                 .ksize  = 80,
1137                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1138                 .psize  = 54,
1139                 .digest = "\xdc\x73\x29\x28\xde\x98\x10\x4a"
1140                           "\x1f\x59\xd3\x73\xc1\x50\xac\xbb",
1141         }, {
1142                 .key    = "\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\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1148                         "\xaa\xaa",
1149                 .ksize  = 80,
1150                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1151                            "Block-Size Data",
1152                 .psize  = 73,
1153                 .digest = "\x5c\x6b\xec\x96\x79\x3e\x16\xd4"
1154                           "\x06\x90\xc2\x37\x63\x5f\x30\xc5",
1155         },
1156 };
1157
1158 /*
1159  * HMAC-RIPEMD160 test vectors from RFC2286
1160  */
1161 #define HMAC_RMD160_TEST_VECTORS        7
1162
1163 static struct hash_testvec hmac_rmd160_tv_template[] = {
1164         {
1165                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1166                 .ksize  = 20,
1167                 .plaintext = "Hi There",
1168                 .psize  = 8,
1169                 .digest = "\x24\xcb\x4b\xd6\x7d\x20\xfc\x1a\x5d\x2e"
1170                           "\xd7\x73\x2d\xcc\x39\x37\x7f\x0a\x56\x68",
1171         }, {
1172                 .key    = "Jefe",
1173                 .ksize  = 4,
1174                 .plaintext = "what do ya want for nothing?",
1175                 .psize  = 28,
1176                 .digest = "\xdd\xa6\xc0\x21\x3a\x48\x5a\x9e\x24\xf4"
1177                           "\x74\x20\x64\xa7\xf0\x33\xb4\x3c\x40\x69",
1178                 .np     = 2,
1179                 .tap    = { 14, 14 },
1180         }, {
1181                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1182                 .ksize  = 20,
1183                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1184                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1185                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1186                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1187                 .psize  = 50,
1188                 .digest = "\xb0\xb1\x05\x36\x0d\xe7\x59\x96\x0a\xb4"
1189                           "\xf3\x52\x98\xe1\x16\xe2\x95\xd8\xe7\xc1",
1190         }, {
1191                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1192                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1193                           "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1194                 .ksize  = 25,
1195                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1196                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1197                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1198                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1199                 .psize  = 50,
1200                 .digest = "\xd5\xca\x86\x2f\x4d\x21\xd5\xe6\x10\xe1"
1201                           "\x8b\x4c\xf1\xbe\xb9\x7a\x43\x65\xec\xf4",
1202         }, {
1203                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1204                 .ksize  = 20,
1205                 .plaintext = "Test With Truncation",
1206                 .psize  = 20,
1207                 .digest = "\x76\x19\x69\x39\x78\xf9\x1d\x90\x53\x9a"
1208                           "\xe7\x86\x50\x0f\xf3\xd8\xe0\x51\x8e\x39",
1209         }, {
1210                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1211                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1212                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1213                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1214                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1215                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1216                         "\xaa\xaa",
1217                 .ksize  = 80,
1218                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1219                 .psize  = 54,
1220                 .digest = "\x64\x66\xca\x07\xac\x5e\xac\x29\xe1\xbd"
1221                           "\x52\x3e\x5a\xda\x76\x05\xb7\x91\xfd\x8b",
1222         }, {
1223                 .key    = "\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\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1229                         "\xaa\xaa",
1230                 .ksize  = 80,
1231                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1232                            "Block-Size Data",
1233                 .psize  = 73,
1234                 .digest = "\x69\xea\x60\x79\x8d\x71\x61\x6c\xce\x5f"
1235                           "\xd0\x87\x1e\x23\x75\x4c\xd7\x5d\x5a\x0a",
1236         },
1237 };
1238
1239 /*
1240  * HMAC-SHA1 test vectors from RFC2202
1241  */
1242 #define HMAC_SHA1_TEST_VECTORS  7
1243
1244 static struct hash_testvec hmac_sha1_tv_template[] = {
1245         {
1246                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1247                 .ksize  = 20,
1248                 .plaintext = "Hi There",
1249                 .psize  = 8,
1250                 .digest = "\xb6\x17\x31\x86\x55\x05\x72\x64"
1251                           "\xe2\x8b\xc0\xb6\xfb\x37\x8c\x8e\xf1"
1252                           "\x46\xbe",
1253         }, {
1254                 .key    = "Jefe",
1255                 .ksize  = 4,
1256                 .plaintext = "what do ya want for nothing?",
1257                 .psize  = 28,
1258                 .digest = "\xef\xfc\xdf\x6a\xe5\xeb\x2f\xa2\xd2\x74"
1259                           "\x16\xd5\xf1\x84\xdf\x9c\x25\x9a\x7c\x79",
1260                 .np     = 2,
1261                 .tap    = { 14, 14 }
1262         }, {
1263                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1264                 .ksize  = 20,
1265                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1266                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1267                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1268                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1269                 .psize  = 50,
1270                 .digest = "\x12\x5d\x73\x42\xb9\xac\x11\xcd\x91\xa3"
1271                           "\x9a\xf4\x8a\xa1\x7b\x4f\x63\xf1\x75\xd3",
1272         }, {
1273                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1274                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1275                           "\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1276                 .ksize  = 25,
1277                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1278                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1279                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1280                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1281                 .psize  = 50,
1282                 .digest = "\x4c\x90\x07\xf4\x02\x62\x50\xc6\xbc\x84"
1283                           "\x14\xf9\xbf\x50\xc8\x6c\x2d\x72\x35\xda",
1284         }, {
1285                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1286                 .ksize  = 20,
1287                 .plaintext = "Test With Truncation",
1288                 .psize  = 20,
1289                 .digest = "\x4c\x1a\x03\x42\x4b\x55\xe0\x7f\xe7\xf2"
1290                           "\x7b\xe1\xd5\x8b\xb9\x32\x4a\x9a\x5a\x04",
1291         }, {
1292                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1293                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1294                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1295                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1296                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1297                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1298                         "\xaa\xaa",
1299                 .ksize  = 80,
1300                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1301                 .psize  = 54,
1302                 .digest = "\xaa\x4a\xe5\xe1\x52\x72\xd0\x0e\x95\x70"
1303                           "\x56\x37\xce\x8a\x3b\x55\xed\x40\x21\x12",
1304         }, {
1305                 .key    = "\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\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1311                         "\xaa\xaa",
1312                 .ksize  = 80,
1313                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than One "
1314                            "Block-Size Data",
1315                 .psize  = 73,
1316                 .digest = "\xe8\xe9\x9d\x0f\x45\x23\x7d\x78\x6d\x6b"
1317                           "\xba\xa7\x96\x5c\x78\x08\xbb\xff\x1a\x91",
1318         },
1319 };
1320
1321
1322 /*
1323  * SHA224 HMAC test vectors from RFC4231
1324  */
1325 #define HMAC_SHA224_TEST_VECTORS    4
1326
1327 static struct hash_testvec hmac_sha224_tv_template[] = {
1328         {
1329                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1330                         "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1331                         "\x0b\x0b\x0b\x0b",
1332                 .ksize  = 20,
1333                 /*  ("Hi There") */
1334                 .plaintext = "\x48\x69\x20\x54\x68\x65\x72\x65",
1335                 .psize  = 8,
1336                 .digest = "\x89\x6f\xb1\x12\x8a\xbb\xdf\x19"
1337                         "\x68\x32\x10\x7c\xd4\x9d\xf3\x3f"
1338                         "\x47\xb4\xb1\x16\x99\x12\xba\x4f"
1339                         "\x53\x68\x4b\x22",
1340         }, {
1341                 .key    = "Jefe",
1342                 .ksize  = 4,
1343                 /* ("what do ya want for nothing?") */
1344                 .plaintext = "\x77\x68\x61\x74\x20\x64\x6f\x20"
1345                         "\x79\x61\x20\x77\x61\x6e\x74\x20"
1346                         "\x66\x6f\x72\x20\x6e\x6f\x74\x68"
1347                         "\x69\x6e\x67\x3f",
1348                 .psize  = 28,
1349                 .digest = "\xa3\x0e\x01\x09\x8b\xc6\xdb\xbf"
1350                         "\x45\x69\x0f\x3a\x7e\x9e\x6d\x0f"
1351                         "\x8b\xbe\xa2\xa3\x9e\x61\x48\x00"
1352                         "\x8f\xd0\x5e\x44",
1353                 .np = 4,
1354                 .tap    = { 7, 7, 7, 7 }
1355         }, {
1356                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1357                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1358                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1359                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1360                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1361                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1362                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1363                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1364                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1365                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1366                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1367                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1368                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1369                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1370                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1371                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1372                         "\xaa\xaa\xaa",
1373                 .ksize  = 131,
1374                 /* ("Test Using Larger Than Block-Size Key - Hash Key First") */
1375                 .plaintext = "\x54\x65\x73\x74\x20\x55\x73\x69"
1376                         "\x6e\x67\x20\x4c\x61\x72\x67\x65"
1377                         "\x72\x20\x54\x68\x61\x6e\x20\x42"
1378                         "\x6c\x6f\x63\x6b\x2d\x53\x69\x7a"
1379                         "\x65\x20\x4b\x65\x79\x20\x2d\x20"
1380                         "\x48\x61\x73\x68\x20\x4b\x65\x79"
1381                         "\x20\x46\x69\x72\x73\x74",
1382                 .psize  = 54,
1383                 .digest = "\x95\xe9\xa0\xdb\x96\x20\x95\xad"
1384                         "\xae\xbe\x9b\x2d\x6f\x0d\xbc\xe2"
1385                         "\xd4\x99\xf1\x12\xf2\xd2\xb7\x27"
1386                         "\x3f\xa6\x87\x0e",
1387         }, {
1388                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1389                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1390                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1391                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1392                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1393                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1394                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1395                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1396                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1397                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1398                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1399                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1400                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1401                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1402                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1403                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1404                         "\xaa\xaa\xaa",
1405                 .ksize  = 131,
1406                 /* ("This is a test using a larger than block-size key and a")
1407                 (" larger than block-size data. The key needs to be")
1408                         (" hashed before being used by the HMAC algorithm.") */
1409                 .plaintext = "\x54\x68\x69\x73\x20\x69\x73\x20"
1410                         "\x61\x20\x74\x65\x73\x74\x20\x75"
1411                         "\x73\x69\x6e\x67\x20\x61\x20\x6c"
1412                         "\x61\x72\x67\x65\x72\x20\x74\x68"
1413                         "\x61\x6e\x20\x62\x6c\x6f\x63\x6b"
1414                         "\x2d\x73\x69\x7a\x65\x20\x6b\x65"
1415                         "\x79\x20\x61\x6e\x64\x20\x61\x20"
1416                         "\x6c\x61\x72\x67\x65\x72\x20\x74"
1417                         "\x68\x61\x6e\x20\x62\x6c\x6f\x63"
1418                         "\x6b\x2d\x73\x69\x7a\x65\x20\x64"
1419                         "\x61\x74\x61\x2e\x20\x54\x68\x65"
1420                         "\x20\x6b\x65\x79\x20\x6e\x65\x65"
1421                         "\x64\x73\x20\x74\x6f\x20\x62\x65"
1422                         "\x20\x68\x61\x73\x68\x65\x64\x20"
1423                         "\x62\x65\x66\x6f\x72\x65\x20\x62"
1424                         "\x65\x69\x6e\x67\x20\x75\x73\x65"
1425                         "\x64\x20\x62\x79\x20\x74\x68\x65"
1426                         "\x20\x48\x4d\x41\x43\x20\x61\x6c"
1427                         "\x67\x6f\x72\x69\x74\x68\x6d\x2e",
1428                 .psize  = 152,
1429                 .digest = "\x3a\x85\x41\x66\xac\x5d\x9f\x02"
1430                         "\x3f\x54\xd5\x17\xd0\xb3\x9d\xbd"
1431                         "\x94\x67\x70\xdb\x9c\x2b\x95\xc9"
1432                         "\xf6\xf5\x65\xd1",
1433         },
1434 };
1435
1436 /*
1437  * HMAC-SHA256 test vectors from
1438  * draft-ietf-ipsec-ciph-sha-256-01.txt
1439  */
1440 #define HMAC_SHA256_TEST_VECTORS        10
1441
1442 static struct hash_testvec hmac_sha256_tv_template[] = {
1443         {
1444                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1445                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1446                           "\x11\x12\x13\x14\x15\x16\x17\x18"
1447                           "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20",
1448                 .ksize  = 32,
1449                 .plaintext = "abc",
1450                 .psize  = 3,
1451                 .digest = "\xa2\x1b\x1f\x5d\x4c\xf4\xf7\x3a"
1452                           "\x4d\xd9\x39\x75\x0f\x7a\x06\x6a"
1453                           "\x7f\x98\xcc\x13\x1c\xb1\x6a\x66"
1454                           "\x92\x75\x90\x21\xcf\xab\x81\x81",
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 = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1462                 .psize  = 56,
1463                 .digest = "\x10\x4f\xdc\x12\x57\x32\x8f\x08"
1464                           "\x18\x4b\xa7\x31\x31\xc5\x3c\xae"
1465                           "\xe6\x98\xe3\x61\x19\x42\x11\x49"
1466                           "\xea\x8c\x71\x24\x56\x69\x7d\x30",
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                            "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1475                 .psize  = 112,
1476                 .digest = "\x47\x03\x05\xfc\x7e\x40\xfe\x34"
1477                           "\xd3\xee\xb3\xe7\x73\xd9\x5a\xab"
1478                           "\x73\xac\xf0\xfd\x06\x04\x47\xa5"
1479                           "\xeb\x45\x95\xbf\x33\xa9\xd1\xa3",
1480         }, {
1481                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1482                         "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1483                         "\x0b\x0b\x0b\x0b\x0b\x0b",
1484                 .ksize  = 32,
1485                 .plaintext = "Hi There",
1486                 .psize  = 8,
1487                 .digest = "\x19\x8a\x60\x7e\xb4\x4b\xfb\xc6"
1488                           "\x99\x03\xa0\xf1\xcf\x2b\xbd\xc5"
1489                           "\xba\x0a\xa3\xf3\xd9\xae\x3c\x1c"
1490                           "\x7a\x3b\x16\x96\xa0\xb6\x8c\xf7",
1491         }, {
1492                 .key    = "Jefe",
1493                 .ksize  = 4,
1494                 .plaintext = "what do ya want for nothing?",
1495                 .psize  = 28,
1496                 .digest = "\x5b\xdc\xc1\x46\xbf\x60\x75\x4e"
1497                           "\x6a\x04\x24\x26\x08\x95\x75\xc7"
1498                           "\x5a\x00\x3f\x08\x9d\x27\x39\x83"
1499                           "\x9d\xec\x58\xb9\x64\xec\x38\x43",
1500                 .np     = 2,
1501                 .tap    = { 14, 14 }
1502         }, {
1503                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1504                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1505                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa",
1506                 .ksize  = 32,
1507                 .plaintext = "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1508                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1509                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1510                         "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd",
1511                 .psize  = 50,
1512                 .digest = "\xcd\xcb\x12\x20\xd1\xec\xcc\xea"
1513                           "\x91\xe5\x3a\xba\x30\x92\xf9\x62"
1514                           "\xe5\x49\xfe\x6c\xe9\xed\x7f\xdc"
1515                           "\x43\x19\x1f\xbd\xe4\x5c\x30\xb0",
1516         }, {
1517                 .key    = "\x01\x02\x03\x04\x05\x06\x07\x08"
1518                           "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
1519                           "\x11\x12\x13\x14\x15\x16\x17\x18"
1520                           "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
1521                           "\x21\x22\x23\x24\x25",
1522                 .ksize  = 37,
1523                 .plaintext = "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1524                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1525                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1526                         "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd",
1527                 .psize  = 50,
1528                 .digest = "\xd4\x63\x3c\x17\xf6\xfb\x8d\x74"
1529                           "\x4c\x66\xde\xe0\xf8\xf0\x74\x55"
1530                           "\x6e\xc4\xaf\x55\xef\x07\x99\x85"
1531                           "\x41\x46\x8e\xb4\x9b\xd2\xe9\x17",
1532         }, {
1533                 .key    = "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c"
1534                         "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c"
1535                         "\x0c\x0c\x0c\x0c\x0c\x0c",
1536                 .ksize  = 32,
1537                 .plaintext = "Test With Truncation",
1538                 .psize  = 20,
1539                 .digest = "\x75\x46\xaf\x01\x84\x1f\xc0\x9b"
1540                           "\x1a\xb9\xc3\x74\x9a\x5f\x1c\x17"
1541                           "\xd4\xf5\x89\x66\x8a\x58\x7b\x27"
1542                           "\x00\xa9\xc9\x7c\x11\x93\xcf\x42",
1543         }, {
1544                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1545                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1546                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1547                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1548                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1549                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1550                         "\xaa\xaa",
1551                 .ksize  = 80,
1552                 .plaintext = "Test Using Larger Than Block-Size Key - Hash Key First",
1553                 .psize  = 54,
1554                 .digest = "\x69\x53\x02\x5e\xd9\x6f\x0c\x09"
1555                           "\xf8\x0a\x96\xf7\x8e\x65\x38\xdb"
1556                           "\xe2\xe7\xb8\x20\xe3\xdd\x97\x0e"
1557                           "\x7d\xdd\x39\x09\x1b\x32\x35\x2f",
1558         }, {
1559                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1560                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1561                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1562                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1563                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1564                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1565                         "\xaa\xaa",
1566                 .ksize  = 80,
1567                 .plaintext = "Test Using Larger Than Block-Size Key and Larger Than "
1568                            "One Block-Size Data",
1569                 .psize  = 73,
1570                 .digest = "\x63\x55\xac\x22\xe8\x90\xd0\xa3"
1571                           "\xc8\x48\x1a\x5c\xa4\x82\x5b\xc8"
1572                           "\x84\xd3\xe7\xa1\xff\x98\xa2\xfc"
1573                           "\x2a\xc7\xd8\xe0\x64\xc3\xb2\xe6",
1574         },
1575 };
1576
1577 #define XCBC_AES_TEST_VECTORS 6
1578
1579 static struct hash_testvec aes_xcbc128_tv_template[] = {
1580         {
1581                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1582                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1583                 .plaintext = zeroed_string,
1584                 .digest = "\x75\xf0\x25\x1d\x52\x8a\xc0\x1c"
1585                           "\x45\x73\xdf\xd5\x84\xd7\x9f\x29",
1586                 .psize  = 0,
1587                 .ksize  = 16,
1588         }, {
1589                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1590                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1591                 .plaintext = "\x00\x01\x02",
1592                 .digest = "\x5b\x37\x65\x80\xae\x2f\x19\xaf"
1593                           "\xe7\x21\x9c\xee\xf1\x72\x75\x6f",
1594                 .psize  = 3,
1595                 .ksize  = 16,
1596         } , {
1597                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1598                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1599                 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1600                              "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1601                 .digest = "\xd2\xa2\x46\xfa\x34\x9b\x68\xa7"
1602                           "\x99\x98\xa4\x39\x4f\xf7\xa2\x63",
1603                 .psize  = 16,
1604                 .ksize  = 16,
1605         }, {
1606                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1607                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1608                 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1609                              "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1610                              "\x10\x11\x12\x13",
1611                 .digest = "\x47\xf5\x1b\x45\x64\x96\x62\x15"
1612                           "\xb8\x98\x5c\x63\x05\x5e\xd3\x08",
1613                 .tap    = { 10, 10 },
1614                 .psize  = 20,
1615                 .np     = 2,
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\x14\x15\x16\x17"
1623                              "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
1624                 .digest = "\xf5\x4f\x0e\xc8\xd2\xb9\xf3\xd3"
1625                           "\x68\x07\x73\x4b\xd5\x28\x3f\xd4",
1626                 .psize  = 32,
1627                 .ksize  = 16,
1628         }, {
1629                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
1630                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
1631                 .plaintext = "\x00\x01\x02\x03\x04\x05\x06\x07"
1632                              "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1633                              "\x10\x11\x12\x13\x14\x15\x16\x17"
1634                              "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
1635                              "\x20\x21",
1636                 .digest = "\xbe\xcb\xb3\xbc\xcd\xb5\x18\xa3"
1637                           "\x06\x77\xd5\x48\x1f\xb6\xb4\xd8",
1638                 .tap    = { 17, 17 },
1639                 .psize  = 34,
1640                 .np     = 2,
1641                 .ksize  = 16,
1642         }
1643 };
1644
1645 /*
1646  * SHA384 HMAC test vectors from RFC4231
1647  */
1648
1649 #define HMAC_SHA384_TEST_VECTORS        4
1650
1651 static struct hash_testvec hmac_sha384_tv_template[] = {
1652         {
1653                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1654                           "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1655                           "\x0b\x0b\x0b\x0b",
1656                 .ksize  = 20,
1657                 .plaintext = "Hi There",
1658                 .psize  = 8,
1659                 .digest = "\xaf\xd0\x39\x44\xd8\x48\x95\x62"
1660                           "\x6b\x08\x25\xf4\xab\x46\x90\x7f"
1661                           "\x15\xf9\xda\xdb\xe4\x10\x1e\xc6"
1662                           "\x82\xaa\x03\x4c\x7c\xeb\xc5\x9c"
1663                           "\xfa\xea\x9e\xa9\x07\x6e\xde\x7f"
1664                           "\x4a\xf1\x52\xe8\xb2\xfa\x9c\xb6",
1665         }, {
1666                 .key    = "Jefe",
1667                 .ksize  = 4,
1668                 .plaintext = "what do ya want for nothing?",
1669                 .psize  = 28,
1670                 .digest = "\xaf\x45\xd2\xe3\x76\x48\x40\x31"
1671                           "\x61\x7f\x78\xd2\xb5\x8a\x6b\x1b"
1672                           "\x9c\x7e\xf4\x64\xf5\xa0\x1b\x47"
1673                           "\xe4\x2e\xc3\x73\x63\x22\x44\x5e"
1674                           "\x8e\x22\x40\xca\x5e\x69\xe2\xc7"
1675                           "\x8b\x32\x39\xec\xfa\xb2\x16\x49",
1676                 .np     = 4,
1677                 .tap    = { 7, 7, 7, 7 }
1678         }, {
1679                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1680                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1681                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1682                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1683                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1684                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1685                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1686                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1687                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1688                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1689                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1690                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1691                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1692                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1693                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1694                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1695                           "\xaa\xaa\xaa",
1696                 .ksize  = 131,
1697                 .plaintext = "Test Using Larger Than Block-Siz"
1698                            "e Key - Hash Key First",
1699                 .psize  = 54,
1700                 .digest = "\x4e\xce\x08\x44\x85\x81\x3e\x90"
1701                           "\x88\xd2\xc6\x3a\x04\x1b\xc5\xb4"
1702                           "\x4f\x9e\xf1\x01\x2a\x2b\x58\x8f"
1703                           "\x3c\xd1\x1f\x05\x03\x3a\xc4\xc6"
1704                           "\x0c\x2e\xf6\xab\x40\x30\xfe\x82"
1705                           "\x96\x24\x8d\xf1\x63\xf4\x49\x52",
1706         }, {
1707                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1708                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1709                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1710                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1711                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1712                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1713                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1714                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1715                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1716                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1717                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1718                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1719                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1720                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1721                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1722                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1723                           "\xaa\xaa\xaa",
1724                 .ksize  = 131,
1725                 .plaintext = "This is a test u"
1726                            "sing a larger th"
1727                            "an block-size ke"
1728                            "y and a larger t"
1729                            "han block-size d"
1730                            "ata. The key nee"
1731                            "ds to be hashed "
1732                            "before being use"
1733                            "d by the HMAC al"
1734                            "gorithm.",
1735                 .psize  = 152,
1736                 .digest = "\x66\x17\x17\x8e\x94\x1f\x02\x0d"
1737                           "\x35\x1e\x2f\x25\x4e\x8f\xd3\x2c"
1738                           "\x60\x24\x20\xfe\xb0\xb8\xfb\x9a"
1739                           "\xdc\xce\xbb\x82\x46\x1e\x99\xc5"
1740                           "\xa6\x78\xcc\x31\xe7\x99\x17\x6d"
1741                           "\x38\x60\xe6\x11\x0c\x46\x52\x3e",
1742         },
1743 };
1744
1745 /*
1746  * SHA512 HMAC test vectors from RFC4231
1747  */
1748
1749 #define HMAC_SHA512_TEST_VECTORS        4
1750
1751 static struct hash_testvec hmac_sha512_tv_template[] = {
1752         {
1753                 .key    = "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1754                           "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1755                           "\x0b\x0b\x0b\x0b",
1756                 .ksize  = 20,
1757                 .plaintext = "Hi There",
1758                 .psize  = 8,
1759                 .digest = "\x87\xaa\x7c\xde\xa5\xef\x61\x9d"
1760                           "\x4f\xf0\xb4\x24\x1a\x1d\x6c\xb0"
1761                           "\x23\x79\xf4\xe2\xce\x4e\xc2\x78"
1762                           "\x7a\xd0\xb3\x05\x45\xe1\x7c\xde"
1763                           "\xda\xa8\x33\xb7\xd6\xb8\xa7\x02"
1764                           "\x03\x8b\x27\x4e\xae\xa3\xf4\xe4"
1765                           "\xbe\x9d\x91\x4e\xeb\x61\xf1\x70"
1766                           "\x2e\x69\x6c\x20\x3a\x12\x68\x54",
1767         }, {
1768                 .key    = "Jefe",
1769                 .ksize  = 4,
1770                 .plaintext = "what do ya want for nothing?",
1771                 .psize  = 28,
1772                 .digest = "\x16\x4b\x7a\x7b\xfc\xf8\x19\xe2"
1773                           "\xe3\x95\xfb\xe7\x3b\x56\xe0\xa3"
1774                           "\x87\xbd\x64\x22\x2e\x83\x1f\xd6"
1775                           "\x10\x27\x0c\xd7\xea\x25\x05\x54"
1776                           "\x97\x58\xbf\x75\xc0\x5a\x99\x4a"
1777                           "\x6d\x03\x4f\x65\xf8\xf0\xe6\xfd"
1778                           "\xca\xea\xb1\xa3\x4d\x4a\x6b\x4b"
1779                           "\x63\x6e\x07\x0a\x38\xbc\xe7\x37",
1780                 .np     = 4,
1781                 .tap    = { 7, 7, 7, 7 }
1782         }, {
1783                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1784                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1785                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1786                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1787                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1788                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1789                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1790                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1791                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1792                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1793                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1794                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1795                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1796                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1797                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1798                           "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1799                           "\xaa\xaa\xaa",
1800                 .ksize  = 131,
1801                 .plaintext = "Test Using Large"
1802                            "r Than Block-Siz"
1803                            "e Key - Hash Key"
1804                            " First",
1805                 .psize  = 54,
1806                 .digest = "\x80\xb2\x42\x63\xc7\xc1\xa3\xeb"
1807                         "\xb7\x14\x93\xc1\xdd\x7b\xe8\xb4"
1808                         "\x9b\x46\xd1\xf4\x1b\x4a\xee\xc1"
1809                         "\x12\x1b\x01\x37\x83\xf8\xf3\x52"
1810                         "\x6b\x56\xd0\x37\xe0\x5f\x25\x98"
1811                         "\xbd\x0f\xd2\x21\x5d\x6a\x1e\x52"
1812                         "\x95\xe6\x4f\x73\xf6\x3f\x0a\xec"
1813                         "\x8b\x91\x5a\x98\x5d\x78\x65\x98",
1814         }, {
1815                 .key    = "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1816                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1817                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1818                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1819                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1820                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1821                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1822                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1823                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1824                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1825                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1826                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1827                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1828                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1829                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1830                         "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1831                         "\xaa\xaa\xaa",
1832                 .ksize  = 131,
1833                 .plaintext =
1834                           "This is a test u"
1835                           "sing a larger th"
1836                           "an block-size ke"
1837                           "y and a larger t"
1838                           "han block-size d"
1839                           "ata. The key nee"
1840                           "ds to be hashed "
1841                           "before being use"
1842                           "d by the HMAC al"
1843                           "gorithm.",
1844                 .psize  = 152,
1845                 .digest = "\xe3\x7b\x6a\x77\x5d\xc8\x7d\xba"
1846                         "\xa4\xdf\xa9\xf9\x6e\x5e\x3f\xfd"
1847                         "\xde\xbd\x71\xf8\x86\x72\x89\x86"
1848                         "\x5d\xf5\xa3\x2d\x20\xcd\xc9\x44"
1849                         "\xb6\x02\x2c\xac\x3c\x49\x82\xb1"
1850                         "\x0d\x5e\xeb\x55\xc3\xe4\xde\x15"
1851                         "\x13\x46\x76\xfb\x6d\xe0\x44\x60"
1852                         "\x65\xc9\x74\x40\xfa\x8c\x6a\x58",
1853         },
1854 };
1855
1856 /*
1857  * DES test vectors.
1858  */
1859 #define DES_ENC_TEST_VECTORS            10
1860 #define DES_DEC_TEST_VECTORS            4
1861 #define DES_CBC_ENC_TEST_VECTORS        5
1862 #define DES_CBC_DEC_TEST_VECTORS        4
1863 #define DES3_EDE_ENC_TEST_VECTORS       3
1864 #define DES3_EDE_DEC_TEST_VECTORS       3
1865 #define DES3_EDE_CBC_ENC_TEST_VECTORS   1
1866 #define DES3_EDE_CBC_DEC_TEST_VECTORS   1
1867
1868 static struct cipher_testvec des_enc_tv_template[] = {
1869         { /* From Applied Cryptography */
1870                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1871                 .klen   = 8,
1872                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1873                 .ilen   = 8,
1874                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1875                 .rlen   = 8,
1876         }, { /* Same key, different plaintext block */
1877                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1878                 .klen   = 8,
1879                 .input  = "\x22\x33\x44\x55\x66\x77\x88\x99",
1880                 .ilen   = 8,
1881                 .result = "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1882                 .rlen   = 8,
1883         }, { /* Sbox test from NBS */
1884                 .key    = "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57",
1885                 .klen   = 8,
1886                 .input  = "\x01\xa1\xd6\xd0\x39\x77\x67\x42",
1887                 .ilen   = 8,
1888                 .result = "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
1889                 .rlen   = 8,
1890         }, { /* Three blocks */
1891                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1892                 .klen   = 8,
1893                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1894                           "\x22\x33\x44\x55\x66\x77\x88\x99"
1895                           "\xca\xfe\xba\xbe\xfe\xed\xbe\xef",
1896                 .ilen   = 24,
1897                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1898                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
1899                           "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90",
1900                 .rlen   = 24,
1901         }, { /* Weak key */
1902                 .fail   = 1,
1903                 .wk     = 1,
1904                 .key    = "\x01\x01\x01\x01\x01\x01\x01\x01",
1905                 .klen   = 8,
1906                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1907                 .ilen   = 8,
1908                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1909                 .rlen   = 8,
1910         }, { /* Two blocks -- for testing encryption across pages */
1911                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1912                 .klen   = 8,
1913                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1914                           "\x22\x33\x44\x55\x66\x77\x88\x99",
1915                 .ilen   = 16,
1916                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1917                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1918                 .rlen   = 16,
1919                 .np     = 2,
1920                 .tap    = { 8, 8 }
1921         }, { /* Four blocks -- for testing encryption with chunking */
1922                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1923                 .klen   = 8,
1924                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1925                           "\x22\x33\x44\x55\x66\x77\x88\x99"
1926                           "\xca\xfe\xba\xbe\xfe\xed\xbe\xef"
1927                           "\x22\x33\x44\x55\x66\x77\x88\x99",
1928                 .ilen   = 32,
1929                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1930                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
1931                           "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90"
1932                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1933                 .rlen   = 32,
1934                 .np     = 3,
1935                 .tap    = { 14, 10, 8 }
1936         }, {
1937                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1938                 .klen   = 8,
1939                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1940                           "\x22\x33\x44\x55\x66\x77\x88\x99"
1941                           "\xca\xfe\xba\xbe\xfe\xed\xbe\xef",
1942                 .ilen   = 24,
1943                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1944                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b"
1945                           "\xb4\x99\x26\xf7\x1f\xe1\xd4\x90",
1946                 .rlen   = 24,
1947                 .np     = 4,
1948                 .tap    = { 2, 1, 3, 18 }
1949         }, {
1950                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1951                 .klen   = 8,
1952                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1953                           "\x22\x33\x44\x55\x66\x77\x88\x99",
1954                 .ilen   = 16,
1955                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1956                           "\xf7\x9c\x89\x2a\x33\x8f\x4a\x8b",
1957                 .rlen   = 16,
1958                 .np     = 5,
1959                 .tap    = { 2, 2, 2, 2, 8 }
1960         }, {
1961                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1962                 .klen   = 8,
1963                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1964                 .ilen   = 8,
1965                 .result = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1966                 .rlen   = 8,
1967                 .np     = 8,
1968                 .tap    = { 1, 1, 1, 1, 1, 1, 1, 1 }
1969         },
1970 };
1971
1972 static struct cipher_testvec des_dec_tv_template[] = {
1973         { /* From Applied Cryptography */
1974                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1975                 .klen   = 8,
1976                 .input  = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d",
1977                 .ilen   = 8,
1978                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7",
1979                 .rlen   = 8,
1980         }, { /* Sbox test from NBS */
1981                 .key    = "\x7c\xa1\x10\x45\x4a\x1a\x6e\x57",
1982                 .klen   = 8,
1983                 .input  = "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
1984                 .ilen   = 8,
1985                 .result = "\x01\xa1\xd6\xd0\x39\x77\x67\x42",
1986                 .rlen   = 8,
1987         }, { /* Two blocks, for chunking test */
1988                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
1989                 .klen   = 8,
1990                 .input  = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
1991                           "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
1992                 .ilen   = 16,
1993                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
1994                           "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5",
1995                 .rlen   = 16,
1996                 .np     = 2,
1997                 .tap    = { 8, 8 }
1998         }, {
1999                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2000                 .klen   = 8,
2001                 .input  = "\xc9\x57\x44\x25\x6a\x5e\xd3\x1d"
2002                           "\x69\x0f\x5b\x0d\x9a\x26\x93\x9b",
2003                 .ilen   = 16,
2004                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xe7"
2005                           "\xa3\x99\x7b\xca\xaf\x69\xa0\xf5",
2006                 .rlen   = 16,
2007                 .np     = 3,
2008                 .tap    = { 3, 12, 1 }
2009         },
2010 };
2011
2012 static struct cipher_testvec des_cbc_enc_tv_template[] = {
2013         { /* From OpenSSL */
2014                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2015                 .klen   = 8,
2016                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2017                 .input  = "\x37\x36\x35\x34\x33\x32\x31\x20"
2018                           "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2019                           "\x68\x65\x20\x74\x69\x6d\x65\x20",
2020                 .ilen   = 24,
2021                 .result = "\xcc\xd1\x73\xff\xab\x20\x39\xf4"
2022                           "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb"
2023                           "\x46\x8e\x91\x15\x78\x88\xba\x68",
2024                 .rlen   = 24,
2025         }, { /* FIPS Pub 81 */
2026                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2027                 .klen   = 8,
2028                 .iv     = "\x12\x34\x56\x78\x90\xab\xcd\xef",
2029                 .input  = "\x4e\x6f\x77\x20\x69\x73\x20\x74",
2030                 .ilen   = 8,
2031                 .result = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2032                 .rlen   = 8,
2033         }, {
2034                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2035                 .klen   = 8,
2036                 .iv     = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2037                 .input  = "\x68\x65\x20\x74\x69\x6d\x65\x20",
2038                 .ilen   = 8,
2039                 .result = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2040                 .rlen   = 8,
2041         }, {
2042                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2043                 .klen   = 8,
2044                 .iv     = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2045                 .input  = "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2046                 .ilen   = 8,
2047                 .result = "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2048                 .rlen   = 8,
2049         }, { /* Copy of openssl vector for chunk testing */
2050              /* From OpenSSL */
2051                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2052                 .klen   = 8,
2053                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2054                 .input  = "\x37\x36\x35\x34\x33\x32\x31\x20"
2055                           "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2056                           "\x68\x65\x20\x74\x69\x6d\x65\x20",
2057                 .ilen   = 24,
2058                 .result = "\xcc\xd1\x73\xff\xab\x20\x39\xf4"
2059                           "\xac\xd8\xae\xfd\xdf\xd8\xa1\xeb"
2060                           "\x46\x8e\x91\x15\x78\x88\xba\x68",
2061                 .rlen   = 24,
2062                 .np     = 2,
2063                 .tap    = { 13, 11 }
2064         },
2065 };
2066
2067 static struct cipher_testvec des_cbc_dec_tv_template[] = {
2068         { /* FIPS Pub 81 */
2069                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2070                 .klen   = 8,
2071                 .iv     = "\x12\x34\x56\x78\x90\xab\xcd\xef",
2072                 .input  = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2073                 .ilen   = 8,
2074                 .result = "\x4e\x6f\x77\x20\x69\x73\x20\x74",
2075                 .rlen   = 8,
2076         }, {
2077                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2078                 .klen   = 8,
2079                 .iv     = "\xe5\xc7\xcd\xde\x87\x2b\xf2\x7c",
2080                 .input  = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2081                 .ilen   = 8,
2082                 .result = "\x68\x65\x20\x74\x69\x6d\x65\x20",
2083                 .rlen   = 8,
2084         }, {
2085                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2086                 .klen   = 8,
2087                 .iv     = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2088                 .input  = "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2089                 .ilen   = 8,
2090                 .result = "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2091                 .rlen   = 8,
2092         }, { /* Copy of above, for chunk testing */
2093                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2094                 .klen   = 8,
2095                 .iv     = "\x43\xe9\x34\x00\x8c\x38\x9c\x0f",
2096                 .input  = "\x68\x37\x88\x49\x9a\x7c\x05\xf6",
2097                 .ilen   = 8,
2098                 .result = "\x66\x6f\x72\x20\x61\x6c\x6c\x20",
2099                 .rlen   = 8,
2100                 .np     = 2,
2101                 .tap    = { 4, 4 }
2102         },
2103 };
2104
2105 static struct cipher_testvec des3_ede_enc_tv_template[] = {
2106         { /* These are from openssl */
2107                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2108                           "\x55\x55\x55\x55\x55\x55\x55\x55"
2109                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2110                 .klen   = 24,
2111                 .input  = "\x73\x6f\x6d\x65\x64\x61\x74\x61",
2112                 .ilen   = 8,
2113                 .result = "\x18\xd7\x48\xe5\x63\x62\x05\x72",
2114                 .rlen   = 8,
2115         }, {
2116                 .key    = "\x03\x52\x02\x07\x67\x20\x82\x17"
2117                           "\x86\x02\x87\x66\x59\x08\x21\x98"
2118                           "\x64\x05\x6a\xbd\xfe\xa9\x34\x57",
2119                 .klen   = 24,
2120                 .input  = "\x73\x71\x75\x69\x67\x67\x6c\x65",
2121                 .ilen   = 8,
2122                 .result = "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30",
2123                 .rlen   = 8,
2124         }, {
2125                 .key    = "\x10\x46\x10\x34\x89\x98\x80\x20"
2126                           "\x91\x07\xd0\x15\x89\x19\x01\x01"
2127                           "\x19\x07\x92\x10\x98\x1a\x01\x01",
2128                 .klen   = 24,
2129                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
2130                 .ilen   = 8,
2131                 .result = "\xe1\xef\x62\xc3\x32\xfe\x82\x5b",
2132                 .rlen   = 8,
2133         },
2134 };
2135
2136 static struct cipher_testvec des3_ede_dec_tv_template[] = {
2137         { /* These are from openssl */
2138                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2139                           "\x55\x55\x55\x55\x55\x55\x55\x55"
2140                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2141                 .klen   = 24,
2142                 .input  = "\x18\xd7\x48\xe5\x63\x62\x05\x72",
2143                 .ilen   = 8,
2144                 .result = "\x73\x6f\x6d\x65\x64\x61\x74\x61",
2145                 .rlen   = 8,
2146         }, {
2147                 .key    = "\x03\x52\x02\x07\x67\x20\x82\x17"
2148                           "\x86\x02\x87\x66\x59\x08\x21\x98"
2149                           "\x64\x05\x6a\xbd\xfe\xa9\x34\x57",
2150                 .klen   = 24,
2151                 .input  = "\xc0\x7d\x2a\x0f\xa5\x66\xfa\x30",
2152                 .ilen   = 8,
2153                 .result = "\x73\x71\x75\x69\x67\x67\x6c\x65",
2154                 .rlen   = 8,
2155         }, {
2156                 .key    = "\x10\x46\x10\x34\x89\x98\x80\x20"
2157                           "\x91\x07\xd0\x15\x89\x19\x01\x01"
2158                           "\x19\x07\x92\x10\x98\x1a\x01\x01",
2159                 .klen   = 24,
2160                 .input  = "\xe1\xef\x62\xc3\x32\xfe\x82\x5b",
2161                 .ilen   = 8,
2162                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
2163                 .rlen   = 8,
2164         },
2165 };
2166
2167 static struct cipher_testvec des3_ede_cbc_enc_tv_template[] = {
2168         { /* Generated from openssl */
2169                 .key    = "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24"
2170                           "\x44\x4D\x99\x5A\x12\xD6\x40\xC0"
2171                           "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8",
2172                 .klen   = 24,
2173                 .iv     = "\x7D\x33\x88\x93\x0F\x93\xB2\x42",
2174                 .input  = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e"
2175                           "\x53\x20\x63\x65\x65\x72\x73\x74"
2176                           "\x54\x20\x6f\x6f\x4d\x20\x6e\x61"
2177                           "\x20\x79\x65\x53\x72\x63\x74\x65"
2178                           "\x20\x73\x6f\x54\x20\x6f\x61\x4d"
2179                           "\x79\x6e\x53\x20\x63\x65\x65\x72"
2180                           "\x73\x74\x54\x20\x6f\x6f\x4d\x20"
2181                           "\x6e\x61\x20\x79\x65\x53\x72\x63"
2182                           "\x74\x65\x20\x73\x6f\x54\x20\x6f"
2183                           "\x61\x4d\x79\x6e\x53\x20\x63\x65"
2184                           "\x65\x72\x73\x74\x54\x20\x6f\x6f"
2185                           "\x4d\x20\x6e\x61\x20\x79\x65\x53"
2186                           "\x72\x63\x74\x65\x20\x73\x6f\x54"
2187                           "\x20\x6f\x61\x4d\x79\x6e\x53\x20"
2188                           "\x63\x65\x65\x72\x73\x74\x54\x20"
2189                           "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79",
2190                 .ilen   = 128,
2191                 .result = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4"
2192                           "\x67\x17\x21\xc7\x6e\x8a\xd5\x49"
2193                           "\x74\xb3\x49\x05\xc5\x1c\xd0\xed"
2194                           "\x12\x56\x5c\x53\x96\xb6\x00\x7d"
2195                           "\x90\x48\xfc\xf5\x8d\x29\x39\xcc"
2196                           "\x8a\xd5\x35\x18\x36\x23\x4e\xd7"
2197                           "\x76\xd1\xda\x0c\x94\x67\xbb\x04"
2198                           "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea"
2199                           "\x22\x64\x47\xaa\x8f\x75\x13\xbf"
2200                           "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a"
2201                           "\x71\x63\x2e\x89\x7b\x1e\x12\xca"
2202                           "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a"
2203                           "\xd6\xf9\x21\x31\x62\x44\x45\xa6"
2204                           "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc"
2205                           "\x9d\xde\xa5\x70\xe9\x42\x45\x8a"
2206                           "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19",
2207                 .rlen   = 128,
2208         },
2209 };
2210
2211 static struct cipher_testvec des3_ede_cbc_dec_tv_template[] = {
2212         { /* Generated from openssl */
2213                 .key    = "\xE9\xC0\xFF\x2E\x76\x0B\x64\x24"
2214                           "\x44\x4D\x99\x5A\x12\xD6\x40\xC0"
2215                           "\xEA\xC2\x84\xE8\x14\x95\xDB\xE8",
2216                 .klen   = 24,
2217                 .iv     = "\x7D\x33\x88\x93\x0F\x93\xB2\x42",
2218                 .input  = "\x0e\x2d\xb6\x97\x3c\x56\x33\xf4"
2219                           "\x67\x17\x21\xc7\x6e\x8a\xd5\x49"
2220                           "\x74\xb3\x49\x05\xc5\x1c\xd0\xed"
2221                           "\x12\x56\x5c\x53\x96\xb6\x00\x7d"
2222                           "\x90\x48\xfc\xf5\x8d\x29\x39\xcc"
2223                           "\x8a\xd5\x35\x18\x36\x23\x4e\xd7"
2224                           "\x76\xd1\xda\x0c\x94\x67\xbb\x04"
2225                           "\x8b\xf2\x03\x6c\xa8\xcf\xb6\xea"
2226                           "\x22\x64\x47\xaa\x8f\x75\x13\xbf"
2227                           "\x9f\xc2\xc3\xf0\xc9\x56\xc5\x7a"
2228                           "\x71\x63\x2e\x89\x7b\x1e\x12\xca"
2229                           "\xe2\x5f\xaf\xd8\xa4\xf8\xc9\x7a"
2230                           "\xd6\xf9\x21\x31\x62\x44\x45\xa6"
2231                           "\xd6\xbc\x5a\xd3\x2d\x54\x43\xcc"
2232                           "\x9d\xde\xa5\x70\xe9\x42\x45\x8a"
2233                           "\x6b\xfa\xb1\x91\x13\xb0\xd9\x19",
2234                 .ilen   = 128,
2235                 .result = "\x6f\x54\x20\x6f\x61\x4d\x79\x6e"
2236                           "\x53\x20\x63\x65\x65\x72\x73\x74"
2237                           "\x54\x20\x6f\x6f\x4d\x20\x6e\x61"
2238                           "\x20\x79\x65\x53\x72\x63\x74\x65"
2239                           "\x20\x73\x6f\x54\x20\x6f\x61\x4d"
2240                           "\x79\x6e\x53\x20\x63\x65\x65\x72"
2241                           "\x73\x74\x54\x20\x6f\x6f\x4d\x20"
2242                           "\x6e\x61\x20\x79\x65\x53\x72\x63"
2243                           "\x74\x65\x20\x73\x6f\x54\x20\x6f"
2244                           "\x61\x4d\x79\x6e\x53\x20\x63\x65"
2245                           "\x65\x72\x73\x74\x54\x20\x6f\x6f"
2246                           "\x4d\x20\x6e\x61\x20\x79\x65\x53"
2247                           "\x72\x63\x74\x65\x20\x73\x6f\x54"
2248                           "\x20\x6f\x61\x4d\x79\x6e\x53\x20"
2249                           "\x63\x65\x65\x72\x73\x74\x54\x20"
2250                           "\x6f\x6f\x4d\x20\x6e\x61\x0a\x79",
2251                 .rlen   = 128,
2252         },
2253 };
2254
2255 /*
2256  * Blowfish test vectors.
2257  */
2258 #define BF_ENC_TEST_VECTORS     6
2259 #define BF_DEC_TEST_VECTORS     6
2260 #define BF_CBC_ENC_TEST_VECTORS 1
2261 #define BF_CBC_DEC_TEST_VECTORS 1
2262
2263 static struct cipher_testvec bf_enc_tv_template[] = {
2264         { /* DES test vectors from OpenSSL */
2265                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
2266                 .klen   = 8,
2267                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
2268                 .ilen   = 8,
2269                 .result = "\x4e\xf9\x97\x45\x61\x98\xdd\x78",
2270                 .rlen   = 8,
2271         }, {
2272                 .key    = "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e",
2273                 .klen   = 8,
2274                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2275                 .ilen   = 8,
2276                 .result = "\xa7\x90\x79\x51\x08\xea\x3c\xae",
2277                 .rlen   = 8,
2278         }, {
2279                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2280                 .klen   = 8,
2281                 .input  = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2282                 .ilen   = 8,
2283                 .result = "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82",
2284                 .rlen   = 8,
2285         }, { /* Vary the keylength... */
2286                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2287                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f",
2288                 .klen   = 16,
2289                 .input  = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2290                 .ilen   = 8,
2291                 .result = "\x93\x14\x28\x87\xee\x3b\xe1\x5c",
2292                 .rlen   = 8,
2293         }, {
2294                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2295                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2296                           "\x00\x11\x22\x33\x44",
2297                 .klen   = 21,
2298                 .input  = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2299                 .ilen   = 8,
2300                 .result = "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f",
2301                 .rlen   = 8,
2302         }, { /* Generated with bf488 */
2303                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2304                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2305                           "\x00\x11\x22\x33\x44\x55\x66\x77"
2306                           "\x04\x68\x91\x04\xc2\xfd\x3b\x2f"
2307                           "\x58\x40\x23\x64\x1a\xba\x61\x76"
2308                           "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e"
2309                           "\xff\xff\xff\xff\xff\xff\xff\xff",
2310                 .klen   = 56,
2311                 .input  = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2312                 .ilen   = 8,
2313                 .result = "\xc0\x45\x04\x01\x2e\x4e\x1f\x53",
2314                 .rlen   = 8,
2315         },
2316 };
2317
2318 static struct cipher_testvec bf_dec_tv_template[] = {
2319         { /* DES test vectors from OpenSSL */
2320                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
2321                 .klen   = 8,
2322                 .input  = "\x4e\xf9\x97\x45\x61\x98\xdd\x78",
2323                 .ilen   = 8,
2324                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
2325                 .rlen   = 8,
2326         }, {
2327                 .key    = "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e",
2328                 .klen   = 8,
2329                 .input  = "\xa7\x90\x79\x51\x08\xea\x3c\xae",
2330                 .ilen   = 8,
2331                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
2332                 .rlen   = 8,
2333         }, {
2334                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2335                 .klen   = 8,
2336                 .input  = "\xe8\x7a\x24\x4e\x2c\xc8\x5e\x82",
2337                 .ilen   = 8,
2338                 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2339                 .rlen   = 8,
2340         }, { /* Vary the keylength... */
2341                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2342                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f",
2343                 .klen   = 16,
2344                 .input  = "\x93\x14\x28\x87\xee\x3b\xe1\x5c",
2345                 .ilen   = 8,
2346                 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2347                 .rlen   = 8,
2348         }, {
2349                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2350                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2351                           "\x00\x11\x22\x33\x44",
2352                 .klen   = 21,
2353                 .input  = "\xe6\xf5\x1e\xd7\x9b\x9d\xb2\x1f",
2354                 .ilen   = 8,
2355                 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2356                 .rlen   = 8,
2357         }, { /* Generated with bf488, using OpenSSL, Libgcrypt and Nettle */
2358                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87"
2359                           "\x78\x69\x5a\x4b\x3c\x2d\x1e\x0f"
2360                           "\x00\x11\x22\x33\x44\x55\x66\x77"
2361                           "\x04\x68\x91\x04\xc2\xfd\x3b\x2f"
2362                           "\x58\x40\x23\x64\x1a\xba\x61\x76"
2363                           "\x1f\x1f\x1f\x1f\x0e\x0e\x0e\x0e"
2364                           "\xff\xff\xff\xff\xff\xff\xff\xff",
2365                 .klen   = 56,
2366                 .input  = "\xc0\x45\x04\x01\x2e\x4e\x1f\x53",
2367                 .ilen   = 8,
2368                 .result = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2369                 .rlen   = 8,
2370         },
2371 };
2372
2373 static struct cipher_testvec bf_cbc_enc_tv_template[] = {
2374         { /* From OpenSSL */
2375                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2376                           "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2377                 .klen   = 16,
2378                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2379                 .input  = "\x37\x36\x35\x34\x33\x32\x31\x20"
2380                           "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2381                           "\x68\x65\x20\x74\x69\x6d\x65\x20"
2382                           "\x66\x6f\x72\x20\x00\x00\x00\x00",
2383                 .ilen   = 32,
2384                 .result = "\x6b\x77\xb4\xd6\x30\x06\xde\xe6"
2385                           "\x05\xb1\x56\xe2\x74\x03\x97\x93"
2386                           "\x58\xde\xb9\xe7\x15\x46\x16\xd9"
2387                           "\x59\xf1\x65\x2b\xd5\xff\x92\xcc",
2388                 .rlen   = 32,
2389         },
2390 };
2391
2392 static struct cipher_testvec bf_cbc_dec_tv_template[] = {
2393         { /* From OpenSSL */
2394                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2395                           "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
2396                 .klen   = 16,
2397                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
2398                 .input  = "\x6b\x77\xb4\xd6\x30\x06\xde\xe6"
2399                           "\x05\xb1\x56\xe2\x74\x03\x97\x93"
2400                           "\x58\xde\xb9\xe7\x15\x46\x16\xd9"
2401                           "\x59\xf1\x65\x2b\xd5\xff\x92\xcc",
2402                 .ilen   = 32,
2403                 .result = "\x37\x36\x35\x34\x33\x32\x31\x20"
2404                           "\x4e\x6f\x77\x20\x69\x73\x20\x74"
2405                           "\x68\x65\x20\x74\x69\x6d\x65\x20"
2406                           "\x66\x6f\x72\x20\x00\x00\x00\x00",
2407                 .rlen   = 32,
2408         },
2409 };
2410
2411 /*
2412  * Twofish test vectors.
2413  */
2414 #define TF_ENC_TEST_VECTORS             3
2415 #define TF_DEC_TEST_VECTORS             3
2416 #define TF_CBC_ENC_TEST_VECTORS         4
2417 #define TF_CBC_DEC_TEST_VECTORS         4
2418
2419 static struct cipher_testvec tf_enc_tv_template[] = {
2420         {
2421                 .key    = zeroed_string,
2422                 .klen   = 16,
2423                 .input  = zeroed_string,
2424                 .ilen   = 16,
2425                 .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2426                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2427                 .rlen   = 16,
2428         }, {
2429                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2430                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2431                           "\x00\x11\x22\x33\x44\x55\x66\x77",
2432                 .klen   = 24,
2433                 .input  = zeroed_string,
2434                 .ilen   = 16,
2435                 .result = "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf"
2436                           "\x50\x1f\x13\xb8\x92\xbd\x22\x48",
2437                 .rlen   = 16,
2438         }, {
2439                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2440                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2441                           "\x00\x11\x22\x33\x44\x55\x66\x77"
2442                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2443                 .klen   = 32,
2444                 .input  = zeroed_string,
2445                 .ilen   = 16,
2446                 .result = "\x37\x52\x7b\xe0\x05\x23\x34\xb8"
2447                           "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20",
2448                 .rlen   = 16,
2449         },
2450 };
2451
2452 static struct cipher_testvec tf_dec_tv_template[] = {
2453         {
2454                 .key    = zeroed_string,
2455                 .klen   = 16,
2456                 .input  = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2457                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2458                 .ilen   = 16,
2459                 .result = zeroed_string,
2460                 .rlen   = 16,
2461         }, {
2462                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2463                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2464                           "\x00\x11\x22\x33\x44\x55\x66\x77",
2465                 .klen   = 24,
2466                 .input  = "\xcf\xd1\xd2\xe5\xa9\xbe\x9c\xdf"
2467                           "\x50\x1f\x13\xb8\x92\xbd\x22\x48",
2468                 .ilen   = 16,
2469                 .result = zeroed_string,
2470                 .rlen   = 16,
2471         }, {
2472                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
2473                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
2474                           "\x00\x11\x22\x33\x44\x55\x66\x77"
2475                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2476                 .klen   = 32,
2477                 .input  = "\x37\x52\x7b\xe0\x05\x23\x34\xb8"
2478                           "\x9f\x0c\xfc\xca\xe8\x7c\xfa\x20",
2479                 .ilen   = 16,
2480                 .result = zeroed_string,
2481                 .rlen   = 16,
2482         },
2483 };
2484
2485 static struct cipher_testvec tf_cbc_enc_tv_template[] = {
2486         { /* Generated with Nettle */
2487                 .key    = zeroed_string,
2488                 .klen   = 16,
2489                 .iv     = zeroed_string,
2490                 .input  = zeroed_string,
2491                 .ilen   = 16,
2492                 .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2493                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2494                 .rlen   = 16,
2495         }, {
2496                 .key    = zeroed_string,
2497                 .klen   = 16,
2498                 .iv     = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2499                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2500                 .input  = zeroed_string,
2501                 .ilen   = 16,
2502                 .result = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2503                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2504                 .rlen   = 16,
2505         }, {
2506                 .key    = zeroed_string,
2507                 .klen   = 16,
2508                 .iv     = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2509                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2510                 .input  = zeroed_string,
2511                 .ilen   = 16,
2512                 .result = "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2513                           "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2514                 .rlen   = 16,
2515         }, {
2516                 .key    = zeroed_string,
2517                 .klen   = 16,
2518                 .iv     = zeroed_string,
2519                 .input  = zeroed_string,
2520                 .ilen   = 48,
2521                 .result = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2522                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a"
2523                           "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2524                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19"
2525                           "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2526                           "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2527                 .rlen   = 48,
2528         },
2529 };
2530
2531 static struct cipher_testvec tf_cbc_dec_tv_template[] = {
2532         { /* Reverse of the first four above */
2533                 .key    = zeroed_string,
2534                 .klen   = 16,
2535                 .iv     = zeroed_string,
2536                 .input  = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2537                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2538                 .ilen   = 16,
2539                 .result = zeroed_string,
2540                 .rlen   = 16,
2541         }, {
2542                 .key    = zeroed_string,
2543                 .klen   = 16,
2544                 .iv     = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2545                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a",
2546                 .input  = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2547                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2548                 .ilen   = 16,
2549                 .result = zeroed_string,
2550                 .rlen   = 16,
2551         }, {
2552                 .key    = zeroed_string,
2553                 .klen   = 16,
2554                 .iv     = "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2555                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19",
2556                 .input  = "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2557                           "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2558                 .ilen   = 16,
2559                 .result = zeroed_string,
2560                 .rlen   = 16,
2561         }, {
2562                 .key    = zeroed_string,
2563                 .klen   = 16,
2564                 .iv     = zeroed_string,
2565                 .input  = "\x9f\x58\x9f\x5c\xf6\x12\x2c\x32"
2566                           "\xb6\xbf\xec\x2f\x2a\xe8\xc3\x5a"
2567                           "\xd4\x91\xdb\x16\xe7\xb1\xc3\x9e"
2568                           "\x86\xcb\x08\x6b\x78\x9f\x54\x19"
2569                           "\x05\xef\x8c\x61\xa8\x11\x58\x26"
2570                           "\x34\xba\x5c\xb7\x10\x6a\xa6\x41",
2571                 .ilen   = 48,
2572                 .result = zeroed_string,
2573                 .rlen   = 48,
2574         },
2575 };
2576
2577 /*
2578  * Serpent test vectors.  These are backwards because Serpent writes
2579  * octet sequences in right-to-left mode.
2580  */
2581 #define SERPENT_ENC_TEST_VECTORS        4
2582 #define SERPENT_DEC_TEST_VECTORS        4
2583
2584 #define TNEPRES_ENC_TEST_VECTORS        4
2585 #define TNEPRES_DEC_TEST_VECTORS        4
2586
2587 static struct cipher_testvec serpent_enc_tv_template[] = {
2588         {
2589                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
2590                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2591                 .ilen   = 16,
2592                 .result = "\x12\x07\xfc\xce\x9b\xd0\xd6\x47"
2593                           "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2",
2594                 .rlen   = 16,
2595         }, {
2596                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2597                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2598                 .klen   = 16,
2599                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
2600                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2601                 .ilen   = 16,
2602                 .result = "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c"
2603                           "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d",
2604                 .rlen   = 16,
2605         }, {
2606                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2607                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2608                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2609                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2610                 .klen   = 32,
2611                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
2612                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2613                 .ilen   = 16,
2614                 .result = "\xde\x26\x9f\xf8\x33\xe4\x32\xb8"
2615                           "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c",
2616                 .rlen   = 16,
2617         }, {
2618                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2619                 .klen   = 16,
2620                 .input  = zeroed_string,
2621                 .ilen   = 16,
2622                 .result = "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c"
2623                           "\x05\x34\x5a\x9d\xad\xbf\xaf\x49",
2624                 .rlen   = 16,
2625         },
2626 };
2627
2628 static struct cipher_testvec tnepres_enc_tv_template[] = {
2629         { /* KeySize=128, PT=0, I=1 */
2630                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
2631                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2632                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
2633                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2634                 .klen   = 16,
2635                 .ilen   = 16,
2636                 .result = "\x49\xaf\xbf\xad\x9d\x5a\x34\x05"
2637                           "\x2c\xd8\xff\xa5\x98\x6b\xd2\xdd",
2638                 .rlen   = 16,
2639         }, { /* KeySize=192, PT=0, I=1 */
2640                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
2641                           "\x00\x00\x00\x00\x00\x00\x00\x00"
2642                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2643                 .klen   = 24,
2644                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
2645                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2646                 .ilen   = 16,
2647                 .result = "\xe7\x8e\x54\x02\xc7\x19\x55\x68"
2648                           "\xac\x36\x78\xf7\xa3\xf6\x0c\x66",
2649                 .rlen   = 16,
2650         }, { /* KeySize=256, PT=0, I=1 */
2651                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
2652                           "\x00\x00\x00\x00\x00\x00\x00\x00"
2653                           "\x00\x00\x00\x00\x00\x00\x00\x00"
2654                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2655                 .klen   = 32,
2656                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
2657                           "\x00\x00\x00\x00\x00\x00\x00\x00",
2658                 .ilen   = 16,
2659                 .result = "\xab\xed\x96\xe7\x66\xbf\x28\xcb"
2660                           "\xc0\xeb\xd2\x1a\x82\xef\x08\x19",
2661                 .rlen   = 16,
2662         }, { /* KeySize=256, I=257 */
2663                 .key    = "\x1f\x1e\x1d\x1c\x1b\x1a\x19\x18"
2664                           "\x17\x16\x15\x14\x13\x12\x11\x10"
2665                           "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08"
2666                           "\x07\x06\x05\x04\x03\x02\x01\x00",
2667                 .klen   = 32,
2668                 .input  = "\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08"
2669                           "\x07\x06\x05\x04\x03\x02\x01\x00",
2670                 .ilen   = 16,
2671                 .result = "\x5c\xe7\x1c\x70\xd2\x88\x2e\x5b"
2672                           "\xb8\x32\xe4\x33\xf8\x9f\x26\xde",
2673                 .rlen   = 16,
2674         },
2675 };
2676
2677
2678 static struct cipher_testvec serpent_dec_tv_template[] = {
2679         {
2680                 .input  = "\x12\x07\xfc\xce\x9b\xd0\xd6\x47"
2681                           "\x6a\xe9\x8f\xbe\xd1\x43\xa0\xe2",
2682                 .ilen   = 16,
2683                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2684                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2685                 .rlen   = 16,
2686         }, {
2687                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2688                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2689                 .klen   = 16,
2690                 .input  = "\x4c\x7d\x8a\x32\x80\x72\xa2\x2c"
2691                           "\x82\x3e\x4a\x1f\x3a\xcd\xa1\x6d",
2692                 .ilen   = 16,
2693                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2694                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2695                 .rlen   = 16,
2696         }, {
2697                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2698                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2699                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2700                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2701                 .klen   = 32,
2702                 .input  = "\xde\x26\x9f\xf8\x33\xe4\x32\xb8"
2703                           "\x5b\x2e\x88\xd2\x70\x1c\xe7\x5c",
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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2710                 .klen   = 16,
2711                 .input  = "\xdd\xd2\x6b\x98\xa5\xff\xd8\x2c"
2712                           "\x05\x34\x5a\x9d\xad\xbf\xaf\x49",
2713                 .ilen   = 16,
2714                 .result = zeroed_string,
2715                 .rlen   = 16,
2716         },
2717 };
2718
2719 static struct cipher_testvec tnepres_dec_tv_template[] = {
2720         {
2721                 .input  = "\x41\xcc\x6b\x31\x59\x31\x45\x97"
2722                           "\x6d\x6f\xbb\x38\x4b\x37\x21\x28",
2723                 .ilen   = 16,
2724                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2725                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2726                 .rlen   = 16,
2727         }, {
2728                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2729                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2730                 .klen   = 16,
2731                 .input  = "\xea\xf4\xd7\xfc\xd8\x01\x34\x47"
2732                           "\x81\x45\x0b\xfa\x0c\xd6\xad\x6e",
2733                 .ilen   = 16,
2734                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
2735                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2736                 .rlen   = 16,
2737         }, {
2738                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2739                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2740                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2741                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2742                 .klen   = 32,
2743                 .input  = "\x64\xa9\x1a\x37\xed\x9f\xe7\x49"
2744                           "\xa8\x4e\x76\xd6\xf5\x0d\x78\xee",
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         }, { /* KeySize=128, I=121 */
2750                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80",
2751                 .klen   = 16,
2752                 .input  = "\x3d\xda\xbf\xc0\x06\xda\xab\x06"
2753                           "\x46\x2a\xf4\xef\x81\x54\x4e\x26",
2754                 .ilen   = 16,
2755                 .result = zeroed_string,
2756                 .rlen   = 16,
2757         },
2758 };
2759
2760
2761 /* Cast6 test vectors from RFC 2612 */
2762 #define CAST6_ENC_TEST_VECTORS  3
2763 #define CAST6_DEC_TEST_VECTORS  3
2764
2765 static struct cipher_testvec cast6_enc_tv_template[] = {
2766         {
2767                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2768                           "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d",
2769                 .klen   = 16,
2770                 .input  = zeroed_string,
2771                 .ilen   = 16,
2772                 .result = "\xc8\x42\xa0\x89\x72\xb4\x3d\x20"
2773                           "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b",
2774                 .rlen   = 16,
2775         }, {
2776                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2777                           "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2778                           "\xba\xc7\x7a\x77\x17\x94\x28\x63",
2779                 .klen   = 24,
2780                 .input  = zeroed_string,
2781                 .ilen   = 16,
2782                 .result = "\x1b\x38\x6c\x02\x10\xdc\xad\xcb"
2783                           "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8",
2784                 .rlen   = 16,
2785         }, {
2786                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2787                           "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2788                           "\x8d\x7c\x47\xce\x26\x49\x08\x46"
2789                           "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04",
2790                 .klen   = 32,
2791                 .input  = zeroed_string,
2792                 .ilen   = 16,
2793                 .result = "\x4f\x6a\x20\x38\x28\x68\x97\xb9"
2794                           "\xc9\x87\x01\x36\x55\x33\x17\xfa",
2795                 .rlen   = 16,
2796         },
2797 };
2798
2799 static struct cipher_testvec cast6_dec_tv_template[] = {
2800         {
2801                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2802                           "\x0a\xf7\x56\x47\xf2\x9f\x61\x5d",
2803                 .klen   = 16,
2804                 .input  = "\xc8\x42\xa0\x89\x72\xb4\x3d\x20"
2805                           "\x83\x6c\x91\xd1\xb7\x53\x0f\x6b",
2806                 .ilen   = 16,
2807                 .result = zeroed_string,
2808                 .rlen   = 16,
2809         }, {
2810                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2811                           "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2812                           "\xba\xc7\x7a\x77\x17\x94\x28\x63",
2813                 .klen   = 24,
2814                 .input  = "\x1b\x38\x6c\x02\x10\xdc\xad\xcb"
2815                           "\xdd\x0e\x41\xaa\x08\xa7\xa7\xe8",
2816                 .ilen   = 16,
2817                 .result = zeroed_string,
2818                 .rlen   = 16,
2819         }, {
2820                 .key    = "\x23\x42\xbb\x9e\xfa\x38\x54\x2c"
2821                           "\xbe\xd0\xac\x83\x94\x0a\xc2\x98"
2822                           "\x8d\x7c\x47\xce\x26\x49\x08\x46"
2823                           "\x1c\xc1\xb5\x13\x7a\xe6\xb6\x04",
2824                 .klen   = 32,
2825                 .input  = "\x4f\x6a\x20\x38\x28\x68\x97\xb9"
2826                           "\xc9\x87\x01\x36\x55\x33\x17\xfa",
2827                 .ilen   = 16,
2828                 .result = zeroed_string,
2829                 .rlen   = 16,
2830         },
2831 };
2832
2833
2834 /*
2835  * AES test vectors.
2836  */
2837 #define AES_ENC_TEST_VECTORS 3
2838 #define AES_DEC_TEST_VECTORS 3
2839 #define AES_CBC_ENC_TEST_VECTORS 4
2840 #define AES_CBC_DEC_TEST_VECTORS 4
2841 #define AES_LRW_ENC_TEST_VECTORS 8
2842 #define AES_LRW_DEC_TEST_VECTORS 8
2843 #define AES_XTS_ENC_TEST_VECTORS 4
2844 #define AES_XTS_DEC_TEST_VECTORS 4
2845 #define AES_CTR_ENC_TEST_VECTORS 7
2846 #define AES_CTR_DEC_TEST_VECTORS 6
2847 #define AES_GCM_ENC_TEST_VECTORS 9
2848 #define AES_GCM_DEC_TEST_VECTORS 8
2849 #define AES_CCM_ENC_TEST_VECTORS 7
2850 #define AES_CCM_DEC_TEST_VECTORS 7
2851
2852 static struct cipher_testvec aes_enc_tv_template[] = {
2853         { /* From FIPS-197 */
2854                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2855                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2856                 .klen   = 16,
2857                 .input  = "\x00\x11\x22\x33\x44\x55\x66\x77"
2858                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2859                 .ilen   = 16,
2860                 .result = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30"
2861                           "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a",
2862                 .rlen   = 16,
2863         }, {
2864                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2865                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2866                           "\x10\x11\x12\x13\x14\x15\x16\x17",
2867                 .klen   = 24,
2868                 .input  = "\x00\x11\x22\x33\x44\x55\x66\x77"
2869                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2870                 .ilen   = 16,
2871                 .result = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0"
2872                           "\x6e\xaf\x70\xa0\xec\x0d\x71\x91",
2873                 .rlen   = 16,
2874         }, {
2875                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2876                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2877                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2878                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2879                 .klen   = 32,
2880                 .input  = "\x00\x11\x22\x33\x44\x55\x66\x77"
2881                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2882                 .ilen   = 16,
2883                 .result = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf"
2884                           "\xea\xfc\x49\x90\x4b\x49\x60\x89",
2885                 .rlen   = 16,
2886         },
2887 };
2888
2889 static struct cipher_testvec aes_dec_tv_template[] = {
2890         { /* From FIPS-197 */
2891                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2892                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2893                 .klen   = 16,
2894                 .input  = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30"
2895                           "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a",
2896                 .ilen   = 16,
2897                 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
2898                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2899                 .rlen   = 16,
2900         }, {
2901                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2902                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2903                           "\x10\x11\x12\x13\x14\x15\x16\x17",
2904                 .klen   = 24,
2905                 .input  = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0"
2906                           "\x6e\xaf\x70\xa0\xec\x0d\x71\x91",
2907                 .ilen   = 16,
2908                 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
2909                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2910                 .rlen   = 16,
2911         }, {
2912                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2913                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2914                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2915                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2916                 .klen   = 32,
2917                 .input  = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf"
2918                           "\xea\xfc\x49\x90\x4b\x49\x60\x89",
2919                 .ilen   = 16,
2920                 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
2921                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2922                 .rlen   = 16,
2923         },
2924 };
2925
2926 static struct cipher_testvec aes_cbc_enc_tv_template[] = {
2927         { /* From RFC 3602 */
2928                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
2929                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
2930                 .klen   = 16,
2931                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
2932                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
2933                 .input  = "Single block msg",
2934                 .ilen   = 16,
2935                 .result = "\xe3\x53\x77\x9c\x10\x79\xae\xb8"
2936                           "\x27\x08\x94\x2d\xbe\x77\x18\x1a",
2937                 .rlen   = 16,
2938         }, {
2939                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
2940                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
2941                 .klen   = 16,
2942                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
2943                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
2944                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
2945                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2946                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2947                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2948                 .ilen   = 32,
2949                 .result = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a"
2950                           "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a"
2951                           "\x75\x86\x60\x2d\x25\x3c\xff\xf9"
2952                           "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1",
2953                 .rlen   = 32,
2954         }, { /* From NIST SP800-38A */
2955                 .key    = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
2956                           "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
2957                           "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
2958                 .klen   = 24,
2959                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
2960                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2961                 .input  = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
2962                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
2963                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
2964                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
2965                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
2966                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
2967                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
2968                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
2969                 .ilen   = 64,
2970                 .result = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d"
2971                           "\x71\x78\x18\x3a\x9f\xa0\x71\xe8"
2972                           "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4"
2973                           "\xe5\xe7\x38\x76\x3f\x69\x14\x5a"
2974                           "\x57\x1b\x24\x20\x12\xfb\x7a\xe0"
2975                           "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0"
2976                           "\x08\xb0\xe2\x79\x88\x59\x88\x81"
2977                           "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd",
2978                 .rlen   = 64,
2979         }, {
2980                 .key    = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
2981                           "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
2982                           "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
2983                           "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
2984                 .klen   = 32,
2985                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
2986                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2987                 .input  = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
2988                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
2989                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
2990                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
2991                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
2992                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
2993                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
2994                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
2995                 .ilen   = 64,
2996                 .result = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba"
2997                           "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6"
2998                           "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d"
2999                           "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d"
3000                           "\x39\xf2\x33\x69\xa9\xd9\xba\xcf"
3001                           "\xa5\x30\xe2\x63\x04\x23\x14\x61"
3002                           "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc"
3003                           "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b",
3004                 .rlen   = 64,
3005         },
3006 };
3007
3008 static struct cipher_testvec aes_cbc_dec_tv_template[] = {
3009         { /* From RFC 3602 */
3010                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
3011                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
3012                 .klen   = 16,
3013                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
3014                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
3015                 .input  = "\xe3\x53\x77\x9c\x10\x79\xae\xb8"
3016                           "\x27\x08\x94\x2d\xbe\x77\x18\x1a",
3017                 .ilen   = 16,
3018                 .result = "Single block msg",
3019                 .rlen   = 16,
3020         }, {
3021                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
3022                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
3023                 .klen   = 16,
3024                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
3025                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
3026                 .input  = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a"
3027                           "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a"
3028                           "\x75\x86\x60\x2d\x25\x3c\xff\xf9"
3029                           "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1",
3030                 .ilen   = 32,
3031                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
3032                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3033                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3034                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
3035                 .rlen   = 32,
3036         }, { /* From NIST SP800-38A */
3037                 .key    = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
3038                           "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
3039                           "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
3040                 .klen   = 24,
3041                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
3042                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3043                 .input  = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d"
3044                           "\x71\x78\x18\x3a\x9f\xa0\x71\xe8"
3045                           "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4"
3046                           "\xe5\xe7\x38\x76\x3f\x69\x14\x5a"
3047                           "\x57\x1b\x24\x20\x12\xfb\x7a\xe0"
3048                           "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0"
3049                           "\x08\xb0\xe2\x79\x88\x59\x88\x81"
3050                           "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd",
3051                 .ilen   = 64,
3052                 .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3053                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3054                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3055                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3056                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3057                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3058                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3059                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3060                 .rlen   = 64,
3061         }, {
3062                 .key    = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
3063                           "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
3064                           "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
3065                           "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
3066                 .klen   = 32,
3067                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
3068                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3069                 .input  = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba"
3070                           "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6"
3071                           "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d"
3072                           "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d"
3073                           "\x39\xf2\x33\x69\xa9\xd9\xba\xcf"
3074                           "\xa5\x30\xe2\x63\x04\x23\x14\x61"
3075                           "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc"
3076                           "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b",
3077                 .ilen   = 64,
3078                 .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3079                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3080                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3081                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3082                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3083                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3084                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3085                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3086                 .rlen   = 64,
3087         },
3088 };
3089
3090 static struct cipher_testvec aes_lrw_enc_tv_template[] = {
3091         /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */
3092         { /* LRW-32-AES 1 */
3093                 .key    = "\x45\x62\xac\x25\xf8\x28\x17\x6d"
3094                           "\x4c\x26\x84\x14\xb5\x68\x01\x85"
3095                           "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03"
3096                           "\xee\x5a\x83\x0c\xcc\x09\x4c\x87",
3097                 .klen   = 32,
3098                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3099                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3100                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3101                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3102                 .ilen   = 16,
3103                 .result = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f"
3104                           "\xe9\x5d\x48\x92\x54\x63\x4e\xb8",
3105                 .rlen   = 16,
3106         }, { /* LRW-32-AES 2 */
3107                 .key    = "\x59\x70\x47\x14\xf5\x57\x47\x8c"
3108                           "\xd7\x79\xe8\x0f\x54\x88\x79\x44"
3109                           "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea"
3110                           "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf",
3111                 .klen   = 32,
3112                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3113                           "\x00\x00\x00\x00\x00\x00\x00\x02",
3114                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3115                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3116                 .ilen   = 16,
3117                 .result = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5"
3118                           "\x27\x4f\x07\x69\xb2\x60\xe1\x36",
3119                 .rlen   = 16,
3120         }, { /* LRW-32-AES 3 */
3121                 .key    = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50"
3122                           "\x30\xfe\x69\xe2\x37\x7f\x98\x47"
3123                           "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6"
3124                           "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f",
3125                 .klen   = 32,
3126                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3127                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3128                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3129                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3130                 .ilen   = 16,
3131                 .result = "\x76\x32\x21\x83\xed\x8f\xf1\x82"
3132                           "\xf9\x59\x62\x03\x69\x0e\x5e\x01",
3133                 .rlen   = 16,
3134         }, { /* LRW-32-AES 4 */
3135                 .key    = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15"
3136                           "\x25\x83\xf7\x3c\x1f\x01\x28\x74"
3137                           "\xca\xc6\xbc\x35\x4d\x4a\x65\x54"
3138                           "\x90\xae\x61\xcf\x7b\xae\xbd\xcc"
3139                           "\xad\xe4\x94\xc5\x4a\x29\xae\x70",
3140                 .klen   = 40,
3141                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3142                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3143                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3144                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3145                 .ilen   = 16,
3146                 .result = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0"
3147                           "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41",
3148                 .rlen   = 16,
3149         }, { /* LRW-32-AES 5 */
3150                 .key    = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff"
3151                           "\xf8\x86\xce\xac\x93\xc5\xad\xc6"
3152                           "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd"
3153                           "\x52\x13\xb2\xb7\xf0\xff\x11\xd8"
3154                           "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f",
3155                 .klen   = 40,
3156                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3157                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3158                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3159                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3160                 .ilen   = 16,
3161                 .result = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65"
3162                           "\xc8\x60\x48\x02\x87\xe3\x34\x06",
3163                 .rlen   = 16,
3164         }, { /* LRW-32-AES 6 */
3165                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3166                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3167                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3168                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3169                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3170                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3171                 .klen   = 48,
3172                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3173                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3174                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3175                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3176                 .ilen   = 16,
3177                 .result = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e"
3178                           "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b",
3179                 .rlen   = 16,
3180         }, { /* LRW-32-AES 7 */
3181                 .key    = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d"
3182                           "\xd4\x70\x98\x0b\xc7\x95\x84\xc8"
3183                           "\xb2\xfb\x64\xce\x60\x97\x87\x8d"
3184                           "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7"
3185                           "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4"
3186                           "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c",
3187                 .klen   = 48,
3188                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3189                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3190                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3191                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3192                 .ilen   = 16,
3193                 .result = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f"
3194                           "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5",
3195                 .rlen   = 16,
3196         }, {
3197 /* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */
3198                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3199                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3200                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3201                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3202                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3203                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3204                 .klen   = 48,
3205                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3206                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3207                 .input  = "\x05\x11\xb7\x18\xab\xc6\x2d\xac"
3208                           "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c"
3209                           "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8"
3210                           "\x50\x38\x1f\x71\x49\xb6\x57\xd6"
3211                           "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90"
3212                           "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6"
3213                           "\xad\x1e\x9e\x20\x5f\x38\xbe\x04"
3214                           "\xda\x10\x8e\xed\xa2\xa4\x87\xab"
3215                           "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c"
3216                           "\xc9\xac\x42\x31\x95\x7c\xc9\x04"
3217                           "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6"
3218                           "\x15\xd7\x3f\x4f\x2f\x66\x69\x03"
3219                           "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65"
3220                           "\x4c\x96\x12\xed\x7c\x92\x03\x01"
3221                           "\x6f\xbc\x35\x93\xac\xf1\x27\xf1"
3222                           "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50"
3223                           "\x89\xa4\x8e\x66\x44\x85\xcc\xfd"
3224                           "\x33\x14\x70\xe3\x96\xb2\xc3\xd3"
3225                           "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5"
3226                           "\x2d\x64\x75\xdd\xb4\x54\xe6\x74"
3227                           "\x8c\xd3\x9d\x9e\x86\xab\x51\x53"
3228                           "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40"
3229                           "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5"
3230                           "\x76\x12\x73\x44\x1a\x56\xd7\x72"
3231                           "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda"
3232                           "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd"
3233                           "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60"
3234                           "\x1a\xe2\x70\x85\x58\xc2\x1b\x09"
3235                           "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9"
3236                           "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8"
3237                           "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8"
3238                           "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10"
3239                           "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1"
3240                           "\x90\x3e\x76\x4a\x74\xa4\x21\x2c"
3241                           "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e"
3242                           "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f"
3243                           "\x8d\x23\x31\x74\x84\xeb\x88\x6e"
3244                           "\xcc\xb9\xbc\x22\x83\x19\x07\x22"
3245                           "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78"
3246                           "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5"
3247                           "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41"
3248                           "\x3c\xce\x8f\x42\x60\x71\xa7\x75"
3249                           "\x08\x40\x65\x8a\x82\xbf\xf5\x43"
3250                           "\x71\x96\xa9\x4d\x44\x8a\x20\xbe"
3251                           "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65"
3252                           "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9"
3253                           "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4"
3254                           "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a"
3255                           "\x62\x73\x65\xfd\x46\x63\x25\x3d"
3256                           "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf"
3257                           "\x24\xf3\xb4\xac\x64\xba\xdf\x4b"
3258                           "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7"
3259                           "\xc5\x68\x77\x84\x32\x2b\xcc\x85"
3260                           "\x74\x96\xf0\x12\x77\x61\xb9\xeb"
3261                           "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8"
3262                           "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24"
3263                           "\xda\x39\x87\x45\xc0\x2b\xbb\x01"
3264                           "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce"
3265                           "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6"
3266                           "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32"
3267                           "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45"
3268                           "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6"
3269                           "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4"
3270                           "\x21\xc4\xc2\x75\x67\x89\x37\x0a",
3271                 .ilen   = 512,
3272                 .result = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b"
3273                           "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a"
3274                           "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23"
3275                           "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e"
3276                           "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c"
3277                           "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d"
3278                           "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3"
3279                           "\xe8\x58\x46\x97\x39\x51\x07\xde"
3280                           "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3"
3281                           "\x0e\x84\x23\x1d\x16\xd4\x1c\x59"
3282                           "\x9c\x1a\x02\x55\xab\x3a\x97\x1d"
3283                           "\xdf\xdd\xc7\x06\x51\xd7\x70\xae"
3284                           "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82"
3285                           "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68"
3286                           "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce"
3287                           "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98"
3288                           "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2"
3289                           "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f"
3290                           "\xea\x20\xe7\xcb\x65\x77\x3a\xdf"
3291                           "\xc8\x97\x67\x15\xc2\x2a\x27\xcc"
3292                           "\x18\x55\xa1\x24\x0b\x24\x24\xaf"
3293                           "\x5b\xec\x68\xb8\xc8\xf5\xba\x63"
3294                           "\xff\xed\x89\xce\xd5\x3d\x88\xf3"
3295                           "\x25\xef\x05\x7c\x3a\xef\xeb\xd8"
3296                           "\x7a\x32\x0d\xd1\x1e\x58\x59\x99"
3297                           "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c"
3298                           "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50"
3299                           "\x41\x30\x58\xc5\x62\x74\x52\x1d"
3300                           "\x45\x24\x6a\x42\x64\x4f\x97\x1c"
3301                           "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48"
3302                           "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1"
3303                           "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46"
3304                           "\xe4\x81\x84\x95\x36\x59\x7a\x6b"
3305                           "\xaa\xb3\x60\xad\xce\x9f\x9f\x28"
3306                           "\xe0\x01\x75\x22\xc4\x4e\xa9\x62"
3307                           "\x5c\x62\x0d\x00\xcb\x13\xe8\x43"
3308                           "\x72\xd4\x2d\x53\x46\xb5\xd1\x16"
3309                           "\x22\x18\xdf\x34\x33\xf5\xd6\x1c"
3310                           "\xb8\x79\x78\x97\x94\xff\x72\x13"
3311                           "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6"
3312                           "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4"
3313                           "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f"
3314                           "\x2d\x14\x8e\x24\x61\x2c\xe1\x17"
3315                           "\xcc\xce\x51\x0c\x19\x8a\x82\x30"
3316                           "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd"
3317                           "\xb7\xeb\xfa\xfd\x27\x51\xde\x85"
3318                           "\x1e\x86\x53\x11\x53\x94\x00\xee"
3319                           "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11"
3320                           "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62"
3321                           "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1"
3322                           "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a"
3323                           "\x9e\xfa\x31\x18\x45\x3c\x21\x33"
3324                           "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1"
3325                           "\x03\xad\x1b\x48\xd4\x67\x27\xf0"
3326                           "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7"
3327                           "\xdd\x2b\x01\x39\x04\x5a\x58\x7a"
3328                           "\xf7\x11\x90\xec\xbd\x51\x5c\x32"
3329                           "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6"
3330                           "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d"
3331                           "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4"
3332                           "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3"
3333                           "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29"
3334                           "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7"
3335                           "\x74\x3f\x7d\x58\x88\x75\xde\x3e",
3336                 .rlen   = 512,
3337         }
3338 };
3339
3340 static struct cipher_testvec aes_lrw_dec_tv_template[] = {
3341         /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */
3342         /* same as enc vectors with input and result reversed */
3343         { /* LRW-32-AES 1 */
3344                 .key    = "\x45\x62\xac\x25\xf8\x28\x17\x6d"
3345                           "\x4c\x26\x84\x14\xb5\x68\x01\x85"
3346                           "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03"
3347                           "\xee\x5a\x83\x0c\xcc\x09\x4c\x87",
3348                 .klen   = 32,
3349                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3350                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3351                 .input  = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f"
3352                           "\xe9\x5d\x48\x92\x54\x63\x4e\xb8",
3353                 .ilen   = 16,
3354                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3355                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3356                 .rlen   = 16,
3357         }, { /* LRW-32-AES 2 */
3358                 .key    = "\x59\x70\x47\x14\xf5\x57\x47\x8c"
3359                           "\xd7\x79\xe8\x0f\x54\x88\x79\x44"
3360                           "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea"
3361                           "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf",
3362                 .klen   = 32,
3363                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3364                           "\x00\x00\x00\x00\x00\x00\x00\x02",
3365                 .input  = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5"
3366                           "\x27\x4f\x07\x69\xb2\x60\xe1\x36",
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 3 */
3372                 .key    = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50"
3373                           "\x30\xfe\x69\xe2\x37\x7f\x98\x47"
3374                           "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6"
3375                           "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f",
3376                 .klen   = 32,
3377                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3378                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3379                 .input  = "\x76\x32\x21\x83\xed\x8f\xf1\x82"
3380                           "\xf9\x59\x62\x03\x69\x0e\x5e\x01",
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 4 */
3386                 .key    = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15"
3387                           "\x25\x83\xf7\x3c\x1f\x01\x28\x74"
3388                           "\xca\xc6\xbc\x35\x4d\x4a\x65\x54"
3389                           "\x90\xae\x61\xcf\x7b\xae\xbd\xcc"
3390                           "\xad\xe4\x94\xc5\x4a\x29\xae\x70",
3391                 .klen   = 40,
3392                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3393                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3394                 .input  = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0"
3395                           "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41",
3396                 .ilen   = 16,
3397                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3398                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3399                 .rlen   = 16,
3400         }, { /* LRW-32-AES 5 */
3401                 .key    = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff"
3402                           "\xf8\x86\xce\xac\x93\xc5\xad\xc6"
3403                           "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd"
3404                           "\x52\x13\xb2\xb7\xf0\xff\x11\xd8"
3405                           "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f",
3406                 .klen   = 40,
3407                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3408                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3409                 .input  = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65"
3410                           "\xc8\x60\x48\x02\x87\xe3\x34\x06",
3411                 .ilen   = 16,
3412                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3413                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3414                 .rlen   = 16,
3415         }, { /* LRW-32-AES 6 */
3416                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3417                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3418                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3419                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3420                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3421                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3422                 .klen   = 48,
3423                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3424                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3425                 .input  = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e"
3426                           "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b",
3427                 .ilen   = 16,
3428                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3429                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3430                 .rlen   = 16,
3431         }, { /* LRW-32-AES 7 */
3432                 .key    = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d"
3433                           "\xd4\x70\x98\x0b\xc7\x95\x84\xc8"
3434                           "\xb2\xfb\x64\xce\x60\x97\x87\x8d"
3435                           "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7"
3436                           "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4"
3437                           "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c",
3438                 .klen   = 48,
3439                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3440                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3441                 .input  = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f"
3442                           "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5",
3443                 .ilen   = 16,
3444                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3445                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3446                 .rlen   = 16,
3447         }, {
3448 /* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */
3449                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3450                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3451                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3452                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3453                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3454                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3455                 .klen   = 48,
3456                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3457                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3458                 .input  = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b"
3459                           "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a"
3460                           "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23"
3461                           "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e"
3462                           "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c"
3463                           "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d"
3464                           "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3"
3465                           "\xe8\x58\x46\x97\x39\x51\x07\xde"
3466                           "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3"
3467                           "\x0e\x84\x23\x1d\x16\xd4\x1c\x59"
3468                           "\x9c\x1a\x02\x55\xab\x3a\x97\x1d"
3469                           "\xdf\xdd\xc7\x06\x51\xd7\x70\xae"
3470                           "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82"
3471                           "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68"
3472                           "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce"
3473                           "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98"
3474                           "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2"
3475                           "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f"
3476                           "\xea\x20\xe7\xcb\x65\x77\x3a\xdf"
3477                           "\xc8\x97\x67\x15\xc2\x2a\x27\xcc"
3478                           "\x18\x55\xa1\x24\x0b\x24\x24\xaf"
3479                           "\x5b\xec\x68\xb8\xc8\xf5\xba\x63"
3480                           "\xff\xed\x89\xce\xd5\x3d\x88\xf3"
3481                           "\x25\xef\x05\x7c\x3a\xef\xeb\xd8"
3482                           "\x7a\x32\x0d\xd1\x1e\x58\x59\x99"
3483                           "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c"
3484                           "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50"
3485                           "\x41\x30\x58\xc5\x62\x74\x52\x1d"
3486                           "\x45\x24\x6a\x42\x64\x4f\x97\x1c"
3487                           "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48"
3488                           "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1"
3489                           "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46"
3490                           "\xe4\x81\x84\x95\x36\x59\x7a\x6b"
3491                           "\xaa\xb3\x60\xad\xce\x9f\x9f\x28"
3492                           "\xe0\x01\x75\x22\xc4\x4e\xa9\x62"
3493                           "\x5c\x62\x0d\x00\xcb\x13\xe8\x43"
3494                           "\x72\xd4\x2d\x53\x46\xb5\xd1\x16"
3495                           "\x22\x18\xdf\x34\x33\xf5\xd6\x1c"
3496                           "\xb8\x79\x78\x97\x94\xff\x72\x13"
3497                           "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6"
3498                           "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4"
3499                           "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f"
3500                           "\x2d\x14\x8e\x24\x61\x2c\xe1\x17"
3501                           "\xcc\xce\x51\x0c\x19\x8a\x82\x30"
3502                           "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd"
3503                           "\xb7\xeb\xfa\xfd\x27\x51\xde\x85"
3504                           "\x1e\x86\x53\x11\x53\x94\x00\xee"
3505                           "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11"
3506                           "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62"
3507                           "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1"
3508                           "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a"
3509                           "\x9e\xfa\x31\x18\x45\x3c\x21\x33"
3510                           "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1"
3511                           "\x03\xad\x1b\x48\xd4\x67\x27\xf0"
3512                           "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7"
3513                           "\xdd\x2b\x01\x39\x04\x5a\x58\x7a"
3514                           "\xf7\x11\x90\xec\xbd\x51\x5c\x32"
3515                           "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6"
3516                           "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d"
3517                           "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4"
3518                           "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3"
3519                           "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29"
3520                           "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7"
3521                           "\x74\x3f\x7d\x58\x88\x75\xde\x3e",
3522                 .ilen   = 512,
3523                 .result = "\x05\x11\xb7\x18\xab\xc6\x2d\xac"
3524                           "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c"
3525                           "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8"
3526                           "\x50\x38\x1f\x71\x49\xb6\x57\xd6"
3527                           "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90"
3528                           "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6"
3529                           "\xad\x1e\x9e\x20\x5f\x38\xbe\x04"
3530                           "\xda\x10\x8e\xed\xa2\xa4\x87\xab"
3531                           "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c"
3532                           "\xc9\xac\x42\x31\x95\x7c\xc9\x04"
3533                           "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6"
3534                           "\x15\xd7\x3f\x4f\x2f\x66\x69\x03"
3535                           "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65"
3536                           "\x4c\x96\x12\xed\x7c\x92\x03\x01"
3537                           "\x6f\xbc\x35\x93\xac\xf1\x27\xf1"
3538                           "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50"
3539                           "\x89\xa4\x8e\x66\x44\x85\xcc\xfd"
3540                           "\x33\x14\x70\xe3\x96\xb2\xc3\xd3"
3541                           "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5"
3542                           "\x2d\x64\x75\xdd\xb4\x54\xe6\x74"
3543                           "\x8c\xd3\x9d\x9e\x86\xab\x51\x53"
3544                           "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40"
3545                           "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5"
3546                           "\x76\x12\x73\x44\x1a\x56\xd7\x72"
3547                           "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda"
3548                           "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd"
3549                           "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60"
3550                           "\x1a\xe2\x70\x85\x58\xc2\x1b\x09"
3551                           "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9"
3552                           "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8"
3553                           "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8"
3554                           "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10"
3555                           "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1"
3556                           "\x90\x3e\x76\x4a\x74\xa4\x21\x2c"
3557                           "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e"
3558                           "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f"
3559                           "\x8d\x23\x31\x74\x84\xeb\x88\x6e"
3560                           "\xcc\xb9\xbc\x22\x83\x19\x07\x22"
3561                           "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78"
3562                           "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5"
3563                           "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41"
3564                           "\x3c\xce\x8f\x42\x60\x71\xa7\x75"
3565                           "\x08\x40\x65\x8a\x82\xbf\xf5\x43"
3566                           "\x71\x96\xa9\x4d\x44\x8a\x20\xbe"
3567                           "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65"
3568                           "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9"
3569                           "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4"
3570                           "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a"
3571                           "\x62\x73\x65\xfd\x46\x63\x25\x3d"
3572                           "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf"
3573                           "\x24\xf3\xb4\xac\x64\xba\xdf\x4b"
3574                           "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7"
3575                           "\xc5\x68\x77\x84\x32\x2b\xcc\x85"
3576                           "\x74\x96\xf0\x12\x77\x61\xb9\xeb"
3577                           "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8"
3578                           "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24"
3579                           "\xda\x39\x87\x45\xc0\x2b\xbb\x01"
3580                           "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce"
3581                           "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6"
3582                           "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32"
3583                           "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45"
3584                           "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6"
3585                           "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4"
3586                           "\x21\xc4\xc2\x75\x67\x89\x37\x0a",
3587                 .rlen   = 512,
3588         }
3589 };
3590
3591 static struct cipher_testvec aes_xts_enc_tv_template[] = {
3592         /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */
3593         { /* XTS-AES 1 */
3594                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
3595                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3596                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3597                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3598                 .klen   = 32,
3599                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3600                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3601                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
3602                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3603                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3604                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3605                 .ilen   = 32,
3606                 .result = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec"
3607                           "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92"
3608                           "\xcd\x43\xd2\xf5\x95\x98\xed\x85"
3609                           "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e",
3610                 .rlen   = 32,
3611         }, { /* XTS-AES 2 */
3612                 .key    = "\x11\x11\x11\x11\x11\x11\x11\x11"
3613                           "\x11\x11\x11\x11\x11\x11\x11\x11"
3614                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3615                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3616                 .klen   = 32,
3617                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3618                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3619                 .input  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3620                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3621                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3622                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3623                 .ilen   = 32,
3624                 .result = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e"
3625                           "\x39\x33\x40\x38\xac\xef\x83\x8b"
3626                           "\xfb\x18\x6f\xff\x74\x80\xad\xc4"
3627                           "\x28\x93\x82\xec\xd6\xd3\x94\xf0",
3628                 .rlen   = 32,
3629         }, { /* XTS-AES 3 */
3630                 .key    = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8"
3631                           "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0"
3632                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3633                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3634                 .klen   = 32,
3635                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3636                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3637                 .input  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3638                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3639                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3640                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3641                 .ilen   = 32,
3642                 .result = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a"
3643                           "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2"
3644                           "\x92\xdf\x4c\x04\x7e\x0b\x21\x53"
3645                           "\x21\x86\xa5\x97\x1a\x22\x7a\x89",
3646                 .rlen   = 32,
3647         }, { /* XTS-AES 4 */
3648                 .key    = "\x27\x18\x28\x18\x28\x45\x90\x45"
3649                           "\x23\x53\x60\x28\x74\x71\x35\x26"
3650                           "\x31\x41\x59\x26\x53\x58\x97\x93"
3651                           "\x23\x84\x62\x64\x33\x83\x27\x95",
3652                 .klen   = 32,
3653                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3654                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3655                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
3656                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3657                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3658                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3659                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3660                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3661                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3662                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3663                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3664                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3665                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3666                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3667                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3668                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3669                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3670                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3671                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3672                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3673                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3674                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3675                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3676                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3677                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3678                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3679                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3680                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3681                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3682                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3683                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3684                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3685                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3686                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
3687                           "\x00\x01\x02\x03\x04\x05\x06\x07"
3688                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3689                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3690                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3691                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3692                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3693                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3694                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3695                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3696                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3697                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3698                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3699                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3700                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3701                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3702                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3703                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3704                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3705                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3706                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3707                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3708                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3709                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3710                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3711                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3712                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3713                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3714                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3715                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3716                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3717                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3718                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
3719                 .ilen   = 512,
3720                 .result = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76"
3721                           "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2"
3722                           "\xa9\x6e\x4b\xbe\x32\x08\xff\x25"
3723                           "\x28\x7d\xd3\x81\x96\x16\xe8\x9c"
3724                           "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f"
3725                           "\x83\x33\xd8\xfa\x7f\x56\x00\x00"
3726                           "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad"
3727                           "\x40\xe7\x36\xdd\xb4\xd3\x54\x12"
3728                           "\x32\x80\x63\xfd\x2a\xab\x53\xe5"
3729                           "\xea\x1e\x0a\x9f\x33\x25\x00\xa5"
3730                           "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc"
3731                           "\x51\x2c\x88\x66\xc7\xe8\x60\xce"
3732                           "\x93\xfd\xf1\x66\xa2\x49\x12\xb4"
3733                           "\x22\x97\x61\x46\xae\x20\xce\x84"
3734                           "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a"
3735                           "\xae\xf2\x0c\x0d\x61\xad\x02\x65"
3736                           "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89"
3737                           "\x52\xc6\x51\xd3\x31\x74\xbe\x51"
3738                           "\xa1\x0c\x42\x11\x10\xe6\xd8\x15"
3739                           "\x88\xed\xe8\x21\x03\xa2\x52\xd8"
3740                           "\xa7\x50\xe8\x76\x8d\xef\xff\xed"
3741                           "\x91\x22\x81\x0a\xae\xb9\x9f\x91"
3742                           "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e"
3743                           "\x51\xbc\xb0\x82\x35\xa6\xf4\x34"
3744                           "\x13\x32\xe4\xca\x60\x48\x2a\x4b"
3745                           "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5"
3746                           "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4"
3747                           "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c"
3748                           "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd"
3749                           "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3"
3750                           "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f"
3751                           "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e"
3752                           "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91"
3753                           "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19"
3754                           "\x7c\x4e\x5b\x03\x39\x36\x97\xe1"
3755                           "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc"
3756                           "\x1e\x08\x29\x85\x16\xe2\xc9\xed"
3757                           "\x03\xff\x3c\x1b\x78\x60\xf6\xde"
3758                           "\x76\xd4\xce\xcd\x94\xc8\x11\x98"
3759                           "\x55\xef\x52\x97\xca\x67\xe9\xf3"
3760                           "\xe7\xff\x72\xb1\xe9\x97\x85\xca"
3761                           "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6"
3762                           "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc"
3763                           "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44"
3764                           "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0"
3765                           "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95"
3766                           "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4"
3767                           "\x99\x02\x7a\x78\x57\x2a\xee\xbd"
3768                           "\x74\xd2\x0c\xc3\x98\x81\xc2\x13"
3769                           "\xee\x77\x0b\x10\x10\xe4\xbe\xa7"
3770                           "\x18\x84\x69\x77\xae\x11\x9f\x7a"
3771                           "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52"
3772                           "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a"
3773                           "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38"
3774                           "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e"
3775                           "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e"
3776                           "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad"
3777                           "\x15\xb4\xaa\x5b\x65\x50\x16\xa8"
3778                           "\x44\x92\x77\xdb\xd4\x77\xef\x2c"
3779                           "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d"
3780                           "\xeb\x4a\x42\x7d\x19\x23\xce\x3f"
3781                           "\xf2\x62\x73\x57\x79\xa4\x18\xf2"
3782                           "\x0a\x28\x2d\xf9\x20\x14\x7b\xea"
3783                           "\xbe\x42\x1e\xe5\x31\x9d\x05\x68",
3784                 .rlen   = 512,
3785         }
3786 };
3787
3788 static struct cipher_testvec aes_xts_dec_tv_template[] = {
3789         /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */
3790         { /* XTS-AES 1 */
3791                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
3792                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3793                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3794                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3795                 .klen   = 32,
3796                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3797                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3798                 .input = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec"
3799                          "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92"
3800                          "\xcd\x43\xd2\xf5\x95\x98\xed\x85"
3801                          "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e",
3802                 .ilen   = 32,
3803                 .result  = "\x00\x00\x00\x00\x00\x00\x00\x00"
3804                            "\x00\x00\x00\x00\x00\x00\x00\x00"
3805                            "\x00\x00\x00\x00\x00\x00\x00\x00"
3806                            "\x00\x00\x00\x00\x00\x00\x00\x00",
3807                 .rlen   = 32,
3808         }, { /* XTS-AES 2 */
3809                 .key    = "\x11\x11\x11\x11\x11\x11\x11\x11"
3810                           "\x11\x11\x11\x11\x11\x11\x11\x11"
3811                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3812                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3813                 .klen   = 32,
3814                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3815                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3816                 .input  = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e"
3817                           "\x39\x33\x40\x38\xac\xef\x83\x8b"
3818                           "\xfb\x18\x6f\xff\x74\x80\xad\xc4"
3819                           "\x28\x93\x82\xec\xd6\xd3\x94\xf0",
3820                 .ilen   = 32,
3821                 .result = "\x44\x44\x44\x44\x44\x44\x44\x44"
3822                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3823                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3824                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3825                 .rlen   = 32,
3826         }, { /* XTS-AES 3 */
3827                 .key    = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8"
3828                           "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0"
3829                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3830                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3831                 .klen   = 32,
3832                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3833                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3834                 .input = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a"
3835                           "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2"
3836                           "\x92\xdf\x4c\x04\x7e\x0b\x21\x53"
3837                           "\x21\x86\xa5\x97\x1a\x22\x7a\x89",
3838                 .ilen   = 32,
3839                 .result  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3840                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3841                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3842                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3843                 .rlen   = 32,
3844         }, { /* XTS-AES 4 */
3845                 .key    = "\x27\x18\x28\x18\x28\x45\x90\x45"
3846                           "\x23\x53\x60\x28\x74\x71\x35\x26"
3847                           "\x31\x41\x59\x26\x53\x58\x97\x93"
3848                           "\x23\x84\x62\x64\x33\x83\x27\x95",
3849                 .klen   = 32,
3850                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3851                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3852                 .input  = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76"
3853                           "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2"
3854                           "\xa9\x6e\x4b\xbe\x32\x08\xff\x25"
3855                           "\x28\x7d\xd3\x81\x96\x16\xe8\x9c"
3856                           "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f"
3857                           "\x83\x33\xd8\xfa\x7f\x56\x00\x00"
3858                           "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad"
3859                           "\x40\xe7\x36\xdd\xb4\xd3\x54\x12"
3860                           "\x32\x80\x63\xfd\x2a\xab\x53\xe5"
3861                           "\xea\x1e\x0a\x9f\x33\x25\x00\xa5"
3862                           "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc"
3863                           "\x51\x2c\x88\x66\xc7\xe8\x60\xce"
3864                           "\x93\xfd\xf1\x66\xa2\x49\x12\xb4"
3865                           "\x22\x97\x61\x46\xae\x20\xce\x84"
3866                           "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a"
3867                           "\xae\xf2\x0c\x0d\x61\xad\x02\x65"
3868                           "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89"
3869                           "\x52\xc6\x51\xd3\x31\x74\xbe\x51"
3870                           "\xa1\x0c\x42\x11\x10\xe6\xd8\x15"
3871                           "\x88\xed\xe8\x21\x03\xa2\x52\xd8"
3872                           "\xa7\x50\xe8\x76\x8d\xef\xff\xed"
3873                           "\x91\x22\x81\x0a\xae\xb9\x9f\x91"
3874                           "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e"
3875                           "\x51\xbc\xb0\x82\x35\xa6\xf4\x34"
3876                           "\x13\x32\xe4\xca\x60\x48\x2a\x4b"
3877                           "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5"
3878                           "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4"
3879                           "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c"
3880                           "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd"
3881                           "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3"
3882                           "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f"
3883                           "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e"
3884                           "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91"
3885                           "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19"
3886                           "\x7c\x4e\x5b\x03\x39\x36\x97\xe1"
3887                           "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc"
3888                           "\x1e\x08\x29\x85\x16\xe2\xc9\xed"
3889                           "\x03\xff\x3c\x1b\x78\x60\xf6\xde"
3890                           "\x76\xd4\xce\xcd\x94\xc8\x11\x98"
3891                           "\x55\xef\x52\x97\xca\x67\xe9\xf3"
3892                           "\xe7\xff\x72\xb1\xe9\x97\x85\xca"
3893                           "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6"
3894                           "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc"
3895                           "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44"
3896                           "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0"
3897                           "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95"
3898                           "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4"
3899                           "\x99\x02\x7a\x78\x57\x2a\xee\xbd"
3900                           "\x74\xd2\x0c\xc3\x98\x81\xc2\x13"
3901                           "\xee\x77\x0b\x10\x10\xe4\xbe\xa7"
3902                           "\x18\x84\x69\x77\xae\x11\x9f\x7a"
3903                           "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52"
3904                           "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a"
3905                           "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38"
3906                           "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e"
3907                           "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e"
3908                           "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad"
3909                           "\x15\xb4\xaa\x5b\x65\x50\x16\xa8"
3910                           "\x44\x92\x77\xdb\xd4\x77\xef\x2c"
3911                           "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d"
3912                           "\xeb\x4a\x42\x7d\x19\x23\xce\x3f"
3913                           "\xf2\x62\x73\x57\x79\xa4\x18\xf2"
3914                           "\x0a\x28\x2d\xf9\x20\x14\x7b\xea"
3915                           "\xbe\x42\x1e\xe5\x31\x9d\x05\x68",
3916                 .ilen   = 512,
3917                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
3918                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3919                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3920                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3921                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3922                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3923                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3924                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3925                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3926                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3927                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3928                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3929                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3930                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3931                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3932                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3933                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3934                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3935                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3936                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3937                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3938                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3939                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3940                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3941                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3942                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3943                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3944                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3945                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3946                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3947                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3948                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
3949                           "\x00\x01\x02\x03\x04\x05\x06\x07"
3950                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3951                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3952                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3953                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3954                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3955                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3956                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3957                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3958                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3959                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3960                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3961                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3962                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3963                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3964                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3965                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3966                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3967                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3968                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3969                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3970                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3971                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3972                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3973                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3974                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3975                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3976                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3977                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3978                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3979                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3980                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
3981                 .rlen   = 512,
3982         }
3983 };
3984
3985
3986 static struct cipher_testvec aes_ctr_enc_tv_template[] = {
3987         { /* From RFC 3686 */
3988                 .key    = "\xae\x68\x52\xf8\x12\x10\x67\xcc"
3989                           "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e"
3990                           "\x00\x00\x00\x30",
3991                 .klen   = 20,
3992                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
3993                 .input  = "Single block msg",
3994                 .ilen   = 16,
3995                 .result = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79"
3996                           "\x2d\x61\x75\xa3\x26\x13\x11\xb8",
3997                 .rlen   = 16,
3998         }, {
3999                 .key    = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7"
4000                           "\x43\xd6\xce\x1f\x32\x53\x91\x63"
4001                           "\x00\x6c\xb6\xdb",
4002                 .klen   = 20,
4003                 .iv     = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b",
4004                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
4005                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4006                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4007                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4008                 .ilen   = 32,
4009                 .result = "\x51\x04\xa1\x06\x16\x8a\x72\xd9"
4010                           "\x79\x0d\x41\xee\x8e\xda\xd3\x88"
4011                           "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8"
4012                           "\xfc\xe6\x30\xdf\x91\x41\xbe\x28",
4013                 .rlen   = 32,
4014         }, {
4015                 .key    = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79"
4016                           "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed"
4017                           "\x86\x3d\x06\xcc\xfd\xb7\x85\x15"
4018                           "\x00\x00\x00\x48",
4019                 .klen   = 28,
4020                 .iv     = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb",
4021                 .input  = "Single block msg",
4022                 .ilen   = 16,
4023                 .result = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8"
4024                           "\x4e\x79\x35\xa0\x03\xcb\xe9\x28",
4025                 .rlen   = 16,
4026         }, {
4027                 .key    = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c"
4028                           "\x19\xe7\x34\x08\x19\xe0\xf6\x9c"
4029                           "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a"
4030                           "\x00\x96\xb0\x3b",
4031                 .klen   = 28,
4032                 .iv     = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d",
4033                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
4034                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4035                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4036                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4037                 .ilen   = 32,
4038                 .result = "\x45\x32\x43\xfc\x60\x9b\x23\x32"
4039                           "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f"
4040                           "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c"
4041                           "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00",
4042                 .rlen   = 32,
4043         }, {
4044                 .key    = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f"
4045                           "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c"
4046                           "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3"
4047                           "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04"
4048                           "\x00\x00\x00\x60",
4049                 .klen   = 36,
4050                 .iv     = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2",
4051                 .input  = "Single block msg",
4052                 .ilen   = 16,
4053                 .result = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7"
4054                           "\x56\x08\x63\xdc\x71\xe3\xe0\xc0",
4055                 .rlen   = 16,
4056         }, {
4057                 .key    = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb"
4058                           "\x07\x96\x36\x58\x79\xef\xf8\x86"
4059                           "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74"
4060                           "\x4b\x50\x59\x0c\x87\xa2\x38\x84"
4061                           "\x00\xfa\xac\x24",
4062                 .klen   = 36,
4063                 .iv     = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75",
4064                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
4065                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4066                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4067                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4068                 .ilen   = 32,
4069                 .result = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c"
4070                           "\x49\xee\x00\x0b\x80\x4e\xb2\xa9"
4071                           "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a"
4072                           "\x55\x30\x83\x1d\x93\x44\xaf\x1c",
4073                 .rlen   = 32,
4074         }, {
4075         // generated using Crypto++
4076                 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
4077                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4078                         "\x10\x11\x12\x13\x14\x15\x16\x17"
4079                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4080                         "\x00\x00\x00\x00",
4081                 .klen = 32 + 4,
4082                 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
4083                 .input =
4084                         "\x00\x01\x02\x03\x04\x05\x06\x07"
4085                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4086                         "\x10\x11\x12\x13\x14\x15\x16\x17"
4087                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4088                         "\x20\x21\x22\x23\x24\x25\x26\x27"
4089                         "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
4090                         "\x30\x31\x32\x33\x34\x35\x36\x37"
4091                         "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
4092                         "\x40\x41\x42\x43\x44\x45\x46\x47"
4093                         "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
4094                         "\x50\x51\x52\x53\x54\x55\x56\x57"
4095                         "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
4096                         "\x60\x61\x62\x63\x64\x65\x66\x67"
4097                         "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
4098                         "\x70\x71\x72\x73\x74\x75\x76\x77"
4099                         "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
4100                         "\x80\x81\x82\x83\x84\x85\x86\x87"
4101                         "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
4102                         "\x90\x91\x92\x93\x94\x95\x96\x97"
4103                         "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
4104                         "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
4105                         "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
4106                         "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
4107                         "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
4108                         "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
4109                         "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
4110                         "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
4111                         "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
4112                         "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
4113                         "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
4114                         "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4115                         "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
4116                         "\x00\x03\x06\x09\x0c\x0f\x12\x15"
4117                         "\x18\x1b\x1e\x21\x24\x27\x2a\x2d"
4118                         "\x30\x33\x36\x39\x3c\x3f\x42\x45"
4119                         "\x48\x4b\x4e\x51\x54\x57\x5a\x5d"
4120                         "\x60\x63\x66\x69\x6c\x6f\x72\x75"
4121                         "\x78\x7b\x7e\x81\x84\x87\x8a\x8d"
4122                         "\x90\x93\x96\x99\x9c\x9f\xa2\xa5"
4123                         "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd"
4124                         "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5"
4125                         "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed"
4126                         "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05"
4127                         "\x08\x0b\x0e\x11\x14\x17\x1a\x1d"
4128                         "\x20\x23\x26\x29\x2c\x2f\x32\x35"
4129                         "\x38\x3b\x3e\x41\x44\x47\x4a\x4d"
4130                         "\x50\x53\x56\x59\x5c\x5f\x62\x65"
4131                         "\x68\x6b\x6e\x71\x74\x77\x7a\x7d"
4132                         "\x80\x83\x86\x89\x8c\x8f\x92\x95"
4133                         "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad"
4134                         "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5"
4135                         "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd"
4136                         "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5"
4137                         "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d"
4138                         "\x10\x13\x16\x19\x1c\x1f\x22\x25"
4139                         "\x28\x2b\x2e\x31\x34\x37\x3a\x3d"
4140                         "\x40\x43\x46\x49\x4c\x4f\x52\x55"
4141                         "\x58\x5b\x5e\x61\x64\x67\x6a\x6d"
4142                         "\x70\x73\x76\x79\x7c\x7f\x82\x85"
4143                         "\x88\x8b\x8e\x91\x94\x97\x9a\x9d"
4144                         "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5"
4145                         "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd"
4146                         "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5"
4147                         "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd"
4148                         "\x00\x05\x0a\x0f\x14\x19\x1e\x23"
4149                         "\x28\x2d\x32\x37\x3c\x41\x46\x4b"
4150                         "\x50\x55\x5a\x5f\x64\x69\x6e\x73"
4151                         "\x78\x7d\x82\x87\x8c\x91\x96\x9b"
4152                         "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3"
4153                         "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb"
4154                         "\xf0\xf5\xfa\xff\x04\x09\x0e\x13"
4155                         "\x18\x1d\x22\x27\x2c\x31\x36\x3b"
4156                         "\x40\x45\x4a\x4f\x54\x59\x5e\x63"
4157                         "\x68\x6d\x72\x77\x7c\x81\x86\x8b"
4158                         "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3"
4159                         "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb"
4160                         "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03"
4161                         "\x08\x0d\x12\x17\x1c\x21\x26\x2b"
4162                         "\x30\x35\x3a\x3f\x44\x49\x4e\x53"
4163                         "\x58\x5d\x62\x67\x6c\x71\x76\x7b"
4164                         "\x80\x85\x8a\x8f\x94\x99\x9e\xa3"
4165                         "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb"
4166                         "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3"
4167                         "\xf8\xfd\x02\x07\x0c\x11\x16\x1b"
4168                         "\x20\x25\x2a\x2f\x34\x39\x3e\x43"
4169                         "\x48\x4d\x52\x57\x5c\x61\x66\x6b"
4170                         "\x70\x75\x7a\x7f\x84\x89\x8e\x93"
4171                         "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb"
4172                         "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3"
4173                         "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b"
4174                         "\x10\x15\x1a\x1f\x24\x29\x2e\x33"
4175                         "\x38\x3d\x42\x47\x4c\x51\x56\x5b"
4176                         "\x60\x65\x6a\x6f\x74\x79\x7e\x83"
4177                         "\x88\x8d\x92\x97\x9c\xa1\xa6\xab"
4178                         "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3"
4179                         "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb"
4180                         "\x00\x07\x0e\x15\x1c\x23\x2a\x31"
4181                         "\x38\x3f\x46\x4d\x54\x5b\x62\x69"
4182                         "\x70\x77\x7e\x85\x8c\x93\x9a\xa1"
4183                         "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9"
4184                         "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11"
4185                         "\x18\x1f\x26\x2d\x34\x3b\x42\x49"
4186                         "\x50\x57\x5e\x65\x6c\x73\x7a\x81"
4187                         "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9"
4188                         "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1"
4189                         "\xf8\xff\x06\x0d\x14\x1b\x22\x29"
4190                         "\x30\x37\x3e\x45\x4c\x53\x5a\x61"
4191                         "\x68\x6f\x76\x7d\x84\x8b\x92\x99"
4192                         "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1"
4193                         "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09"
4194                         "\x10\x17\x1e\x25\x2c\x33\x3a\x41"
4195                         "\x48\x4f\x56\x5d\x64\x6b\x72\x79"
4196                         "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1"
4197                         "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9"
4198                         "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21"
4199                         "\x28\x2f\x36\x3d\x44\x4b\x52\x59"
4200                         "\x60\x67\x6e\x75\x7c\x83\x8a\x91"
4201                         "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9"
4202                         "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01"
4203                         "\x08\x0f\x16\x1d\x24\x2b\x32\x39"
4204                         "\x40\x47\x4e\x55\x5c\x63\x6a\x71"
4205                         "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9"
4206                         "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1"
4207                         "\xe8\xef\xf6\xfd\x04\x0b\x12\x19"
4208                         "\x20\x27\x2e\x35\x3c\x43\x4a\x51"
4209                         "\x58\x5f\x66\x6d\x74\x7b\x82\x89"
4210                         "\x90\x97\x9e\xa5\xac\xb3\xba\xc1"
4211                         "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9"
4212                         "\x00\x09\x12\x1b\x24\x2d\x36\x3f"
4213                         "\x48\x51\x5a\x63\x6c\x75\x7e\x87"
4214                         "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf"
4215                         "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17"
4216                         "\x20\x29\x32\x3b\x44\x4d\x56\x5f"
4217                         "\x68\x71\x7a\x83\x8c\x95\x9e\xa7"
4218                         "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef"
4219                         "\xf8\x01\x0a\x13\x1c\x25\x2e\x37"
4220                         "\x40\x49\x52\x5b\x64\x6d\x76\x7f"
4221                         "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7"
4222                         "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f"
4223                         "\x18\x21\x2a\x33\x3c\x45\x4e\x57"
4224                         "\x60\x69\x72\x7b\x84\x8d\x96\x9f"
4225                         "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7"
4226                         "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f"
4227                         "\x38\x41\x4a\x53\x5c\x65\x6e\x77"
4228                         "\x80\x89\x92\x9b\xa4\xad\xb6\xbf"
4229                         "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07"
4230                         "\x10\x19\x22\x2b\x34\x3d\x46\x4f"
4231                         "\x58\x61\x6a\x73\x7c\x85\x8e\x97"
4232                         "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf"
4233                         "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27"
4234                         "\x30\x39\x42\x4b\x54\x5d\x66\x6f"
4235                         "\x78\x81\x8a\x93\x9c\xa5\xae\xb7"
4236                         "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff"
4237                         "\x08\x11\x1a\x23\x2c\x35\x3e\x47"
4238                         "\x50\x59\x62\x6b\x74\x7d\x86\x8f"
4239                         "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7"
4240                         "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f"
4241                         "\x28\x31\x3a\x43\x4c\x55\x5e\x67"
4242                         "\x70\x79\x82\x8b\x94\x9d\xa6\xaf"
4243                         "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7"
4244                         "\x00\x0b\x16\x21\x2c\x37\x42\x4d"
4245                         "\x58\x63\x6e\x79\x84\x8f\x9a\xa5"
4246                         "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd"
4247                         "\x08\x13\x1e\x29\x34\x3f\x4a\x55"
4248                         "\x60\x6b\x76\x81\x8c\x97\xa2\xad"
4249                         "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05"
4250                         "\x10\x1b\x26\x31\x3c\x47\x52\x5d"
4251                         "\x68\x73\x7e\x89\x94\x9f\xaa\xb5"
4252                         "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d"
4253                         "\x18\x23\x2e\x39\x44\x4f\x5a\x65"
4254                         "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd"
4255                         "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15"
4256                         "\x20\x2b\x36\x41\x4c\x57\x62\x6d"
4257                         "\x78\x83\x8e\x99\xa4\xaf\xba\xc5"
4258                         "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d"
4259                         "\x28\x33\x3e\x49\x54\x5f\x6a\x75"
4260                         "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd"
4261                         "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25"
4262                         "\x30\x3b\x46\x51\x5c\x67\x72\x7d"
4263                         "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5"
4264                         "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d"
4265                         "\x38\x43\x4e\x59\x64\x6f\x7a\x85"
4266                         "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd"
4267                         "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35"
4268                         "\x40\x4b\x56\x61\x6c\x77\x82\x8d"
4269                         "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5"
4270                         "\xf0\xfb\x06\x11\x1c\x27\x32\x3d"
4271                         "\x48\x53\x5e\x69\x74\x7f\x8a\x95"
4272                         "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed"
4273                         "\xf8\x03\x0e\x19\x24\x2f\x3a\x45"
4274                         "\x50\x5b\x66\x71\x7c\x87\x92\x9d"
4275                         "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5"
4276                         "\x00\x0d\x1a\x27\x34\x41\x4e\x5b"
4277                         "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3"
4278                         "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b"
4279                         "\x38\x45\x52\x5f\x6c\x79\x86\x93"
4280                         "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb"
4281                         "\x08\x15\x22\x2f\x3c\x49\x56\x63"
4282                         "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb"
4283                         "\xd8\xe5\xf2\xff\x0c\x19\x26\x33"
4284                         "\x40\x4d\x5a\x67\x74\x81\x8e\x9b"
4285                         "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03"
4286                         "\x10\x1d\x2a\x37\x44\x51\x5e\x6b"
4287                         "\x78\x85\x92\x9f\xac\xb9\xc6\xd3"
4288                         "\xe0\xed\xfa\x07\x14\x21\x2e\x3b"
4289                         "\x48\x55\x62\x6f\x7c\x89\x96\xa3"
4290                         "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b"
4291                         "\x18\x25\x32\x3f\x4c\x59\x66\x73"
4292                         "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb"
4293                         "\xe8\xf5\x02\x0f\x1c\x29\x36\x43"
4294                         "\x50\x5d\x6a\x77\x84\x91\x9e\xab"
4295                         "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13"
4296                         "\x20\x2d\x3a\x47\x54\x61\x6e\x7b"
4297                         "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3"
4298                         "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b"
4299                         "\x58\x65\x72\x7f\x8c\x99\xa6\xb3"
4300                         "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b"
4301                         "\x28\x35\x42\x4f\x5c\x69\x76\x83"
4302                         "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb"
4303                         "\xf8\x05\x12\x1f\x2c\x39\x46\x53"
4304                         "\x60\x6d\x7a\x87\x94\xa1\xae\xbb"
4305                         "\xc8\xd5\xe2\xef\xfc\x09\x16\x23"
4306                         "\x30\x3d\x4a\x57\x64\x71\x7e\x8b"
4307                         "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3"
4308                         "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69"
4309                         "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1"
4310                         "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59"
4311                         "\x68\x77\x86\x95\xa4\xb3\xc2\xd1"
4312                         "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49"
4313                         "\x58\x67\x76\x85\x94\xa3\xb2\xc1"
4314                         "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39"
4315                         "\x48\x57\x66\x75\x84\x93\xa2\xb1"
4316                         "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29"
4317                         "\x38\x47\x56\x65\x74\x83\x92\xa1"
4318                         "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19"
4319                         "\x28\x37\x46\x55\x64\x73\x82\x91"
4320                         "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09"
4321                         "\x18\x27\x36\x45\x54\x63\x72\x81"
4322                         "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9"
4323                         "\x08\x17\x26\x35\x44\x53\x62\x71"
4324                         "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9"
4325                         "\xf8\x07\x16\x25\x34\x43\x52\x61"
4326                         "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9"
4327                         "\xe8\xf7\x06\x15\x24\x33\x42\x51"
4328                         "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9"
4329                         "\xd8\xe7\xf6\x05\x14\x23\x32\x41"
4330                         "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9"
4331                         "\xc8\xd7\xe6\xf5\x04\x13\x22\x31"
4332                         "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9"
4333                         "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21"
4334                         "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99"
4335                         "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11"
4336                         "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89"
4337                         "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01"
4338                         "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79"
4339                         "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1"
4340                         "\x00\x11\x22\x33\x44\x55\x66\x77"
4341                         "\x88\x99\xaa\xbb\xcc\xdd\xee\xff"
4342                         "\x10\x21\x32\x43\x54\x65\x76\x87"
4343                         "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f"
4344                         "\x20\x31\x42\x53\x64\x75\x86\x97"
4345                         "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f"
4346                         "\x30\x41\x52\x63\x74\x85\x96\xa7"
4347                         "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f"
4348                         "\x40\x51\x62\x73\x84\x95\xa6\xb7"
4349                         "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f"
4350                         "\x50\x61\x72\x83\x94\xa5\xb6\xc7"
4351                         "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f"
4352                         "\x60\x71\x82\x93\xa4\xb5\xc6\xd7"
4353                         "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f"
4354                         "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7"
4355                         "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f"
4356                         "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7"
4357                         "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f"
4358                         "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07"
4359                         "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f"
4360                         "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17"
4361                         "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f"
4362                         "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27"
4363                         "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf"
4364                         "\xc0\xd1\xe2\xf3\x04\x15\x26\x37"
4365                         "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf"
4366                         "\xd0\xe1\xf2\x03\x14\x25\x36\x47"
4367                         "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf"
4368                         "\xe0\xf1\x02\x13\x24\x35\x46\x57"
4369                         "\x68\x79\x8a\x9b\xac\xbd\xce\xdf"
4370                         "\xf0\x01\x12\x23\x34\x45\x56\x67"
4371                         "\x78\x89\x9a\xab\xbc\xcd\xde\xef"
4372                         "\x00\x13\x26\x39\x4c\x5f\x72\x85"
4373                         "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d"
4374                         "\x30\x43\x56\x69\x7c\x8f\xa2\xb5"
4375                         "\xc8\xdb\xee\x01\x14\x27\x3a\x4d"
4376                         "\x60\x73\x86\x99\xac\xbf\xd2\xe5"
4377                         "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d"
4378                         "\x90\xa3\xb6\xc9\xdc\xef\x02\x15"
4379                         "\x28\x3b\x4e\x61\x74\x87\x9a\xad"
4380                         "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45"
4381                         "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd"
4382                         "\xf0\x03\x16\x29\x3c\x4f\x62\x75"
4383                         "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d"
4384                         "\x20\x33\x46\x59\x6c\x7f\x92\xa5"
4385                         "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d"
4386                         "\x50\x63\x76\x89\x9c\xaf\xc2\xd5"
4387                         "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d"
4388                         "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05"
4389                         "\x18\x2b\x3e\x51\x64\x77\x8a\x9d"
4390                         "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35"
4391                         "\x48\x5b\x6e\x81\x94\xa7\xba\xcd"
4392                         "\xe0\xf3\x06\x19\x2c\x3f\x52\x65"
4393                         "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd"
4394                         "\x10\x23\x36\x49\x5c\x6f\x82\x95"
4395                         "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d"
4396                         "\x40\x53\x66\x79\x8c\x9f\xb2\xc5"
4397                         "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d"
4398                         "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5"
4399                         "\x08\x1b\x2e\x41\x54\x67\x7a\x8d"
4400                         "\xa0\xb3\xc6\xd9\xec\xff\x12\x25"
4401                         "\x38\x4b\x5e\x71\x84\x97\xaa\xbd"
4402                         "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55"
4403                         "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed"
4404                         "\x00\x15\x2a\x3f\x54\x69\x7e\x93"
4405                         "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b"
4406                         "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3"
4407                         "\xf8\x0d\x22\x37\x4c\x61\x76\x8b"
4408                         "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33"
4409                         "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb"
4410                         "\xf0\x05\x1a\x2f\x44\x59\x6e\x83"
4411                         "\x98\xad\xc2\xd7\xec\x01\x16\x2b"
4412                         "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3"
4413                         "\xe8\xfd\x12\x27\x3c\x51\x66\x7b"
4414                         "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23"
4415                         "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb"
4416                         "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73"
4417                         "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b"
4418                         "\x30\x45\x5a\x6f\x84\x99\xae\xc3"
4419                         "\xd8\xed\x02\x17\x2c\x41\x56\x6b"
4420                         "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13"
4421                         "\x28\x3d\x52\x67\x7c\x91\xa6\xbb"
4422                         "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63"
4423                         "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b"
4424                         "\x20\x35\x4a\x5f\x74\x89\x9e\xb3"
4425                         "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b"
4426                         "\x70\x85\x9a\xaf\xc4\xd9\xee\x03"
4427                         "\x18\x2d\x42\x57\x6c\x81\x96\xab"
4428                         "\xc0\xd5\xea\xff\x14\x29\x3e\x53"
4429                         "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb"
4430                         "\x10\x25\x3a\x4f\x64\x79\x8e\xa3"
4431                         "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b"
4432                         "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3"
4433                         "\x08\x1d\x32\x47\x5c\x71\x86\x9b"
4434                         "\xb0\xc5\xda\xef\x04\x19\x2e\x43"
4435                         "\x58\x6d\x82\x97\xac\xc1\xd6\xeb"
4436                         "\x00\x17\x2e\x45\x5c\x73\x8a\xa1"
4437                         "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59"
4438                         "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11"
4439                         "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9"
4440                         "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81"
4441                         "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39"
4442                         "\x50\x67\x7e\x95\xac\xc3\xda\xf1"
4443                         "\x08\x1f\x36\x4d\x64\x7b\x92\xa9"
4444                         "\xc0\xd7\xee\x05\x1c\x33\x4a\x61"
4445                         "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19"
4446                         "\x30\x47\x5e\x75\x8c\xa3\xba\xd1"
4447                         "\xe8\xff\x16\x2d\x44\x5b\x72\x89"
4448                         "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41"
4449                         "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9"
4450                         "\x10\x27\x3e\x55\x6c\x83\x9a\xb1"
4451                         "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69"
4452                         "\x80\x97\xae\xc5\xdc\xf3\x0a\x21"
4453                         "\x38\x4f\x66\x7d\x94\xab\xc2\xd9"
4454                         "\xf0\x07\x1e\x35\x4c\x63\x7a\x91"
4455                         "\xa8\xbf\xd6\xed\x04\x1b\x32\x49"
4456                         "\x60\x77\x8e\xa5\xbc\xd3\xea\x01"
4457                         "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9"
4458                         "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71"
4459                         "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29"
4460                         "\x40\x57\x6e\x85\x9c\xb3\xca\xe1"
4461                         "\xf8\x0f\x26\x3d\x54\x6b\x82\x99"
4462                         "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51"
4463                         "\x68\x7f\x96\xad\xc4\xdb\xf2\x09"
4464                         "\x20\x37\x4e\x65\x7c\x93\xaa\xc1"
4465                         "\xd8\xef\x06\x1d\x34\x4b\x62\x79"
4466                         "\x90\xa7\xbe\xd5\xec\x03\x1a\x31"
4467                         "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9"
4468                         "\x00\x19\x32\x4b\x64\x7d\x96\xaf"
4469                         "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77"
4470                         "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f"
4471                         "\x58\x71\x8a\xa3\xbc\xd5\xee\x07"
4472                         "\x20\x39\x52\x6b\x84\x9d\xb6\xcf"
4473                         "\xe8\x01\x1a\x33\x4c\x65\x7e\x97"
4474                         "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f"
4475                         "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27"
4476                         "\x40\x59\x72\x8b\xa4\xbd\xd6\xef"
4477                         "\x08\x21\x3a\x53\x6c\x85\x9e\xb7"
4478                         "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f"
4479                         "\x98\xb1\xca\xe3\xfc\x15\x2e\x47"
4480                         "\x60\x79\x92\xab\xc4\xdd\xf6\x0f"
4481                         "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7"
4482                         "\xf0\x09\x22\x3b\x54\x6d\x86\x9f"
4483                         "\xb8\xd1\xea\x03\x1c\x35\x4e\x67"
4484                         "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f"
4485                         "\x48\x61\x7a\x93\xac\xc5\xde\xf7"
4486                         "\x10\x29\x42\x5b\x74\x8d\xa6\xbf"
4487                         "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87"
4488                         "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f"
4489                         "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17"
4490                         "\x30\x49\x62\x7b\x94\xad\xc6\xdf"
4491                         "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7"
4492                         "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f"
4493                         "\x88\xa1\xba\xd3\xec\x05\x1e\x37"
4494                         "\x50\x69\x82\x9b\xb4\xcd\xe6\xff"
4495                         "\x18\x31\x4a\x63\x7c\x95\xae\xc7"
4496                         "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f"
4497                         "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57"
4498                         "\x70\x89\xa2\xbb\xd4\xed\x06\x1f"
4499                         "\x38\x51\x6a\x83\x9c\xb5\xce\xe7"
4500                         "\x00\x1b\x36\x51\x6c\x87\xa2\xbd"
4501                         "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95"
4502                         "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d"
4503                         "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45"
4504                         "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d"
4505                         "\x38\x53\x6e\x89\xa4\xbf\xda\xf5"
4506                         "\x10\x2b\x46\x61\x7c\x97\xb2\xcd"
4507                         "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5"
4508                         "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d"
4509                         "\x98\xb3\xce\xe9\x04\x1f\x3a\x55"
4510                         "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d"
4511                         "\x48\x63\x7e\x99\xb4\xcf\xea\x05"
4512                         "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd"
4513                         "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5"
4514                         "\xd0\xeb\x06\x21\x3c\x57\x72\x8d"
4515                         "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65"
4516                         "\x80\x9b\xb6\xd1\xec\x07\x22\x3d"
4517                         "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15"
4518                         "\x30\x4b\x66\x81\x9c\xb7\xd2\xed"
4519                         "\x08\x23\x3e\x59\x74\x8f\xaa\xc5"
4520                         "\xe0\xfb\x16\x31\x4c\x67\x82\x9d"
4521                         "\xb8\xd3\xee\x09\x24\x3f\x5a\x75"
4522                         "\x90\xab\xc6\xe1\xfc\x17\x32\x4d"
4523                         "\x68\x83\x9e\xb9\xd4\xef\x0a\x25"
4524                         "\x40\x5b\x76\x91\xac\xc7\xe2\xfd"
4525                         "\x18\x33\x4e\x69\x84\x9f\xba\xd5"
4526                         "\xf0\x0b\x26\x41\x5c\x77\x92\xad"
4527                         "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85"
4528                         "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d"
4529                         "\x78\x93\xae\xc9\xe4\xff\x1a\x35"
4530                         "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d"
4531                         "\x28\x43\x5e\x79\x94\xaf\xca\xe5"
4532                         "\x00\x1d\x3a\x57\x74\x91\xae\xcb"
4533                         "\xe8\x05\x22\x3f\x5c\x79\x96\xb3"
4534                         "\xd0\xed\x0a\x27\x44\x61\x7e\x9b"
4535                         "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83"
4536                         "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b"
4537                         "\x88\xa5\xc2\xdf\xfc\x19\x36\x53"
4538                         "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b"
4539                         "\x58\x75\x92\xaf\xcc\xe9\x06\x23"
4540                         "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b"
4541                         "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3"
4542                         "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb"
4543                         "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3"
4544                         "\xe0\xfd\x1a\x37\x54\x71\x8e\xab"
4545                         "\xc8\xe5\x02\x1f\x3c\x59\x76\x93"
4546                         "\xb0\xcd\xea\x07\x24\x41\x5e\x7b"
4547                         "\x98\xb5\xd2\xef\x0c\x29\x46\x63"
4548                         "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b"
4549                         "\x68\x85\xa2\xbf\xdc\xf9\x16\x33"
4550                         "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b"
4551                         "\x38\x55\x72\x8f\xac\xc9\xe6\x03"
4552                         "\x20\x3d\x5a\x77\x94\xb1\xce\xeb"
4553                         "\x08\x25\x42\x5f\x7c\x99\xb6\xd3"
4554                         "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb"
4555                         "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3"
4556                         "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b"
4557                         "\xa8\xc5\xe2\xff\x1c\x39\x56\x73"
4558                         "\x90\xad\xca\xe7\x04\x21\x3e\x5b"
4559                         "\x78\x95\xb2\xcf\xec\x09\x26\x43"
4560                         "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b"
4561                         "\x48\x65\x82\x9f\xbc\xd9\xf6\x13"
4562                         "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb"
4563                         "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3"
4564                         "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9"
4565                         "\xf8\x17\x36\x55\x74\x93\xb2\xd1"
4566                         "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9"
4567                         "\xe8\x07\x26\x45\x64\x83\xa2\xc1"
4568                         "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9"
4569                         "\xd8\xf7\x16\x35\x54\x73\x92\xb1"
4570                         "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9"
4571                         "\xc8\xe7\x06\x25\x44\x63\x82\xa1"
4572                         "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99"
4573                         "\xb8\xd7\xf6\x15\x34\x53\x72\x91"
4574                         "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89"
4575                         "\xa8\xc7\xe6\x05\x24\x43\x62\x81"
4576                         "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79"
4577                         "\x98\xb7\xd6\xf5\x14\x33\x52\x71"
4578                         "\x90\xaf\xce\xed\x0c\x2b\x4a\x69"
4579                         "\x88\xa7\xc6\xe5\x04\x23\x42\x61"
4580                         "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59"
4581                         "\x78\x97\xb6\xd5\xf4\x13\x32\x51"
4582                         "\x70\x8f\xae\xcd\xec\x0b\x2a\x49"
4583                         "\x68\x87\xa6\xc5\xe4\x03\x22\x41"
4584                         "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39"
4585                         "\x58\x77\x96\xb5\xd4\xf3\x12\x31"
4586                         "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29"
4587                         "\x48\x67\x86\xa5\xc4\xe3\x02\x21"
4588                         "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19"
4589                         "\x38\x57\x76\x95\xb4\xd3\xf2\x11"
4590                         "\x30\x4f\x6e\x8d\xac\xcb\xea\x09"
4591                         "\x28\x47\x66\x85\xa4\xc3\xe2\x01"
4592                         "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9"
4593                         "\x18\x37\x56\x75\x94\xb3\xd2\xf1"
4594                         "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9"
4595                         "\x08\x27\x46\x65\x84\xa3\xc2\xe1"
4596                         "\x00\x21\x42\x63",
4597                 .ilen = 4100,
4598                 .result =
4599                         "\xf0\x5c\x74\xad\x4e\xbc\x99\xe2"
4600                         "\xae\xff\x91\x3a\x44\xcf\x38\x32"
4601                         "\x1e\xad\xa7\xcd\xa1\x39\x95\xaa"
4602                         "\x10\xb1\xb3\x2e\x04\x31\x8f\x86"
4603                         "\xf2\x62\x74\x70\x0c\xa4\x46\x08"
4604                         "\xa8\xb7\x99\xa8\xe9\xd2\x73\x79"
4605                         "\x7e\x6e\xd4\x8f\x1e\xc7\x8e\x31"
4606                         "\x0b\xfa\x4b\xce\xfd\xf3\x57\x71"
4607                         "\xe9\x46\x03\xa5\x3d\x34\x00\xe2"
4608                         "\x18\xff\x75\x6d\x06\x2d\x00\xab"
4609                         "\xb9\x3e\x6c\x59\xc5\x84\x06\xb5"
4610                         "\x8b\xd0\x89\x9c\x4a\x79\x16\xc6"
4611                         "\x3d\x74\x54\xfa\x44\xcd\x23\x26"
4612                         "\x5c\xcf\x7e\x28\x92\x32\xbf\xdf"
4613                         "\xa7\x20\x3c\x74\x58\x2a\x9a\xde"
4614                         "\x61\x00\x1c\x4f\xff\x59\xc4\x22"
4615                         "\xac\x3c\xd0\xe8\x6c\xf9\x97\x1b"
4616                         "\x58\x9b\xad\x71\xe8\xa9\xb5\x0d"
4617                         "\xee\x2f\x04\x1f\x7f\xbc\x99\xee"
4618                         "\x84\xff\x42\x60\xdc\x3a\x18\xa5"
4619                         "\x81\xf9\xef\xdc\x7a\x0f\x65\x41"
4620                         "\x2f\xa3\xd3\xf9\xc2\xcb\xc0\x4d"
4621                         "\x8f\xd3\x76\x96\xad\x49\x6d\x38"
4622                         "\x3d\x39\x0b\x6c\x80\xb7\x54\x69"
4623                         "\xf0\x2c\x90\x02\x29\x0d\x1c\x12"
4624                         "\xad\x55\xc3\x8b\x68\xd9\xcc\xb3"
4625                         "\xb2\x64\x33\x90\x5e\xca\x4b\xe2"
4626                         "\xfb\x75\xdc\x63\xf7\x9f\x82\x74"
4627                         "\xf0\xc9\xaa\x7f\xe9\x2a\x9b\x33"
4628                         "\xbc\x88\x00\x7f\xca\xb2\x1f\x14"
4629                         "\xdb\xc5\x8e\x7b\x11\x3c\x3e\x08"
4630                         "\xf3\x83\xe8\xe0\x94\x86\x2e\x92"
4631                         "\x78\x6b\x01\xc9\xc7\x83\xba\x21"
4632                         "\x6a\x25\x15\x33\x4e\x45\x08\xec"
4633                         "\x35\xdb\xe0\x6e\x31\x51\x79\xa9"
4634                         "\x42\x44\x65\xc1\xa0\xf1\xf9\x2a"
4635                         "\x70\xd5\xb6\xc6\xc1\x8c\x39\xfc"
4636                         "\x25\xa6\x55\xd9\xdd\x2d\x4c\xec"
4637                         "\x49\xc6\xeb\x0e\xa8\x25\x2a\x16"
4638                         "\x1b\x66\x84\xda\xe2\x92\xe5\xc0"
4639                         "\xc8\x53\x07\xaf\x80\x84\xec\xfd"
4640                         "\xcd\xd1\x6e\xcd\x6f\x6a\xf5\x36"
4641                         "\xc5\x15\xe5\x25\x7d\x77\xd1\x1a"
4642                         "\x93\x36\xa9\xcf\x7c\xa4\x54\x4a"
4643                         "\x06\x51\x48\x4e\xf6\x59\x87\xd2"
4644                         "\x04\x02\xef\xd3\x44\xde\x76\x31"
4645                         "\xb3\x34\x17\x1b\x9d\x66\x11\x9f"
4646                         "\x1e\xcc\x17\xe9\xc7\x3c\x1b\xe7"
4647                         "\xcb\x50\x08\xfc\xdc\x2b\x24\xdb"
4648                         "\x65\x83\xd0\x3b\xe3\x30\xea\x94"
4649                         "\x6c\xe7\xe8\x35\x32\xc7\xdb\x64"
4650                         "\xb4\x01\xab\x36\x2c\x77\x13\xaf"
4651                         "\xf8\x2b\x88\x3f\x54\x39\xc4\x44"
4652                         "\xfe\xef\x6f\x68\x34\xbe\x0f\x05"
4653                         "\x16\x6d\xf6\x0a\x30\xe7\xe3\xed"
4654                         "\xc4\xde\x3c\x1b\x13\xd8\xdb\xfe"
4655                         "\x41\x62\xe5\x28\xd4\x8d\xa3\xc7"
4656                         "\x93\x97\xc6\x48\x45\x1d\x9f\x83"
4657                         "\xdf\x4b\x40\x3e\x42\x25\x87\x80"
4658                         "\x4c\x7d\xa8\xd4\x98\x23\x95\x75"
4659                         "\x41\x8c\xda\x41\x9b\xd4\xa7\x06"
4660                         "\xb5\xf1\x71\x09\x53\xbe\xca\xbf"
4661                         "\x32\x03\xed\xf0\x50\x1c\x56\x39"
4662                         "\x5b\xa4\x75\x18\xf7\x9b\x58\xef"
4663                         "\x53\xfc\x2a\x38\x23\x15\x75\xcd"
4664                         "\x45\xe5\x5a\x82\x55\xba\x21\xfa"
4665                         "\xd4\xbd\xc6\x94\x7c\xc5\x80\x12"
4666                         "\xf7\x4b\x32\xc4\x9a\x82\xd8\x28"
4667                         "\x8f\xd9\xc2\x0f\x60\x03\xbe\x5e"
4668                         "\x21\xd6\x5f\x58\xbf\x5c\xb1\x32"
4669                         "\x82\x8d\xa9\xe5\xf2\x66\x1a\xc0"
4670                         "\xa0\xbc\x58\x2f\x71\xf5\x2f\xed"
4671                         "\xd1\x26\xb9\xd8\x49\x5a\x07\x19"
4672                         "\x01\x7c\x59\xb0\xf8\xa4\xb7\xd3"
4673                         "\x7b\x1a\x8c\x38\xf4\x50\xa4\x59"
4674                         "\xb0\xcc\x41\x0b\x88\x7f\xe5\x31"
4675                         "\xb3\x42\xba\xa2\x7e\xd4\x32\x71"
4676                         "\x45\x87\x48\xa9\xc2\xf2\x89\xb3"
4677                         "\xe4\xa7\x7e\x52\x15\x61\xfa\xfe"
4678                         "\xc9\xdd\x81\xeb\x13\xab\xab\xc3"
4679                         "\x98\x59\xd8\x16\x3d\x14\x7a\x1c"
4680                         "\x3c\x41\x9a\x16\x16\x9b\xd2\xd2"
4681                         "\x69\x3a\x29\x23\xac\x86\x32\xa5"
4682                         "\x48\x9c\x9e\xf3\x47\x77\x81\x70"
4683                         "\x24\xe8\x85\xd2\xf5\xb5\xfa\xff"
4684                         "\x59\x6a\xd3\x50\x59\x43\x59\xde"
4685                         "\xd9\xf1\x55\xa5\x0c\xc3\x1a\x1a"
4686                         "\x18\x34\x0d\x1a\x63\x33\xed\x10"
4687                         "\xe0\x1d\x2a\x18\xd2\xc0\x54\xa8"
4688                         "\xca\xb5\x9a\xd3\xdd\xca\x45\x84"
4689                         "\x50\xe7\x0f\xfe\xa4\x99\x5a\xbe"
4690                         "\x43\x2d\x9a\xcb\x92\x3f\x5a\x1d"
4691                         "\x85\xd8\xc9\xdf\x68\xc9\x12\x80"
4692                         "\x56\x0c\xdc\x00\xdc\x3a\x7d\x9d"
4693                         "\xa3\xa2\xe8\x4d\xbf\xf9\x70\xa0"
4694                         "\xa4\x13\x4f\x6b\xaf\x0a\x89\x7f"
4695                         "\xda\xf0\xbf\x9b\xc8\x1d\xe5\xf8"
4696                         "\x2e\x8b\x07\xb5\x73\x1b\xcc\xa2"
4697                         "\xa6\xad\x30\xbc\x78\x3c\x5b\x10"
4698                         "\xfa\x5e\x62\x2d\x9e\x64\xb3\x33"
4699                         "\xce\xf9\x1f\x86\xe7\x8b\xa2\xb8"
4700                         "\xe8\x99\x57\x8c\x11\xed\x66\xd9"
4701                         "\x3c\x72\xb9\xc3\xe6\x4e\x17\x3a"
4702                         "\x6a\xcb\x42\x24\x06\xed\x3e\x4e"
4703                         "\xa3\xe8\x6a\x94\xda\x0d\x4e\xd5"
4704                         "\x14\x19\xcf\xb6\x26\xd8\x2e\xcc"
4705                         "\x64\x76\x38\x49\x4d\xfe\x30\x6d"
4706                         "\xe4\xc8\x8c\x7b\xc4\xe0\x35\xba"
4707                         "\x22\x6e\x76\xe1\x1a\xf2\x53\xc3"
4708                         "\x28\xa2\x82\x1f\x61\x69\xad\xc1"
4709                         "\x7b\x28\x4b\x1e\x6c\x85\x95\x9b"
4710                         "\x51\xb5\x17\x7f\x12\x69\x8c\x24"
4711                         "\xd5\xc7\x5a\x5a\x11\x54\xff\x5a"
4712                         "\xf7\x16\xc3\x91\xa6\xf0\xdc\x0a"
4713                         "\xb6\xa7\x4a\x0d\x7a\x58\xfe\xa5"
4714                         "\xf5\xcb\x8f\x7b\x0e\xea\x57\xe7"
4715                         "\xbd\x79\xd6\x1c\x88\x23\x6c\xf2"
4716                         "\x4d\x29\x77\x53\x35\x6a\x00\x8d"
4717                         "\xcd\xa3\x58\xbe\x77\x99\x18\xf8"
4718                         "\xe6\xe1\x8f\xe9\x37\x8f\xe3\xe2"
4719                         "\x5a\x8a\x93\x25\xaf\xf3\x78\x80"
4720                         "\xbe\xa6\x1b\xc6\xac\x8b\x1c\x91"
4721                         "\x58\xe1\x9f\x89\x35\x9d\x1d\x21"
4722                         "\x29\x9f\xf4\x99\x02\x27\x0f\xa8"
4723                         "\x4f\x79\x94\x2b\x33\x2c\xda\xa2"
4724                         "\x26\x39\x83\x94\xef\x27\xd8\x53"
4725                         "\x8f\x66\x0d\xe4\x41\x7d\x34\xcd"
4726                         "\x43\x7c\x95\x0a\x53\xef\x66\xda"
4727                         "\x7e\x9b\xf3\x93\xaf\xd0\x73\x71"
4728                         "\xba\x40\x9b\x74\xf8\xd7\xd7\x41"
4729                         "\x6d\xaf\x72\x9c\x8d\x21\x87\x3c"
4730                         "\xfd\x0a\x90\xa9\x47\x96\x9e\xd3"
4731                         "\x88\xee\x73\xcf\x66\x2f\x52\x56"
4732                         "\x6d\xa9\x80\x4c\xe2\x6f\x62\x88"
4733                         "\x3f\x0e\x54\x17\x48\x80\x5d\xd3"
4734                         "\xc3\xda\x25\x3d\xa1\xc8\xcb\x9f"
4735                         "\x9b\x70\xb3\xa1\xeb\x04\x52\xa1"
4736                         "\xf2\x22\x0f\xfc\xc8\x18\xfa\xf9"
4737                         "\x85\x9c\xf1\xac\xeb\x0c\x02\x46"
4738                         "\x75\xd2\xf5\x2c\xe3\xd2\x59\x94"
4739                         "\x12\xf3\x3c\xfc\xd7\x92\xfa\x36"
4740                         "\xba\x61\x34\x38\x7c\xda\x48\x3e"
4741                         "\x08\xc9\x39\x23\x5e\x02\x2c\x1a"
4742                         "\x18\x7e\xb4\xd9\xfd\x9e\x40\x02"
4743                         "\xb1\x33\x37\x32\xe7\xde\xd6\xd0"
4744                         "\x7c\x58\x65\x4b\xf8\x34\x27\x9c"
4745                         "\x44\xb4\xbd\xe9\xe9\x4c\x78\x7d"
4746                         "\x4b\x9f\xce\xb1\xcd\x47\xa5\x37"
4747                         "\xe5\x6d\xbd\xb9\x43\x94\x0a\xd4"
4748                         "\xd6\xf9\x04\x5f\xb5\x66\x6c\x1a"
4749                         "\x35\x12\xe3\x36\x28\x27\x36\x58"
4750                         "\x01\x2b\x79\xe4\xba\x6d\x10\x7d"
4751                         "\x65\xdf\x84\x95\xf4\xd5\xb6\x8f"
4752                         "\x2b\x9f\x96\x00\x86\x60\xf0\x21"
4753                         "\x76\xa8\x6a\x8c\x28\x1c\xb3\x6b"
4754                         "\x97\xd7\xb6\x53\x2a\xcc\xab\x40"
4755                         "\x9d\x62\x79\x58\x52\xe6\x65\xb7"
4756                         "\xab\x55\x67\x9c\x89\x7c\x03\xb0"
4757                         "\x73\x59\xc5\x81\xf5\x18\x17\x5c"
4758                         "\x89\xf3\x78\x35\x44\x62\x78\x72"
4759                         "\xd0\x96\xeb\x31\xe7\x87\x77\x14"
4760                         "\x99\x51\xf2\x59\x26\x9e\xb5\xa6"
4761                         "\x45\xfe\x6e\xbd\x07\x4c\x94\x5a"
4762                         "\xa5\x7d\xfc\xf1\x2b\x77\xe2\xfe"
4763                         "\x17\xd4\x84\xa0\xac\xb5\xc7\xda"
4764                         "\xa9\x1a\xb6\xf3\x74\x11\xb4\x9d"
4765                         "\xfb\x79\x2e\x04\x2d\x50\x28\x83"
4766                         "\xbf\xc6\x52\xd3\x34\xd6\xe8\x7a"
4767                         "\xb6\xea\xe7\xa8\x6c\x15\x1e\x2c"
4768                         "\x57\xbc\x48\x4e\x5f\x5c\xb6\x92"
4769                         "\xd2\x49\x77\x81\x6d\x90\x70\xae"
4770                         "\x98\xa1\x03\x0d\x6b\xb9\x77\x14"
4771                         "\xf1\x4e\x23\xd3\xf8\x68\xbd\xc2"
4772                         "\xfe\x04\xb7\x5c\xc5\x17\x60\x8f"
4773                         "\x65\x54\xa4\x7a\x42\xdc\x18\x0d"
4774                         "\xb5\xcf\x0f\xd3\xc7\x91\x66\x1b"
4775                         "\x45\x42\x27\x75\x50\xe5\xee\xb8"
4776                         "\x7f\x33\x2c\xba\x4a\x92\x4d\x2c"
4777                         "\x3c\xe3\x0d\x80\x01\xba\x0d\x29"
4778                         "\xd8\x3c\xe9\x13\x16\x57\xe6\xea"
4779                         "\x94\x52\xe7\x00\x4d\x30\xb0\x0f"
4780                         "\x35\xb8\xb8\xa7\xb1\xb5\x3b\x44"
4781                         "\xe1\x2f\xfd\x88\xed\x43\xe7\x52"
4782                         "\x10\x93\xb3\x8a\x30\x6b\x0a\xf7"
4783                         "\x23\xc6\x50\x9d\x4a\xb0\xde\xc3"
4784                         "\xdc\x9b\x2f\x01\x56\x36\x09\xc5"
4785                         "\x2f\x6b\xfe\xf1\xd8\x27\x45\x03"
4786                         "\x30\x5e\x5c\x5b\xb4\x62\x0e\x1a"
4787                         "\xa9\x21\x2b\x92\x94\x87\x62\x57"
4788                         "\x4c\x10\x74\x1a\xf1\x0a\xc5\x84"
4789                         "\x3b\x9e\x72\x02\xd7\xcc\x09\x56"
4790                         "\xbd\x54\xc1\xf0\xc3\xe3\xb3\xf8"
4791                         "\xd2\x0d\x61\xcb\xef\xce\x0d\x05"
4792                         "\xb0\x98\xd9\x8e\x4f\xf9\xbc\x93"
4793                         "\xa6\xea\xc8\xcf\x10\x53\x4b\xf1"
4794                         "\xec\xfc\x89\xf9\x64\xb0\x22\xbf"
4795                         "\x9e\x55\x46\x9f\x7c\x50\x8e\x84"
4796                         "\x54\x20\x98\xd7\x6c\x40\x1e\xdb"
4797                         "\x69\x34\x78\x61\x24\x21\x9c\x8a"
4798                         "\xb3\x62\x31\x8b\x6e\xf5\x2a\x35"
4799                         "\x86\x13\xb1\x6c\x64\x2e\x41\xa5"
4800                         "\x05\xf2\x42\xba\xd2\x3a\x0d\x8e"
4801                         "\x8a\x59\x94\x3c\xcf\x36\x27\x82"
4802                         "\xc2\x45\xee\x58\xcd\x88\xb4\xec"
4803                         "\xde\xb2\x96\x0a\xaf\x38\x6f\x88"
4804                         "\xd7\xd8\xe1\xdf\xb9\x96\xa9\x0a"
4805                         "\xb1\x95\x28\x86\x20\xe9\x17\x49"
4806                         "\xa2\x29\x38\xaa\xa5\xe9\x6e\xf1"
4807                         "\x19\x27\xc0\xd5\x2a\x22\xc3\x0b"
4808                         "\xdb\x7c\x73\x10\xb9\xba\x89\x76"
4809                         "\x54\xae\x7d\x71\xb3\x93\xf6\x32"
4810                         "\xe6\x47\x43\x55\xac\xa0\x0d\xc2"
4811                         "\x93\x27\x4a\x8e\x0e\x74\x15\xc7"
4812                         "\x0b\x85\xd9\x0c\xa9\x30\x7a\x3e"
4813                         "\xea\x8f\x85\x6d\x3a\x12\x4f\x72"
4814                         "\x69\x58\x7a\x80\xbb\xb5\x97\xf3"
4815                         "\xcf\x70\xd2\x5d\xdd\x4d\x21\x79"
4816                         "\x54\x4d\xe4\x05\xe8\xbd\xc2\x62"
4817                         "\xb1\x3b\x77\x1c\xd6\x5c\xf3\xa0"
4818                         "\x79\x00\xa8\x6c\x29\xd9\x18\x24"
4819                         "\x36\xa2\x46\xc0\x96\x65\x7f\xbd"
4820                         "\x2a\xed\x36\x16\x0c\xaa\x9f\xf4"
4821                         "\xc5\xb4\xe2\x12\xed\x69\xed\x4f"
4822                         "\x26\x2c\x39\x52\x89\x98\xe7\x2c"
4823                         "\x99\xa4\x9e\xa3\x9b\x99\x46\x7a"
4824                         "\x3a\xdc\xa8\x59\xa3\xdb\xc3\x3b"
4825                         "\x95\x0d\x3b\x09\x6e\xee\x83\x5d"
4826                         "\x32\x4d\xed\xab\xfa\x98\x14\x4e"
4827                         "\xc3\x15\x45\x53\x61\xc4\x93\xbd"
4828                         "\x90\xf4\x99\x95\x4c\xe6\x76\x92"
4829                         "\x29\x90\x46\x30\x92\x69\x7d\x13"
4830                         "\xf2\xa5\xcd\x69\x49\x44\xb2\x0f"
4831                         "\x63\x40\x36\x5f\x09\xe2\x78\xf8"
4832                         "\x91\xe3\xe2\xfa\x10\xf7\xc8\x24"
4833                         "\xa8\x89\x32\x5c\x37\x25\x1d\xb2"
4834                         "\xea\x17\x8a\x0a\xa9\x64\xc3\x7c"
4835                         "\x3c\x7c\xbd\xc6\x79\x34\xe7\xe2"
4836                         "\x85\x8e\xbf\xf8\xde\x92\xa0\xae"
4837                         "\x20\xc4\xf6\xbb\x1f\x38\x19\x0e"
4838                         "\xe8\x79\x9c\xa1\x23\xe9\x54\x7e"
4839                         "\x37\x2f\xe2\x94\x32\xaf\xa0\x23"
4840                         "\x49\xe4\xc0\xb3\xac\x00\x8f\x36"
4841                         "\x05\xc4\xa6\x96\xec\x05\x98\x4f"
4842                         "\x96\x67\x57\x1f\x20\x86\x1b\x2d"
4843                         "\x69\xe4\x29\x93\x66\x5f\xaf\x6b"
4844                         "\x88\x26\x2c\x67\x02\x4b\x52\xd0"
4845                         "\x83\x7a\x43\x1f\xc0\x71\x15\x25"
4846                         "\x77\x65\x08\x60\x11\x76\x4c\x8d"
4847                         "\xed\xa9\x27\xc6\xb1\x2a\x2c\x6a"
4848                         "\x4a\x97\xf5\xc6\xb7\x70\x42\xd3"
4849                         "\x03\xd1\x24\x95\xec\x6d\xab\x38"
4850                         "\x72\xce\xe2\x8b\x33\xd7\x51\x09"
4851                         "\xdc\x45\xe0\x09\x96\x32\xf3\xc4"
4852                         "\x84\xdc\x73\x73\x2d\x1b\x11\x98"
4853                         "\xc5\x0e\x69\x28\x94\xc7\xb5\x4d"
4854                         "\xc8\x8a\xd0\xaa\x13\x2e\x18\x74"
4855                         "\xdd\xd1\x1e\xf3\x90\xe8\xfc\x9a"
4856                         "\x72\x4a\x0e\xd1\xe4\xfb\x0d\x96"
4857                         "\xd1\x0c\x79\x85\x1b\x1c\xfe\xe1"
4858                         "\x62\x8f\x7a\x73\x32\xab\xc8\x18"
4859                         "\x69\xe3\x34\x30\xdf\x13\xa6\xe5"
4860                         "\xe8\x0e\x67\x7f\x81\x11\xb4\x60"
4861                         "\xc7\xbd\x79\x65\x50\xdc\xc4\x5b"
4862                         "\xde\x39\xa4\x01\x72\x63\xf3\xd1"
4863                         "\x64\x4e\xdf\xfc\x27\x92\x37\x0d"
4864                         "\x57\xcd\x11\x4f\x11\x04\x8e\x1d"
4865                         "\x16\xf7\xcd\x92\x9a\x99\x30\x14"
4866                         "\xf1\x7c\x67\x1b\x1f\x41\x0b\xe8"
4867                         "\x32\xe8\xb8\xc1\x4f\x54\x86\x4f"
4868                         "\xe5\x79\x81\x73\xcd\x43\x59\x68"
4869                         "\x73\x02\x3b\x78\x21\x72\x43\x00"
4870                         "\x49\x17\xf7\x00\xaf\x68\x24\x53"
4871                         "\x05\x0a\xc3\x33\xe0\x33\x3f\x69"
4872                         "\xd2\x84\x2f\x0b\xed\xde\x04\xf4"
4873                         "\x11\x94\x13\x69\x51\x09\x28\xde"
4874                         "\x57\x5c\xef\xdc\x9a\x49\x1c\x17"
4875                         "\x97\xf3\x96\xc1\x7f\x5d\x2e\x7d"
4876                         "\x55\xb8\xb3\x02\x09\xb3\x1f\xe7"
4877                         "\xc9\x8d\xa3\x36\x34\x8a\x77\x13"
4878                         "\x30\x63\x4c\xa5\xcd\xc3\xe0\x7e"
4879                         "\x05\xa1\x7b\x0c\xcb\x74\x47\x31"
4880                         "\x62\x03\x43\xf1\x87\xb4\xb0\x85"
4881                         "\x87\x8e\x4b\x25\xc7\xcf\xae\x4b"
4882                         "\x36\x46\x3e\x62\xbc\x6f\xeb\x5f"
4883                         "\x73\xac\xe6\x07\xee\xc1\xa1\xd6"
4884                         "\xc4\xab\xc9\xd6\x89\x45\xe1\xf1"
4885                         "\x04\x4e\x1a\x6f\xbb\x4f\x3a\xa3"
4886                         "\xa0\xcb\xa3\x0a\xd8\x71\x35\x55"
4887                         "\xe4\xbc\x2e\x04\x06\xe6\xff\x5b"
4888                         "\x1c\xc0\x11\x7c\xc5\x17\xf3\x38"
4889                         "\xcf\xe9\xba\x0f\x0e\xef\x02\xc2"
4890                         "\x8d\xc6\xbc\x4b\x67\x20\x95\xd7"
4891                         "\x2c\x45\x5b\x86\x44\x8c\x6f\x2e"
4892                         "\x7e\x9f\x1c\x77\xba\x6b\x0e\xa3"
4893                         "\x69\xdc\xab\x24\x57\x60\x47\xc1"
4894                         "\xd1\xa5\x9d\x23\xe6\xb1\x37\xfe"
4895                         "\x93\xd2\x4c\x46\xf9\x0c\xc6\xfb"
4896                         "\xd6\x9d\x99\x69\xab\x7a\x07\x0c"
4897                         "\x65\xe7\xc4\x08\x96\xe2\xa5\x01"
4898                         "\x3f\x46\x07\x05\x7e\xe8\x9a\x90"
4899                         "\x50\xdc\xe9\x7a\xea\xa1\x39\x6e"
4900                         "\x66\xe4\x6f\xa5\x5f\xb2\xd9\x5b"
4901                         "\xf5\xdb\x2a\x32\xf0\x11\x6f\x7c"
4902                         "\x26\x10\x8f\x3d\x80\xe9\x58\xf7"
4903                         "\xe0\xa8\x57\xf8\xdb\x0e\xce\x99"
4904                         "\x63\x19\x3d\xd5\xec\x1b\x77\x69"
4905                         "\x98\xf6\xe4\x5f\x67\x17\x4b\x09"
4906                         "\x85\x62\x82\x70\x18\xe2\x9a\x78"
4907                         "\xe2\x62\xbd\xb4\xf1\x42\xc6\xfb"
4908                         "\x08\xd0\xbd\xeb\x4e\x09\xf2\xc8"
4909                         "\x1e\xdc\x3d\x32\x21\x56\x9c\x4f"
4910                         "\x35\xf3\x61\x06\x72\x84\xc4\x32"
4911                         "\xf2\xf1\xfa\x0b\x2f\xc3\xdb\x02"
4912                         "\x04\xc2\xde\x57\x64\x60\x8d\xcf"
4913                         "\xcb\x86\x5d\x97\x3e\xb1\x9c\x01"
4914                         "\xd6\x28\x8f\x99\xbc\x46\xeb\x05"
4915                         "\xaf\x7e\xb8\x21\x2a\x56\x85\x1c"
4916                         "\xb3\x71\xa0\xde\xca\x96\xf1\x78"
4917                         "\x49\xa2\x99\x81\x80\x5c\x01\xf5"
4918                         "\xa0\xa2\x56\x63\xe2\x70\x07\xa5"
4919                         "\x95\xd6\x85\xeb\x36\x9e\xa9\x51"
4920                         "\x66\x56\x5f\x1d\x02\x19\xe2\xf6"
4921                         "\x4f\x73\x38\x09\x75\x64\x48\xe0"
4922                         "\xf1\x7e\x0e\xe8\x9d\xf9\xed\x94"
4923                         "\xfe\x16\x26\x62\x49\x74\xf4\xb0"
4924                         "\xd4\xa9\x6c\xb0\xfd\x53\xe9\x81"
4925                         "\xe0\x7a\xbf\xcf\xb5\xc4\x01\x81"
4926                         "\x79\x99\x77\x01\x3b\xe9\xa2\xb6"
4927                         "\xe6\x6a\x8a\x9e\x56\x1c\x8d\x1e"
4928                         "\x8f\x06\x55\x2c\x6c\xdc\x92\x87"
4929                         "\x64\x3b\x4b\x19\xa1\x13\x64\x1d"
4930                         "\x4a\xe9\xc0\x00\xb8\x95\xef\x6b"
4931                         "\x1a\x86\x6d\x37\x52\x02\xc2\xe0"
4932                         "\xc8\xbb\x42\x0c\x02\x21\x4a\xc9"
4933                         "\xef\xa0\x54\xe4\x5e\x16\x53\x81"
4934                         "\x70\x62\x10\xaf\xde\xb8\xb5\xd3"
4935                         "\xe8\x5e\x6c\xc3\x8a\x3e\x18\x07"
4936                         "\xf2\x2f\x7d\xa7\xe1\x3d\x4e\xb4"
4937                         "\x26\xa7\xa3\x93\x86\xb2\x04\x1e"
4938                         "\x53\x5d\x86\xd6\xde\x65\xca\xe3"
4939                         "\x4e\xc1\xcf\xef\xc8\x70\x1b\x83"
4940                         "\x13\xdd\x18\x8b\x0d\x76\xd2\xf6"
4941                         "\x37\x7a\x93\x7a\x50\x11\x9f\x96"
4942                         "\x86\x25\xfd\xac\xdc\xbe\x18\x93"
4943                         "\x19\x6b\xec\x58\x4f\xb9\x75\xa7"
4944                         "\xdd\x3f\x2f\xec\xc8\x5a\x84\xab"
4945                         "\xd5\xe4\x8a\x07\xf6\x4d\x23\xd6"
4946                         "\x03\xfb\x03\x6a\xea\x66\xbf\xd4"
4947                         "\xb1\x34\xfb\x78\xe9\x55\xdc\x7c"
4948                         "\x3d\x9c\xe5\x9a\xac\xc3\x7a\x80"
4949                         "\x24\x6d\xa0\xef\x25\x7c\xb7\xea"
4950                         "\xce\x4d\x5f\x18\x60\xce\x87\x22"
4951                         "\x66\x2f\xd5\xdd\xdd\x02\x21\x75"
4952                         "\x82\xa0\x1f\x58\xc6\xd3\x62\xf7"
4953                         "\x32\xd8\xaf\x1e\x07\x77\x51\x96"
4954                         "\xd5\x6b\x1e\x7e\x80\x02\xe8\x67"
4955                         "\xea\x17\x0b\x10\xd2\x3f\x28\x25"
4956                         "\x4f\x05\x77\x02\x14\x69\xf0\x2c"
4957                         "\xbe\x0c\xf1\x74\x30\xd1\xb9\x9b"
4958                         "\xfc\x8c\xbb\x04\x16\xd9\xba\xc3"
4959                         "\xbc\x91\x8a\xc4\x30\xa4\xb0\x12"
4960                         "\x4c\x21\x87\xcb\xc9\x1d\x16\x96"
4961                         "\x07\x6f\x23\x54\xb9\x6f\x79\xe5"
4962                         "\x64\xc0\x64\xda\xb1\xae\xdd\x60"
4963                         "\x6c\x1a\x9d\xd3\x04\x8e\x45\xb0"
4964                         "\x92\x61\xd0\x48\x81\xed\x5e\x1d"
4965                         "\xa0\xc9\xa4\x33\xc7\x13\x51\x5d"
4966                         "\x7f\x83\x73\xb6\x70\x18\x65\x3e"
4967                         "\x2f\x0e\x7a\x12\x39\x98\xab\xd8"
4968                         "\x7e\x6f\xa3\xd1\xba\x56\xad\xbd"
4969                         "\xf0\x03\x01\x1c\x85\x35\x9f\xeb"
4970                         "\x19\x63\xa1\xaf\xfe\x2d\x35\x50"
4971                         "\x39\xa0\x65\x7c\x95\x7e\x6b\xfe"
4972                         "\xc1\xac\x07\x7c\x98\x4f\xbe\x57"
4973                         "\xa7\x22\xec\xe2\x7e\x29\x09\x53"
4974                         "\xe8\xbf\xb4\x7e\x3f\x8f\xfc\x14"
4975                         "\xce\x54\xf9\x18\x58\xb5\xff\x44"
4976                         "\x05\x9d\xce\x1b\xb6\x82\x23\xc8"
4977                         "\x2e\xbc\x69\xbb\x4a\x29\x0f\x65"
4978                         "\x94\xf0\x63\x06\x0e\xef\x8c\xbd"
4979                         "\xff\xfd\xb0\x21\x6e\x57\x05\x75"
4980                         "\xda\xd5\xc4\xeb\x8d\x32\xf7\x50"
4981                         "\xd3\x6f\x22\xed\x5f\x8e\xa2\x5b"
4982                         "\x80\x8c\xc8\x78\x40\x24\x4b\x89"
4983                         "\x30\xce\x7a\x97\x0e\xc4\xaf\xef"
4984                         "\x9b\xb4\xcd\x66\x74\x14\x04\x2b"
4985                         "\xf7\xce\x0b\x1c\x6e\xc2\x78\x8c"
4986                         "\xca\xc5\xd0\x1c\x95\x4a\x91\x2d"
4987                         "\xa7\x20\xeb\x86\x52\xb7\x67\xd8"
4988                         "\x0c\xd6\x04\x14\xde\x51\x74\x75"
4989                         "\xe7\x11\xb4\x87\xa3\x3d\x2d\xad"
4990                         "\x4f\xef\xa0\x0f\x70\x00\x6d\x13"
4991                         "\x19\x1d\x41\x50\xe9\xd8\xf0\x32"
4992                         "\x71\xbc\xd3\x11\xf2\xac\xbe\xaf"
4993                         "\x75\x46\x65\x4e\x07\x34\x37\xa3"
4994                         "\x89\xfe\x75\xd4\x70\x4c\xc6\x3f"
4995                         "\x69\x24\x0e\x38\x67\x43\x8c\xde"
4996                         "\x06\xb5\xb8\xe7\xc4\xf0\x41\x8f"
4997                         "\xf0\xbd\x2f\x0b\xb9\x18\xf8\xde"
4998                         "\x64\xb1\xdb\xee\x00\x50\x77\xe1"
4999                         "\xc7\xff\xa6\xfa\xdd\x70\xf4\xe3"
5000                         "\x93\xe9\x77\x35\x3d\x4b\x2f\x2b"
5001                         "\x6d\x55\xf0\xfc\x88\x54\x4e\x89"
5002                         "\xc1\x8a\x23\x31\x2d\x14\x2a\xb8"
5003                         "\x1b\x15\xdd\x9e\x6e\x7b\xda\x05"
5004                         "\x91\x7d\x62\x64\x96\x72\xde\xfc"
5005                         "\xc1\xec\xf0\x23\x51\x6f\xdb\x5b"
5006                         "\x1d\x08\x57\xce\x09\xb8\xf6\xcd"
5007                         "\x8d\x95\xf2\x20\xbf\x0f\x20\x57"
5008                         "\x98\x81\x84\x4f\x15\x5c\x76\xe7"
5009                         "\x3e\x0a\x3a\x6c\xc4\x8a\xbe\x78"
5010                         "\x74\x77\xc3\x09\x4b\x5d\x48\xe4"
5011                         "\xc8\xcb\x0b\xea\x17\x28\xcf\xcf"
5012                         "\x31\x32\x44\xa4\xe5\x0e\x1a\x98"
5013                         "\x94\xc4\xf0\xff\xae\x3e\x44\xe8"
5014                         "\xa5\xb3\xb5\x37\x2f\xe8\xaf\x6f"
5015                         "\x28\xc1\x37\x5f\x31\xd2\xb9\x33"
5016                         "\xb1\xb2\x52\x94\x75\x2c\x29\x59"
5017                         "\x06\xc2\x25\xe8\x71\x65\x4e\xed"
5018                         "\xc0\x9c\xb1\xbb\x25\xdc\x6c\xe7"
5019                         "\x4b\xa5\x7a\x54\x7a\x60\xff\x7a"
5020                         "\xe0\x50\x40\x96\x35\x63\xe4\x0b"
5021                         "\x76\xbd\xa4\x65\x00\x1b\x57\x88"
5022                         "\xae\xed\x39\x88\x42\x11\x3c\xed"
5023                         "\x85\x67\x7d\xb9\x68\x82\xe9\x43"
5024                         "\x3c\x47\x53\xfa\xe8\xf8\x9f\x1f"
5025                         "\x9f\xef\x0f\xf7\x30\xd9\x30\x0e"
5026                         "\xb9\x9f\x69\x18\x2f\x7e\xf8\xf8"
5027                         "\xf8\x8c\x0f\xd4\x02\x4d\xea\xcd"
5028                         "\x0a\x9c\x6f\x71\x6d\x5a\x4c\x60"
5029                         "\xce\x20\x56\x32\xc6\xc5\x99\x1f"
5030                         "\x09\xe6\x4e\x18\x1a\x15\x13\xa8"
5031                         "\x7d\xb1\x6b\xc0\xb2\x6d\xf8\x26"
5032                         "\x66\xf8\x3d\x18\x74\x70\x66\x7a"
5033                         "\x34\x17\xde\xba\x47\xf1\x06\x18"
5034                         "\xcb\xaf\xeb\x4a\x1e\x8f\xa7\x77"
5035                         "\xe0\x3b\x78\x62\x66\xc9\x10\xea"
5036                         "\x1f\xb7\x29\x0a\x45\xa1\x1d\x1e"
5037                         "\x1d\xe2\x65\x61\x50\x9c\xd7\x05"
5038                         "\xf2\x0b\x5b\x12\x61\x02\xc8\xe5"
5039                         "\x63\x4f\x20\x0c\x07\x17\x33\x5e"
5040                         "\x03\x9a\x53\x0f\x2e\x55\xfe\x50"
5041                         "\x43\x7d\xd0\xb6\x7e\x5a\xda\xae"
5042                         "\x58\xef\x15\xa9\x83\xd9\x46\xb1"
5043                         "\x42\xaa\xf5\x02\x6c\xce\x92\x06"
5044                         "\x1b\xdb\x66\x45\x91\x79\xc2\x2d"
5045                         "\xe6\x53\xd3\x14\xfd\xbb\x44\x63"
5046                         "\xc6\xd7\x3d\x7a\x0c\x75\x78\x9d"
5047                         "\x5c\xa6\x39\xb3\xe5\x63\xca\x8b"
5048                         "\xfe\xd3\xef\x60\x83\xf6\x8e\x70"
5049                         "\xb6\x67\xc7\x77\xed\x23\xef\x4c"
5050                         "\xf0\xed\x2d\x07\x59\x6f\xc1\x01"
5051                         "\x34\x37\x08\xab\xd9\x1f\x09\xb1"
5052                         "\xce\x5b\x17\xff\x74\xf8\x9c\xd5"
5053                         "\x2c\x56\x39\x79\x0f\x69\x44\x75"
5054                         "\x58\x27\x01\xc4\xbf\xa7\xa1\x1d"
5055                         "\x90\x17\x77\x86\x5a\x3f\xd9\xd1"
5056                         "\x0e\xa0\x10\xf8\xec\x1e\xa5\x7f"
5057                         "\x5e\x36\xd1\xe3\x04\x2c\x70\xf7"
5058                         "\x8e\xc0\x98\x2f\x6c\x94\x2b\x41"
5059                         "\xb7\x60\x00\xb7\x2e\xb8\x02\x8d"
5060                         "\xb8\xb0\xd3\x86\xba\x1d\xd7\x90"
5061                         "\xd6\xb6\xe1\xfc\xd7\xd8\x28\x06"
5062                         "\x63\x9b\xce\x61\x24\x79\xc0\x70"
5063                         "\x52\xd0\xb6\xd4\x28\x95\x24\x87"
5064                         "\x03\x1f\xb7\x9a\xda\xa3\xfb\x52"
5065                         "\x5b\x68\xe7\x4c\x8c\x24\xe1\x42"
5066                         "\xf7\xd5\xfd\xad\x06\x32\x9f\xba"
5067                         "\xc1\xfc\xdd\xc6\xfc\xfc\xb3\x38"
5068                         "\x74\x56\x58\x40\x02\x37\x52\x2c"
5069                         "\x55\xcc\xb3\x9e\x7a\xe9\xd4\x38"
5070                         "\x41\x5e\x0c\x35\xe2\x11\xd1\x13"
5071                         "\xf8\xb7\x8d\x72\x6b\x22\x2a\xb0"
5072                         "\xdb\x08\xba\x35\xb9\x3f\xc8\xd3"
5073                         "\x24\x90\xec\x58\xd2\x09\xc7\x2d"
5074                         "\xed\x38\x80\x36\x72\x43\x27\x49"
5075                         "\x4a\x80\x8a\xa2\xe8\xd3\xda\x30"
5076                         "\x7d\xb6\x82\x37\x86\x92\x86\x3e"
5077                         "\x08\xb2\x28\x5a\x55\x44\x24\x7d"
5078                         "\x40\x48\x8a\xb6\x89\x58\x08\xa0"
5079                         "\xd6\x6d\x3a\x17\xbf\xf6\x54\xa2"
5080                         "\xf5\xd3\x8c\x0f\x78\x12\x57\x8b"
5081                         "\xd5\xc2\xfd\x58\x5b\x7f\x38\xe3"
5082                         "\xcc\xb7\x7c\x48\xb3\x20\xe8\x81"
5083                         "\x14\x32\x45\x05\xe0\xdb\x9f\x75"
5084                         "\x85\xb4\x6a\xfc\x95\xe3\x54\x22"
5085                         "\x12\xee\x30\xfe\xd8\x30\xef\x34"
5086                         "\x50\xab\x46\x30\x98\x2f\xb7\xc0"
5087                         "\x15\xa2\x83\xb6\xf2\x06\x21\xa2"
5088                         "\xc3\x26\x37\x14\xd1\x4d\xb5\x10"
5089                         "\x52\x76\x4d\x6a\xee\xb5\x2b\x15"
5090                         "\xb7\xf9\x51\xe8\x2a\xaf\xc7\xfa"
5091                         "\x77\xaf\xb0\x05\x4d\xd1\x68\x8e"
5092                         "\x74\x05\x9f\x9d\x93\xa5\x3e\x7f"
5093                         "\x4e\x5f\x9d\xcb\x09\xc7\x83\xe3"
5094                         "\x02\x9d\x27\x1f\xef\x85\x05\x8d"
5095                         "\xec\x55\x88\x0f\x0d\x7c\x4c\xe8"
5096                         "\xa1\x75\xa0\xd8\x06\x47\x14\xef"
5097                         "\xaa\x61\xcf\x26\x15\xad\xd8\xa3"
5098                         "\xaa\x75\xf2\x78\x4a\x5a\x61\xdf"
5099                         "\x8b\xc7\x04\xbc\xb2\x32\xd2\x7e"
5100                         "\x42\xee\xb4\x2f\x51\xff\x7b\x2e"
5101                         "\xd3\x02\xe8\xdc\x5d\x0d\x50\xdc"
5102                         "\xae\xb7\x46\xf9\xa8\xe6\xd0\x16"
5103                         "\xcc\xe6\x2c\x81\xc7\xad\xe9\xf0"
5104                         "\x05\x72\x6d\x3d\x0a\x7a\xa9\x02"
5105                         "\xac\x82\x93\x6e\xb6\x1c\x28\xfc"
5106                         "\x44\x12\xfb\x73\x77\xd4\x13\x39"
5107                         "\x29\x88\x8a\xf3\x5c\xa6\x36\xa0"
5108                         "\x2a\xed\x7e\xb1\x1d\xd6\x4c\x6b"
5109                         "\x41\x01\x18\x5d\x5d\x07\x97\xa6"
5110                         "\x4b\xef\x31\x18\xea\xac\xb1\x84"
5111                         "\x21\xed\xda\x86",
5112                 .rlen = 4100,
5113                 .np     = 2,
5114                 .tap    = { 4064, 36 },
5115         },
5116 };
5117
5118 static struct cipher_testvec aes_ctr_dec_tv_template[] = {
5119         { /* From RFC 3686 */
5120                 .key    = "\xae\x68\x52\xf8\x12\x10\x67\xcc"
5121                           "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e"
5122                           "\x00\x00\x00\x30",
5123                 .klen   = 20,
5124                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
5125                 .input  = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79"
5126                           "\x2d\x61\x75\xa3\x26\x13\x11\xb8",
5127                 .ilen   = 16,
5128                 .result = "Single block msg",
5129                 .rlen   = 16,
5130         }, {
5131                 .key    = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7"
5132                           "\x43\xd6\xce\x1f\x32\x53\x91\x63"
5133                           "\x00\x6c\xb6\xdb",
5134                 .klen   = 20,
5135                 .iv     = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b",
5136                 .input  = "\x51\x04\xa1\x06\x16\x8a\x72\xd9"
5137                           "\x79\x0d\x41\xee\x8e\xda\xd3\x88"
5138                           "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8"
5139                           "\xfc\xe6\x30\xdf\x91\x41\xbe\x28",
5140                 .ilen   = 32,
5141                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5142                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5143                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5144                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5145                 .rlen   = 32,
5146         }, {
5147                 .key    = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79"
5148                           "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed"
5149                           "\x86\x3d\x06\xcc\xfd\xb7\x85\x15"
5150                           "\x00\x00\x00\x48",
5151                 .klen   = 28,
5152                 .iv     = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb",
5153                 .input  = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8"
5154                           "\x4e\x79\x35\xa0\x03\xcb\xe9\x28",
5155                 .ilen   = 16,
5156                 .result = "Single block msg",
5157                 .rlen   = 16,
5158         }, {
5159                 .key    = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c"
5160                           "\x19\xe7\x34\x08\x19\xe0\xf6\x9c"
5161                           "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a"
5162                           "\x00\x96\xb0\x3b",
5163                 .klen   = 28,
5164                 .iv     = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d",
5165                 .input  = "\x45\x32\x43\xfc\x60\x9b\x23\x32"
5166                           "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f"
5167                           "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c"
5168                           "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00",
5169                 .ilen   = 32,
5170                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5171                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5172                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5173                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5174                 .rlen   = 32,
5175         }, {
5176                 .key    = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f"
5177                           "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c"
5178                           "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3"
5179                           "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04"
5180                           "\x00\x00\x00\x60",
5181                 .klen   = 36,
5182                 .iv     = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2",
5183                 .input  = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7"
5184                           "\x56\x08\x63\xdc\x71\xe3\xe0\xc0",
5185                 .ilen   = 16,
5186                 .result = "Single block msg",
5187                 .rlen   = 16,
5188         }, {
5189                 .key    = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb"
5190                           "\x07\x96\x36\x58\x79\xef\xf8\x86"
5191                           "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74"
5192                           "\x4b\x50\x59\x0c\x87\xa2\x38\x84"
5193                           "\x00\xfa\xac\x24",
5194                 .klen   = 36,
5195                 .iv     = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75",
5196                 .input  = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c"
5197                           "\x49\xee\x00\x0b\x80\x4e\xb2\xa9"
5198                           "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a"
5199                           "\x55\x30\x83\x1d\x93\x44\xaf\x1c",
5200                 .ilen   = 32,
5201                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5202                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5203                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5204                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5205                 .rlen   = 32,
5206         },
5207 };
5208
5209 static struct aead_testvec aes_gcm_enc_tv_template[] = {
5210         { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */
5211                 .key    = zeroed_string,
5212                 .klen   = 16,
5213                 .result = "\x58\xe2\xfc\xce\xfa\x7e\x30\x61"
5214                           "\x36\x7f\x1d\x57\xa4\xe7\x45\x5a",
5215                 .rlen   = 16,
5216         }, {
5217                 .key    = zeroed_string,
5218                 .klen   = 16,
5219                 .input  = zeroed_string,
5220                 .ilen   = 16,
5221                 .result = "\x03\x88\xda\xce\x60\xb6\xa3\x92"
5222                           "\xf3\x28\xc2\xb9\x71\xb2\xfe\x78"
5223                           "\xab\x6e\x47\xd4\x2c\xec\x13\xbd"
5224                           "\xf5\x3a\x67\xb2\x12\x57\xbd\xdf",
5225                 .rlen   = 32,
5226         }, {
5227                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5228                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5229                 .klen   = 16,
5230                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5231                           "\xde\xca\xf8\x88",
5232                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5233                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5234                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5235                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5236                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5237                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5238                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5239                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5240                 .ilen   = 64,
5241                 .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5242                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5243                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5244                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5245                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5246                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5247                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5248                           "\x3d\x58\xe0\x91\x47\x3f\x59\x85"
5249                           "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6"
5250                           "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4",
5251                 .rlen   = 80,
5252         }, {
5253                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5254                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5255                 .klen   = 16,
5256                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5257                           "\xde\xca\xf8\x88",
5258                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5259                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5260                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5261                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5262                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5263                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5264                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5265                           "\xba\x63\x7b\x39",
5266                 .ilen   = 60,
5267                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5268                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5269                           "\xab\xad\xda\xd2",
5270                 .alen   = 20,
5271                 .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5272                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5273                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5274                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5275                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5276                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5277                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5278                           "\x3d\x58\xe0\x91"
5279                           "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb"
5280                           "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47",
5281                 .rlen   = 76,
5282         }, {
5283                 .key    = zeroed_string,
5284                 .klen   = 24,
5285                 .result = "\xcd\x33\xb2\x8a\xc7\x73\xf7\x4b"
5286                           "\xa0\x0e\xd1\xf3\x12\x57\x24\x35",
5287                 .rlen   = 16,
5288         }, {
5289                 .key    = zeroed_string,
5290                 .klen   = 24,
5291                 .input  = zeroed_string,
5292                 .ilen   = 16,
5293                 .result = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41"
5294                           "\x1c\x26\x7e\x43\x84\xb0\xf6\x00"
5295                           "\x2f\xf5\x8d\x80\x03\x39\x27\xab"
5296                           "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb",
5297                 .rlen   = 32,
5298         }, {
5299                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5300                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5301                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5302                 .klen   = 24,
5303                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5304                           "\xde\xca\xf8\x88",
5305                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5306                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5307                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5308                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5309                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5310                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5311                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5312                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5313                 .ilen   = 64,
5314                 .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5315                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5316                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5317                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5318                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5319                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5320                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5321                           "\xcc\xda\x27\x10\xac\xad\xe2\x56"
5322                           "\x99\x24\xa7\xc8\x58\x73\x36\xbf"
5323                           "\xb1\x18\x02\x4d\xb8\x67\x4a\x14",
5324                 .rlen   = 80,
5325         }, {
5326                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5327                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5328                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5329                 .klen   = 24,
5330                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5331                           "\xde\xca\xf8\x88",
5332                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5333                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5334                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5335                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5336                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5337                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5338                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5339                           "\xba\x63\x7b\x39",
5340                 .ilen   = 60,
5341                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5342                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5343                           "\xab\xad\xda\xd2",
5344                 .alen   = 20,
5345                 .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5346                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5347                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5348                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5349                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5350                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5351                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5352                           "\xcc\xda\x27\x10"
5353                           "\x25\x19\x49\x8e\x80\xf1\x47\x8f"
5354                           "\x37\xba\x55\xbd\x6d\x27\x61\x8c",
5355                 .rlen   = 76,
5356                 .np     = 2,
5357                 .tap    = { 32, 28 },
5358                 .anp    = 2,
5359                 .atap   = { 8, 12 }
5360         }, {
5361                 .key    = zeroed_string,
5362                 .klen   = 32,
5363                 .result = "\x53\x0f\x8a\xfb\xc7\x45\x36\xb9"
5364                           "\xa9\x63\xb4\xf1\xc4\xcb\x73\x8b",
5365                 .rlen   = 16,
5366         }
5367 };
5368
5369 static struct aead_testvec aes_gcm_dec_tv_template[] = {
5370         { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */
5371                 .key    = zeroed_string,
5372                 .klen   = 32,
5373                 .input  = "\xce\xa7\x40\x3d\x4d\x60\x6b\x6e"
5374                           "\x07\x4e\xc5\xd3\xba\xf3\x9d\x18"
5375                           "\xd0\xd1\xc8\xa7\x99\x99\x6b\xf0"
5376                           "\x26\x5b\x98\xb5\xd4\x8a\xb9\x19",
5377                 .ilen   = 32,
5378                 .result  = zeroed_string,
5379                 .rlen   = 16,
5380         }, {
5381                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5382                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5383                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5384                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5385                 .klen   = 32,
5386                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5387                           "\xde\xca\xf8\x88",
5388                 .input  = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
5389                           "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d"
5390                           "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9"
5391                           "\x75\x98\xa2\xbd\x25\x55\xd1\xaa"
5392                           "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d"
5393                           "\xa7\xb0\x8b\x10\x56\x82\x88\x38"
5394                           "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a"
5395                           "\xbc\xc9\xf6\x62\x89\x80\x15\xad"
5396                           "\xb0\x94\xda\xc5\xd9\x34\x71\xbd"
5397                           "\xec\x1a\x50\x22\x70\xe3\xcc\x6c",
5398                 .ilen   = 80,
5399                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5400                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5401                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5402                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5403                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5404                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5405                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5406                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5407                 .rlen   = 64,
5408         }, {
5409                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5410                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5411                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5412                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5413                 .klen   = 32,
5414                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5415                           "\xde\xca\xf8\x88",
5416                 .input  = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
5417                           "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d"
5418                           "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9"
5419                           "\x75\x98\xa2\xbd\x25\x55\xd1\xaa"
5420                           "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d"
5421                           "\xa7\xb0\x8b\x10\x56\x82\x88\x38"
5422                           "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a"
5423                           "\xbc\xc9\xf6\x62"
5424                           "\x76\xfc\x6e\xce\x0f\x4e\x17\x68"
5425                           "\xcd\xdf\x88\x53\xbb\x2d\x55\x1b",
5426                 .ilen   = 76,
5427                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5428                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5429                           "\xab\xad\xda\xd2",
5430                 .alen   = 20,
5431                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5432                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5433                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5434                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5435                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5436                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5437                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5438                           "\xba\x63\x7b\x39",
5439                 .rlen   = 60,
5440                 .np     = 2,
5441                 .tap    = { 48, 28 },
5442                 .anp    = 3,
5443                 .atap   = { 8, 8, 4 }
5444         }, {
5445                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5446                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5447                 .klen   = 16,
5448                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5449                           "\xde\xca\xf8\x88",
5450                 .input  = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5451                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5452                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5453                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5454                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5455                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5456                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5457                           "\x3d\x58\xe0\x91\x47\x3f\x59\x85"
5458                           "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6"
5459                           "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4",
5460                 .ilen   = 80,
5461                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5462                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5463                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5464                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5465                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5466                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5467                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5468                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5469                 .rlen   = 64,
5470         }, {
5471                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5472                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5473                 .klen   = 16,
5474                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5475                           "\xde\xca\xf8\x88",
5476                 .input  = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5477                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5478                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5479                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5480                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5481                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5482                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5483                           "\x3d\x58\xe0\x91"
5484                           "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb"
5485                           "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47",
5486                 .ilen   = 76,
5487                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5488                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5489                           "\xab\xad\xda\xd2",
5490                 .alen   = 20,
5491                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5492                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5493                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5494                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5495                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5496                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5497                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5498                           "\xba\x63\x7b\x39",
5499                 .rlen   = 60,
5500         }, {
5501                 .key    = zeroed_string,
5502                 .klen   = 24,
5503                 .input  = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41"
5504                           "\x1c\x26\x7e\x43\x84\xb0\xf6\x00"
5505                           "\x2f\xf5\x8d\x80\x03\x39\x27\xab"
5506                           "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb",
5507                 .ilen   = 32,
5508                 .result  = zeroed_string,
5509                 .rlen   = 16,
5510         }, {
5511                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5512                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5513                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5514                 .klen   = 24,
5515                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5516                           "\xde\xca\xf8\x88",
5517                 .input  = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5518                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5519                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5520                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5521                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5522                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5523                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5524                           "\xcc\xda\x27\x10\xac\xad\xe2\x56"
5525                           "\x99\x24\xa7\xc8\x58\x73\x36\xbf"
5526                           "\xb1\x18\x02\x4d\xb8\x67\x4a\x14",
5527                 .ilen   = 80,
5528                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5529                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5530                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5531                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5532                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5533                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5534                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5535                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5536                 .rlen   = 64,
5537         }, {
5538                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5539                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5540                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5541                 .klen   = 24,
5542                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5543                           "\xde\xca\xf8\x88",
5544                 .input  = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5545                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5546                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5547                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5548                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5549                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5550                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5551                           "\xcc\xda\x27\x10"
5552                           "\x25\x19\x49\x8e\x80\xf1\x47\x8f"
5553                           "\x37\xba\x55\xbd\x6d\x27\x61\x8c",
5554                 .ilen   = 76,
5555                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5556                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5557                           "\xab\xad\xda\xd2",
5558                 .alen   = 20,
5559                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5560                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5561                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5562                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5563                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5564                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5565                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5566                           "\xba\x63\x7b\x39",
5567                 .rlen   = 60,
5568         }
5569 };
5570
5571 static struct aead_testvec aes_ccm_enc_tv_template[] = {
5572         { /* From RFC 3610 */
5573                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5574                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5575                 .klen   = 16,
5576                 .iv     = "\x01\x00\x00\x00\x03\x02\x01\x00"
5577                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5578                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
5579                 .alen   = 8,
5580                 .input  = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5581                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5582                           "\x18\x19\x1a\x1b\x1c\x1d\x1e",
5583                 .ilen   = 23,
5584                 .result = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2"
5585                           "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80"
5586                           "\x6d\x5f\x6b\x61\xda\xc3\x84\x17"
5587                           "\xe8\xd1\x2c\xfd\xf9\x26\xe0",
5588                 .rlen   = 31,
5589         }, {
5590                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5591                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5592                 .klen   = 16,
5593                 .iv     = "\x01\x00\x00\x00\x07\x06\x05\x04"
5594                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5595                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
5596                           "\x08\x09\x0a\x0b",
5597                 .alen   = 12,
5598                 .input  = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5599                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5600                           "\x1c\x1d\x1e\x1f",
5601                 .ilen   = 20,
5602                 .result = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb"
5603                           "\x9d\x4e\x13\x12\x53\x65\x8a\xd8"
5604                           "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07"
5605                           "\x7d\x9c\x2d\x93",
5606                 .rlen   = 28,
5607         }, {
5608                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5609                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5610                 .klen   = 16,
5611                 .iv     = "\x01\x00\x00\x00\x0b\x0a\x09\x08"
5612                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5613                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
5614                 .alen   = 8,
5615                 .input  = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5616                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5617                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
5618                           "\x20",
5619                 .ilen   = 25,
5620                 .result = "\x82\x53\x1a\x60\xcc\x24\x94\x5a"
5621                           "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d"
5622                           "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1"
5623                           "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1"
5624                           "\x7e\x5f\x4e",
5625                 .rlen   = 35,
5626         }, {
5627                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5628                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5629                 .klen   = 16,
5630                 .iv     = "\x01\x00\x00\x00\x0c\x0b\x0a\x09"
5631                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5632                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
5633                           "\x08\x09\x0a\x0b",
5634                 .alen   = 12,
5635                 .input  = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5636                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5637                           "\x1c\x1d\x1e",
5638                 .ilen   = 19,
5639                 .result = "\x07\x34\x25\x94\x15\x77\x85\x15"
5640                           "\x2b\x07\x40\x98\x33\x0a\xbb\x14"
5641                           "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b"
5642                           "\x4d\x99\x99\x88\xdd",
5643                 .rlen   = 29,
5644         }, {
5645                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5646                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5647                 .klen   = 16,
5648                 .iv     = "\x01\x00\x33\x56\x8e\xf7\xb2\x63"
5649                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5650                 .assoc  = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb",
5651                 .alen   = 8,
5652                 .input  = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a"
5653                           "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf"
5654                           "\xb7\x9c\x70\x28\x94\x9c\xd0\xec",
5655                 .ilen   = 24,
5656                 .result = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa"
5657                           "\xa0\x72\x6c\x55\xd3\x78\x06\x12"
5658                           "\x98\xc8\x5c\x92\x81\x4a\xbc\x33"
5659                           "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a",
5660                 .rlen   = 32,
5661         }, {
5662                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5663                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5664                 .klen   = 16,
5665                 .iv     = "\x01\x00\xd5\x60\x91\x2d\x3f\x70"
5666                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5667                 .assoc  = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81"
5668                           "\x20\xea\x60\xc0",
5669                 .alen   = 12,
5670                 .input  = "\x64\x35\xac\xba\xfb\x11\xa8\x2e"
5671                           "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9"
5672                           "\x3a\x80\x3b\xa8\x7f",
5673                 .ilen   = 21,
5674                 .result = "\x00\x97\x69\xec\xab\xdf\x48\x62"
5675                           "\x55\x94\xc5\x92\x51\xe6\x03\x57"
5676                           "\x22\x67\x5e\x04\xc8\x47\x09\x9e"
5677                           "\x5a\xe0\x70\x45\x51",
5678                 .rlen   = 29,
5679         }, {
5680                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5681                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5682                 .klen   = 16,
5683                 .iv     = "\x01\x00\x42\xff\xf8\xf1\x95\x1c"
5684                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5685                 .assoc  = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8",
5686                 .alen   = 8,
5687                 .input  = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01"
5688                           "\x8e\x5e\x67\x01\xc9\x17\x87\x65"
5689                           "\x98\x09\xd6\x7d\xbe\xdd\x18",
5690                 .ilen   = 23,
5691                 .result = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6"
5692                           "\xdb\x38\x6a\x99\xac\x1a\xef\x23"
5693                           "\xad\xe0\xb5\x29\x39\xcb\x6a\x63"
5694                           "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6"
5695                           "\xba",
5696                 .rlen   = 33,
5697         },
5698 };
5699
5700 static struct aead_testvec aes_ccm_dec_tv_template[] = {
5701         { /* From RFC 3610 */
5702                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5703                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5704                 .klen   = 16,
5705                 .iv     = "\x01\x00\x00\x00\x03\x02\x01\x00"
5706                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5707                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
5708                 .alen   = 8,
5709                 .input  = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2"
5710                           "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80"
5711                           "\x6d\x5f\x6b\x61\xda\xc3\x84\x17"
5712                           "\xe8\xd1\x2c\xfd\xf9\x26\xe0",
5713                 .ilen   = 31,
5714                 .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5715                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5716                           "\x18\x19\x1a\x1b\x1c\x1d\x1e",
5717                 .rlen   = 23,
5718         }, {
5719                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5720                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5721                 .klen   = 16,
5722                 .iv     = "\x01\x00\x00\x00\x07\x06\x05\x04"
5723                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5724                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
5725                           "\x08\x09\x0a\x0b",
5726                 .alen   = 12,
5727                 .input  = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb"
5728                           "\x9d\x4e\x13\x12\x53\x65\x8a\xd8"
5729                           "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07"
5730                           "\x7d\x9c\x2d\x93",
5731                 .ilen   = 28,
5732                 .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5733                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5734                           "\x1c\x1d\x1e\x1f",
5735                 .rlen   = 20,
5736         }, {
5737                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5738                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5739                 .klen   = 16,
5740                 .iv     = "\x01\x00\x00\x00\x0b\x0a\x09\x08"
5741                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5742                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
5743                 .alen   = 8,
5744                 .input  = "\x82\x53\x1a\x60\xcc\x24\x94\x5a"
5745                           "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d"
5746                           "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1"
5747                           "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1"
5748                           "\x7e\x5f\x4e",
5749                 .ilen   = 35,
5750                 .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5751                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5752                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
5753                           "\x20",
5754                 .rlen   = 25,
5755         }, {
5756                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5757                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5758                 .klen   = 16,
5759                 .iv     = "\x01\x00\x00\x00\x0c\x0b\x0a\x09"
5760                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5761                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
5762                           "\x08\x09\x0a\x0b",
5763                 .alen   = 12,
5764                 .input  = "\x07\x34\x25\x94\x15\x77\x85\x15"
5765                           "\x2b\x07\x40\x98\x33\x0a\xbb\x14"
5766                           "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b"
5767                           "\x4d\x99\x99\x88\xdd",
5768                 .ilen   = 29,
5769                 .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5770                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5771                           "\x1c\x1d\x1e",
5772                 .rlen   = 19,
5773         }, {
5774                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5775                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5776                 .klen   = 16,
5777                 .iv     = "\x01\x00\x33\x56\x8e\xf7\xb2\x63"
5778                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5779                 .assoc  = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb",
5780                 .alen   = 8,
5781                 .input  = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa"
5782                           "\xa0\x72\x6c\x55\xd3\x78\x06\x12"
5783                           "\x98\xc8\x5c\x92\x81\x4a\xbc\x33"
5784                           "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a",
5785                 .ilen   = 32,
5786                 .result = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a"
5787                           "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf"
5788                           "\xb7\x9c\x70\x28\x94\x9c\xd0\xec",
5789                 .rlen   = 24,
5790         }, {
5791                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5792                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5793                 .klen   = 16,
5794                 .iv     = "\x01\x00\xd5\x60\x91\x2d\x3f\x70"
5795                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5796                 .assoc  = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81"
5797                           "\x20\xea\x60\xc0",
5798                 .alen   = 12,
5799                 .input  = "\x00\x97\x69\xec\xab\xdf\x48\x62"
5800                           "\x55\x94\xc5\x92\x51\xe6\x03\x57"
5801                           "\x22\x67\x5e\x04\xc8\x47\x09\x9e"
5802                           "\x5a\xe0\x70\x45\x51",
5803                 .ilen   = 29,
5804                 .result = "\x64\x35\xac\xba\xfb\x11\xa8\x2e"
5805                           "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9"
5806                           "\x3a\x80\x3b\xa8\x7f",
5807                 .rlen   = 21,
5808         }, {
5809                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5810                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5811                 .klen   = 16,
5812                 .iv     = "\x01\x00\x42\xff\xf8\xf1\x95\x1c"
5813                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5814                 .assoc  = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8",
5815                 .alen   = 8,
5816                 .input  = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6"
5817                           "\xdb\x38\x6a\x99\xac\x1a\xef\x23"
5818                           "\xad\xe0\xb5\x29\x39\xcb\x6a\x63"
5819                           "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6"
5820                           "\xba",
5821                 .ilen   = 33,
5822                 .result = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01"
5823                           "\x8e\x5e\x67\x01\xc9\x17\x87\x65"
5824                           "\x98\x09\xd6\x7d\xbe\xdd\x18",
5825                 .rlen   = 23,
5826         },
5827 };
5828
5829 /* Cast5 test vectors from RFC 2144 */
5830 #define CAST5_ENC_TEST_VECTORS  3
5831 #define CAST5_DEC_TEST_VECTORS  3
5832
5833 static struct cipher_testvec cast5_enc_tv_template[] = {
5834         {
5835                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
5836                           "\x23\x45\x67\x89\x34\x56\x78\x9a",
5837                 .klen   = 16,
5838                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5839                 .ilen   = 8,
5840                 .result = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2",
5841                 .rlen   = 8,
5842         }, {
5843                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
5844                           "\x23\x45",
5845                 .klen   = 10,
5846                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5847                 .ilen   = 8,
5848                 .result = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b",
5849                 .rlen   = 8,
5850         }, {
5851                 .key    = "\x01\x23\x45\x67\x12",
5852                 .klen   = 5,
5853                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5854                 .ilen   = 8,
5855                 .result = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e",
5856                 .rlen   = 8,
5857         },
5858 };
5859
5860 static struct cipher_testvec cast5_dec_tv_template[] = {
5861         {
5862                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
5863                           "\x23\x45\x67\x89\x34\x56\x78\x9a",
5864                 .klen   = 16,
5865                 .input  = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2",
5866                 .ilen   = 8,
5867                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5868                 .rlen   = 8,
5869         }, {
5870                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
5871                           "\x23\x45",
5872                 .klen   = 10,
5873                 .input  = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b",
5874                 .ilen   = 8,
5875                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5876                 .rlen   = 8,
5877         }, {
5878                 .key    = "\x01\x23\x45\x67\x12",
5879                 .klen   = 5,
5880                 .input  = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e",
5881                 .ilen   = 8,
5882                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5883                 .rlen   = 8,
5884         },
5885 };
5886
5887 /*
5888  * ARC4 test vectors from OpenSSL
5889  */
5890 #define ARC4_ENC_TEST_VECTORS   7
5891 #define ARC4_DEC_TEST_VECTORS   7
5892
5893 static struct cipher_testvec arc4_enc_tv_template[] = {
5894         {
5895                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5896                 .klen   = 8,
5897                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5898                 .ilen   = 8,
5899                 .result = "\x75\xb7\x87\x80\x99\xe0\xc5\x96",
5900                 .rlen   = 8,
5901         }, {
5902                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5903                 .klen   = 8,
5904                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
5905                 .ilen   = 8,
5906                 .result = "\x74\x94\xc2\xe7\x10\x4b\x08\x79",
5907                 .rlen   = 8,
5908         }, {
5909                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
5910                 .klen   = 8,
5911                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
5912                 .ilen   = 8,
5913                 .result = "\xde\x18\x89\x41\xa3\x37\x5d\x3a",
5914                 .rlen   = 8,
5915         }, {
5916                 .key    = "\xef\x01\x23\x45",
5917                 .klen   = 4,
5918                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
5919                           "\x00\x00\x00\x00\x00\x00\x00\x00"
5920                           "\x00\x00\x00\x00",
5921                 .ilen   = 20,
5922                 .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
5923                           "\xbd\x61\x5a\x11\x62\xe1\xc7\xba"
5924                           "\x36\xb6\x78\x58",
5925                 .rlen   = 20,
5926         }, {
5927                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5928                 .klen   = 8,
5929                 .input  = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
5930                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
5931                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
5932                           "\x12\x34\x56\x78",
5933                 .ilen   = 28,
5934                 .result = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89"
5935                           "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c"
5936                           "\x89\x2e\xbe\x30\x14\x3c\xe2\x87"
5937                           "\x40\x01\x1e\xcf",
5938                 .rlen   = 28,
5939         }, {
5940                 .key    = "\xef\x01\x23\x45",
5941                 .klen   = 4,
5942                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
5943                           "\x00\x00",
5944                 .ilen   = 10,
5945                 .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
5946                           "\xbd\x61",
5947                 .rlen   = 10,
5948         }, {
5949                 .key    = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
5950                         "\x00\x00\x00\x00\x00\x00\x00\x00",
5951                 .klen   = 16,
5952                 .input  = "\x01\x23\x45\x67\x89\xAB\xCD\xEF",
5953                 .ilen   = 8,
5954                 .result = "\x69\x72\x36\x59\x1B\x52\x42\xB1",
5955                 .rlen   = 8,
5956         },
5957 };
5958
5959 static struct cipher_testvec arc4_dec_tv_template[] = {
5960         {
5961                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5962                 .klen   = 8,
5963                 .input  = "\x75\xb7\x87\x80\x99\xe0\xc5\x96",
5964                 .ilen   = 8,
5965                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5966                 .rlen   = 8,
5967         }, {
5968                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5969                 .klen   = 8,
5970                 .input  = "\x74\x94\xc2\xe7\x10\x4b\x08\x79",
5971                 .ilen   = 8,
5972                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
5973                 .rlen   = 8,
5974         }, {
5975                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
5976                 .klen   = 8,
5977                 .input  = "\xde\x18\x89\x41\xa3\x37\x5d\x3a",
5978                 .ilen   = 8,
5979                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
5980                 .rlen   = 8,
5981         }, {
5982                 .key    = "\xef\x01\x23\x45",
5983                 .klen   = 4,
5984                 .input  = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
5985                           "\xbd\x61\x5a\x11\x62\xe1\xc7\xba"
5986                           "\x36\xb6\x78\x58",
5987                 .ilen   = 20,
5988                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00"
5989                           "\x00\x00\x00\x00\x00\x00\x00\x00"
5990                           "\x00\x00\x00\x00",
5991                 .rlen   = 20,
5992         }, {
5993                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
5994                 .klen   = 8,
5995                 .input  = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89"
5996                           "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c"
5997                           "\x89\x2e\xbe\x30\x14\x3c\xe2\x87"
5998                           "\x40\x01\x1e\xcf",
5999                 .ilen   = 28,
6000                 .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6001                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6002                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6003                           "\x12\x34\x56\x78",
6004                 .rlen   = 28,
6005         }, {
6006                 .key    = "\xef\x01\x23\x45",
6007                 .klen   = 4,
6008                 .input  = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6009                           "\xbd\x61",
6010                 .ilen   = 10,
6011                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00"
6012                           "\x00\x00",
6013                 .rlen   = 10,
6014         }, {
6015                 .key    = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
6016                         "\x00\x00\x00\x00\x00\x00\x00\x00",
6017                 .klen   = 16,
6018                 .input  = "\x69\x72\x36\x59\x1B\x52\x42\xB1",
6019                 .ilen   = 8,
6020                 .result = "\x01\x23\x45\x67\x89\xAB\xCD\xEF",
6021                 .rlen   = 8,
6022         },
6023 };
6024
6025 /*
6026  * TEA test vectors
6027  */
6028 #define TEA_ENC_TEST_VECTORS    4
6029 #define TEA_DEC_TEST_VECTORS    4
6030
6031 static struct cipher_testvec tea_enc_tv_template[] = {
6032         {
6033                 .key    = zeroed_string,
6034                 .klen   = 16,
6035                 .input  = zeroed_string,
6036                 .ilen   = 8,
6037                 .result = "\x0a\x3a\xea\x41\x40\xa9\xba\x94",
6038                 .rlen   = 8,
6039         }, {
6040                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6041                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6042                 .klen   = 16,
6043                 .input  = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6044                 .ilen   = 8,
6045                 .result = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09",
6046                 .rlen   = 8,
6047         }, {
6048                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6049                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6050                 .klen   = 16,
6051                 .input  = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6052                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6053                 .ilen   = 16,
6054                 .result = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e"
6055                           "\xdd\x89\xa1\x25\x04\x21\xdf\x95",
6056                 .rlen   = 16,
6057         }, {
6058                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6059                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6060                 .klen   = 16,
6061                 .input  = "\x54\x65\x61\x20\x69\x73\x20\x67"
6062                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6063                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6064                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6065                 .ilen   = 32,
6066                 .result = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47"
6067                           "\x94\x18\x95\x91\xa9\xfc\x49\xf8"
6068                           "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a"
6069                           "\x07\x89\x73\xc2\x45\x92\xc6\x90",
6070                 .rlen   = 32,
6071         }
6072 };
6073
6074 static struct cipher_testvec tea_dec_tv_template[] = {
6075         {
6076                 .key    = zeroed_string,
6077                 .klen   = 16,
6078                 .input  = "\x0a\x3a\xea\x41\x40\xa9\xba\x94",
6079                 .ilen   = 8,
6080                 .result = zeroed_string,
6081                 .rlen   = 8,
6082         }, {
6083                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6084                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6085                 .klen   = 16,
6086                 .input  = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09",
6087                 .ilen   = 8,
6088                 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6089                 .rlen   = 8,
6090         }, {
6091                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6092                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6093                 .klen   = 16,
6094                 .input  = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e"
6095                           "\xdd\x89\xa1\x25\x04\x21\xdf\x95",
6096                 .ilen   = 16,
6097                 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6098                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6099                 .rlen   = 16,
6100         }, {
6101                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6102                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6103                 .klen   = 16,
6104                 .input  = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47"
6105                           "\x94\x18\x95\x91\xa9\xfc\x49\xf8"
6106                           "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a"
6107                           "\x07\x89\x73\xc2\x45\x92\xc6\x90",
6108                 .ilen   = 32,
6109                 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
6110                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6111                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6112                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6113                 .rlen   = 32,
6114         }
6115 };
6116
6117 /*
6118  * XTEA test vectors
6119  */
6120 #define XTEA_ENC_TEST_VECTORS   4
6121 #define XTEA_DEC_TEST_VECTORS   4
6122
6123 static struct cipher_testvec xtea_enc_tv_template[] = {
6124         {
6125                 .key    = zeroed_string,
6126                 .klen   = 16,
6127                 .input  = zeroed_string,
6128                 .ilen   = 8,
6129                 .result = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7",
6130                 .rlen   = 8,
6131         }, {
6132                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6133                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6134                 .klen   = 16,
6135                 .input  = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6136                 .ilen   = 8,
6137                 .result = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8",
6138                 .rlen   = 8,
6139         }, {
6140                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6141                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6142                 .klen   = 16,
6143                 .input  = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6144                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6145                 .ilen   = 16,
6146                 .result = "\x3e\xce\xae\x22\x60\x56\xa8\x9d"
6147                           "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a",
6148                 .rlen   = 16,
6149         }, {
6150                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6151                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6152                 .klen   = 16,
6153                 .input  = "\x54\x65\x61\x20\x69\x73\x20\x67"
6154                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6155                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6156                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6157                 .ilen   = 32,
6158                 .result = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a"
6159                           "\x86\xff\x6f\xd0\xe3\x87\x70\x07"
6160                           "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4"
6161                           "\x73\xa2\xfa\xc9\x16\x59\x5d\x81",
6162                 .rlen   = 32,
6163         }
6164 };
6165
6166 static struct cipher_testvec xtea_dec_tv_template[] = {
6167         {
6168                 .key    = zeroed_string,
6169                 .klen   = 16,
6170                 .input  = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7",
6171                 .ilen   = 8,
6172                 .result = zeroed_string,
6173                 .rlen   = 8,
6174         }, {
6175                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6176                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6177                 .klen   = 16,
6178                 .input  = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8",
6179                 .ilen   = 8,
6180                 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6181                 .rlen   = 8,
6182         }, {
6183                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6184                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6185                 .klen   = 16,
6186                 .input  = "\x3e\xce\xae\x22\x60\x56\xa8\x9d"
6187                           "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a",
6188                 .ilen   = 16,
6189                 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6190                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6191                 .rlen   = 16,
6192         }, {
6193                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6194                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6195                 .klen   = 16,
6196                 .input  = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a"
6197                           "\x86\xff\x6f\xd0\xe3\x87\x70\x07"
6198                           "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4"
6199                           "\x73\xa2\xfa\xc9\x16\x59\x5d\x81",
6200                 .ilen   = 32,
6201                 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
6202                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6203                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6204                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6205                 .rlen   = 32,
6206         }
6207 };
6208
6209 /*
6210  * KHAZAD test vectors.
6211  */
6212 #define KHAZAD_ENC_TEST_VECTORS 5
6213 #define KHAZAD_DEC_TEST_VECTORS 5
6214
6215 static struct cipher_testvec khazad_enc_tv_template[] = {
6216         {
6217                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
6218                           "\x00\x00\x00\x00\x00\x00\x00\x00",
6219                 .klen   = 16,
6220                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
6221                 .ilen   = 8,
6222                 .result = "\x49\xa4\xce\x32\xac\x19\x0e\x3f",
6223                 .rlen   = 8,
6224         }, {
6225                 .key    = "\x38\x38\x38\x38\x38\x38\x38\x38"
6226                           "\x38\x38\x38\x38\x38\x38\x38\x38",
6227                 .klen   = 16,
6228                 .input  = "\x38\x38\x38\x38\x38\x38\x38\x38",
6229                 .ilen   = 8,
6230                 .result = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9",
6231                 .rlen   = 8,
6232         }, {
6233                 .key    = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2"
6234                         "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6235                 .klen   = 16,
6236                 .input  = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6237                 .ilen   = 8,
6238                 .result = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c",
6239                 .rlen   = 8,
6240         }, {
6241                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6242                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6243                 .klen   = 16,
6244                 .input  = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6245                 .ilen   = 8,
6246                 .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6247                 .rlen   = 8,
6248         }, {
6249                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6250                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6251                 .klen   = 16,
6252                 .input  = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6253                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6254                 .ilen   = 16,
6255                 .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8"
6256                         "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6257                 .rlen   = 16,
6258         },
6259 };
6260
6261 static struct cipher_testvec khazad_dec_tv_template[] = {
6262         {
6263                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
6264                           "\x00\x00\x00\x00\x00\x00\x00\x00",
6265                 .klen   = 16,
6266                 .input  = "\x49\xa4\xce\x32\xac\x19\x0e\x3f",
6267                 .ilen   = 8,
6268                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
6269                 .rlen   = 8,
6270         }, {
6271                 .key    = "\x38\x38\x38\x38\x38\x38\x38\x38"
6272                           "\x38\x38\x38\x38\x38\x38\x38\x38",
6273                 .klen   = 16,
6274                 .input  = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9",
6275                 .ilen   = 8,
6276                 .result = "\x38\x38\x38\x38\x38\x38\x38\x38",
6277                 .rlen   = 8,
6278         }, {
6279                 .key    = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2"
6280                         "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6281                 .klen   = 16,
6282                 .input  = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c",
6283                 .ilen   = 8,
6284                 .result = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6285                 .rlen   = 8,
6286         }, {
6287                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6288                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6289                 .klen   = 16,
6290                 .input  = "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6291                 .ilen   = 8,
6292                 .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6293                 .rlen   = 8,
6294         }, {
6295                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6296                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6297                 .klen   = 16,
6298                 .input  = "\x04\x74\xf5\x70\x50\x16\xd3\xb8"
6299                         "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6300                 .ilen   = 16,
6301                 .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6302                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6303                 .rlen   = 16,
6304         },
6305 };
6306
6307 /*
6308  * Anubis test vectors.
6309  */
6310
6311 #define ANUBIS_ENC_TEST_VECTORS                 5
6312 #define ANUBIS_DEC_TEST_VECTORS                 5
6313 #define ANUBIS_CBC_ENC_TEST_VECTORS             2
6314 #define ANUBIS_CBC_DEC_TEST_VECTORS             2
6315
6316 static struct cipher_testvec anubis_enc_tv_template[] = {
6317         {
6318                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6319                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6320                 .klen   = 16,
6321                 .input  = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6322                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6323                 .ilen   = 16,
6324                 .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6325                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90",
6326                 .rlen   = 16,
6327         }, {
6328
6329                 .key    = "\x03\x03\x03\x03\x03\x03\x03\x03"
6330                           "\x03\x03\x03\x03\x03\x03\x03\x03"
6331                           "\x03\x03\x03\x03",
6332                 .klen   = 20,
6333                 .input  = "\x03\x03\x03\x03\x03\x03\x03\x03"
6334                           "\x03\x03\x03\x03\x03\x03\x03\x03",
6335                 .ilen   = 16,
6336                 .result = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49"
6337                           "\x87\x41\x6f\x82\x0a\x98\x64\xae",
6338                 .rlen   = 16,
6339         }, {
6340                 .key    = "\x24\x24\x24\x24\x24\x24\x24\x24"
6341                           "\x24\x24\x24\x24\x24\x24\x24\x24"
6342                           "\x24\x24\x24\x24\x24\x24\x24\x24"
6343                           "\x24\x24\x24\x24",
6344                 .klen   = 28,
6345                 .input  = "\x24\x24\x24\x24\x24\x24\x24\x24"
6346                           "\x24\x24\x24\x24\x24\x24\x24\x24",
6347                 .ilen   = 16,
6348                 .result = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d"
6349                           "\x06\xd3\x61\x27\xfd\x13\x9e\xde",
6350                 .rlen   = 16,
6351         }, {
6352                 .key    = "\x25\x25\x25\x25\x25\x25\x25\x25"
6353                           "\x25\x25\x25\x25\x25\x25\x25\x25"
6354                           "\x25\x25\x25\x25\x25\x25\x25\x25"
6355                           "\x25\x25\x25\x25\x25\x25\x25\x25",
6356                 .klen   = 32,
6357                 .input  = "\x25\x25\x25\x25\x25\x25\x25\x25"
6358                           "\x25\x25\x25\x25\x25\x25\x25\x25",
6359                 .ilen   = 16,
6360                 .result = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4"
6361                         "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe",
6362                 .rlen   = 16,
6363         }, {
6364                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
6365                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6366                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6367                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6368                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6369                 .klen   = 40,
6370                 .input  = "\x35\x35\x35\x35\x35\x35\x35\x35"
6371                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6372                 .ilen   = 16,
6373                 .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6374                           "\x9e\xc6\x84\x0f\x17\x21\x07\xee",
6375                 .rlen   = 16,
6376         },
6377 };
6378
6379 static struct cipher_testvec anubis_dec_tv_template[] = {
6380         {
6381                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6382                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6383                 .klen   = 16,
6384                 .input  = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6385                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90",
6386                 .ilen   = 16,
6387                 .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6388                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6389                 .rlen   = 16,
6390         }, {
6391
6392                 .key    = "\x03\x03\x03\x03\x03\x03\x03\x03"
6393                           "\x03\x03\x03\x03\x03\x03\x03\x03"
6394                           "\x03\x03\x03\x03",
6395                 .klen   = 20,
6396                 .input  = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49"
6397                           "\x87\x41\x6f\x82\x0a\x98\x64\xae",
6398                 .ilen   = 16,
6399                 .result = "\x03\x03\x03\x03\x03\x03\x03\x03"
6400                           "\x03\x03\x03\x03\x03\x03\x03\x03",
6401                 .rlen   = 16,
6402         }, {
6403                 .key    = "\x24\x24\x24\x24\x24\x24\x24\x24"
6404                           "\x24\x24\x24\x24\x24\x24\x24\x24"
6405                           "\x24\x24\x24\x24\x24\x24\x24\x24"
6406                           "\x24\x24\x24\x24",
6407                 .klen   = 28,
6408                 .input  = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d"
6409                           "\x06\xd3\x61\x27\xfd\x13\x9e\xde",
6410                 .ilen   = 16,
6411                 .result = "\x24\x24\x24\x24\x24\x24\x24\x24"
6412                           "\x24\x24\x24\x24\x24\x24\x24\x24",
6413                 .rlen   = 16,
6414         }, {
6415                 .key    = "\x25\x25\x25\x25\x25\x25\x25\x25"
6416                           "\x25\x25\x25\x25\x25\x25\x25\x25"
6417                           "\x25\x25\x25\x25\x25\x25\x25\x25"
6418                           "\x25\x25\x25\x25\x25\x25\x25\x25",
6419                 .klen   = 32,
6420                 .input  = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4"
6421                         "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe",
6422                 .ilen   = 16,
6423                 .result = "\x25\x25\x25\x25\x25\x25\x25\x25"
6424                           "\x25\x25\x25\x25\x25\x25\x25\x25",
6425                 .rlen   = 16,
6426         }, {
6427                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
6428                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6429                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6430                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6431                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6432                 .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6433                          "\x9e\xc6\x84\x0f\x17\x21\x07\xee",
6434                 .klen   = 40,
6435                 .ilen   = 16,
6436                 .result = "\x35\x35\x35\x35\x35\x35\x35\x35"
6437                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6438                 .rlen   = 16,
6439         },
6440 };
6441
6442 static struct cipher_testvec anubis_cbc_enc_tv_template[] = {
6443         {
6444                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6445                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6446                 .klen   = 16,
6447                 .input  = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6448                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6449                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6450                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6451                 .ilen   = 32,
6452                 .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6453                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90"
6454                           "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66"
6455                           "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe",
6456                 .rlen   = 32,
6457         }, {
6458                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
6459                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6460                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6461                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6462                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6463                 .klen   = 40,
6464                 .input  = "\x35\x35\x35\x35\x35\x35\x35\x35"
6465                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6466                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6467                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6468                 .ilen   = 32,
6469                 .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6470                           "\x9e\xc6\x84\x0f\x17\x21\x07\xee"
6471                           "\xa2\xbc\x06\x98\xc6\x4b\xda\x75"
6472                           "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7",
6473                 .rlen   = 32,
6474         },
6475 };
6476
6477 static struct cipher_testvec anubis_cbc_dec_tv_template[] = {
6478         {
6479                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6480                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6481                 .klen   = 16,
6482                 .input  = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6483                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90"
6484                           "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66"
6485                           "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe",
6486                 .ilen   = 32,
6487                 .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6488                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6489                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6490                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6491                 .rlen   = 32,
6492         }, {
6493                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
6494                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6495                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6496                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6497                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6498                 .klen   = 40,
6499                 .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6500                           "\x9e\xc6\x84\x0f\x17\x21\x07\xee"
6501                           "\xa2\xbc\x06\x98\xc6\x4b\xda\x75"
6502                           "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7",
6503                 .ilen   = 32,
6504                 .result = "\x35\x35\x35\x35\x35\x35\x35\x35"
6505                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6506                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6507                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6508                 .rlen   = 32,
6509         },
6510 };
6511
6512 /*
6513  * XETA test vectors
6514  */
6515 #define XETA_ENC_TEST_VECTORS   4
6516 #define XETA_DEC_TEST_VECTORS   4
6517
6518 static struct cipher_testvec xeta_enc_tv_template[] = {
6519         {
6520                 .key    = zeroed_string,
6521                 .klen   = 16,
6522                 .input  = zeroed_string,
6523                 .ilen   = 8,
6524                 .result = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45",
6525                 .rlen   = 8,
6526         }, {
6527                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6528                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6529                 .klen   = 16,
6530                 .input  = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6531                 .ilen   = 8,
6532                 .result = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3",
6533                 .rlen   = 8,
6534         }, {
6535                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6536                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6537                 .klen   = 16,
6538                 .input  = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6539                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6540                 .ilen   = 16,
6541                 .result = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea"
6542                           "\x61\x35\xaa\xed\xb5\xcb\x71\x2c",
6543                 .rlen   = 16,
6544         }, {
6545                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6546                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6547                 .klen   = 16,
6548                 .input  = "\x54\x65\x61\x20\x69\x73\x20\x67"
6549                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6550                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6551                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6552                 .ilen   = 32,
6553                 .result = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1"
6554                           "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4"
6555                           "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f"
6556                           "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5",
6557                 .rlen   = 32,
6558         }
6559 };
6560
6561 static struct cipher_testvec xeta_dec_tv_template[] = {
6562         {
6563                 .key    = zeroed_string,
6564                 .klen   = 16,
6565                 .input  = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45",
6566                 .ilen   = 8,
6567                 .result = zeroed_string,
6568                 .rlen   = 8,
6569         }, {
6570                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6571                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6572                 .klen   = 16,
6573                 .input  = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3",
6574                 .ilen   = 8,
6575                 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6576                 .rlen   = 8,
6577         }, {
6578                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6579                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6580                 .klen   = 16,
6581                 .input  = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea"
6582                           "\x61\x35\xaa\xed\xb5\xcb\x71\x2c",
6583                 .ilen   = 16,
6584                 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6585                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6586                 .rlen   = 16,
6587         }, {
6588                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6589                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6590                 .klen   = 16,
6591                 .input  = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1"
6592                           "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4"
6593                           "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f"
6594                           "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5",
6595                 .ilen   = 32,
6596                 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
6597                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6598                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6599                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6600                 .rlen   = 32,
6601         }
6602 };
6603
6604 /*
6605  * FCrypt test vectors
6606  */
6607 #define FCRYPT_ENC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_enc_tv_template)
6608 #define FCRYPT_DEC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_dec_tv_template)
6609
6610 static struct cipher_testvec fcrypt_pcbc_enc_tv_template[] = {
6611         { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */
6612                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
6613                 .klen   = 8,
6614                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
6615                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
6616                 .ilen   = 8,
6617                 .result = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41",
6618                 .rlen   = 8,
6619         }, {
6620                 .key    = "\x11\x44\x77\xAA\xDD\x00\x33\x66",
6621                 .klen   = 8,
6622                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
6623                 .input  = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0",
6624                 .ilen   = 8,
6625                 .result = "\xD8\xED\x78\x74\x77\xEC\x06\x80",
6626                 .rlen   = 8,
6627         }, { /* From Arla */
6628                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
6629                 .klen   = 8,
6630                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6631                 .input  = "The quick brown fox jumps over the lazy dogs.\0\0",
6632                 .ilen   = 48,
6633                 .result = "\x00\xf0\x0e\x11\x75\xe6\x23\x82"
6634                           "\xee\xac\x98\x62\x44\x51\xe4\x84"
6635                           "\xc3\x59\xd8\xaa\x64\x60\xae\xf7"
6636                           "\xd2\xd9\x13\x79\x72\xa3\x45\x03"
6637                           "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1"
6638                           "\xf8\x91\x3c\xac\x44\x22\x92\xef",
6639                 .rlen   = 48,
6640         }, {
6641                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6642                 .klen   = 8,
6643                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
6644                 .input  = "The quick brown fox jumps over the lazy dogs.\0\0",
6645                 .ilen   = 48,
6646                 .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
6647                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
6648                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
6649                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
6650                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
6651                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
6652                 .rlen   = 48,
6653         }, { /* split-page version */
6654                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6655                 .klen   = 8,
6656                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
6657                 .input  = "The quick brown fox jumps over the lazy dogs.\0\0",
6658                 .ilen   = 48,
6659                 .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
6660                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
6661                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
6662                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
6663                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
6664                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
6665                 .rlen   = 48,
6666                 .np     = 2,
6667                 .tap    = { 20, 28 },
6668         }
6669 };
6670
6671 static struct cipher_testvec fcrypt_pcbc_dec_tv_template[] = {
6672         { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */
6673                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
6674                 .klen   = 8,
6675                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
6676                 .input  = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41",
6677                 .ilen   = 8,
6678                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
6679                 .rlen   = 8,
6680         }, {
6681                 .key    = "\x11\x44\x77\xAA\xDD\x00\x33\x66",
6682                 .klen   = 8,
6683                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
6684                 .input  = "\xD8\xED\x78\x74\x77\xEC\x06\x80",
6685                 .ilen   = 8,
6686                 .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0",
6687                 .rlen   = 8,
6688         }, { /* From Arla */
6689                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
6690                 .klen   = 8,
6691                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6692                 .input  = "\x00\xf0\x0e\x11\x75\xe6\x23\x82"
6693                           "\xee\xac\x98\x62\x44\x51\xe4\x84"
6694                           "\xc3\x59\xd8\xaa\x64\x60\xae\xf7"
6695                           "\xd2\xd9\x13\x79\x72\xa3\x45\x03"
6696                           "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1"
6697                           "\xf8\x91\x3c\xac\x44\x22\x92\xef",
6698                 .ilen   = 48,
6699                 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
6700                 .rlen   = 48,
6701         }, {
6702                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6703                 .klen   = 8,
6704                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
6705                 .input  = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
6706                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
6707                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
6708                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
6709                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
6710                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
6711                 .ilen   = 48,
6712                 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
6713                 .rlen   = 48,
6714         }, { /* split-page version */
6715                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6716                 .klen   = 8,
6717                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
6718                 .input  = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
6719                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
6720                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
6721                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
6722                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
6723                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
6724                 .ilen   = 48,
6725                 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
6726                 .rlen   = 48,
6727                 .np     = 2,
6728                 .tap    = { 20, 28 },
6729         }
6730 };
6731
6732 /*
6733  * CAMELLIA test vectors.
6734  */
6735 #define CAMELLIA_ENC_TEST_VECTORS 3
6736 #define CAMELLIA_DEC_TEST_VECTORS 3
6737 #define CAMELLIA_CBC_ENC_TEST_VECTORS 2
6738 #define CAMELLIA_CBC_DEC_TEST_VECTORS 2
6739
6740 static struct cipher_testvec camellia_enc_tv_template[] = {
6741         {
6742                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6743                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6744                 .klen   = 16,
6745                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6746                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6747                 .ilen   = 16,
6748                 .result = "\x67\x67\x31\x38\x54\x96\x69\x73"
6749                           "\x08\x57\x06\x56\x48\xea\xbe\x43",
6750                 .rlen   = 16,
6751         }, {
6752                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6753                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
6754                           "\x00\x11\x22\x33\x44\x55\x66\x77",
6755                 .klen   = 24,
6756                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6757                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6758                 .ilen   = 16,
6759                 .result = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8"
6760                           "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9",
6761                 .rlen   = 16,
6762         }, {
6763                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6764                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
6765                           "\x00\x11\x22\x33\x44\x55\x66\x77"
6766                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
6767                 .klen   = 32,
6768                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6769                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6770                 .ilen   = 16,
6771                 .result = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c"
6772                           "\x20\xef\x7c\x91\x9e\x3a\x75\x09",
6773                 .rlen   = 16,
6774         },
6775 };
6776
6777 static struct cipher_testvec camellia_dec_tv_template[] = {
6778         {
6779                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6780                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6781                 .klen   = 16,
6782                 .input  = "\x67\x67\x31\x38\x54\x96\x69\x73"
6783                           "\x08\x57\x06\x56\x48\xea\xbe\x43",
6784                 .ilen   = 16,
6785                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6786                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6787                 .rlen   = 16,
6788         }, {
6789                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6790                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
6791                           "\x00\x11\x22\x33\x44\x55\x66\x77",
6792                 .klen   = 24,
6793                 .input  = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8"
6794                           "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9",
6795                 .ilen   = 16,
6796                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6797                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6798                 .rlen   = 16,
6799         }, {
6800                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6801                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
6802                           "\x00\x11\x22\x33\x44\x55\x66\x77"
6803                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
6804                 .klen   = 32,
6805                 .input  = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c"
6806                           "\x20\xef\x7c\x91\x9e\x3a\x75\x09",
6807                 .ilen   = 16,
6808                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
6809                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
6810                 .rlen   = 16,
6811         },
6812 };
6813
6814 static struct cipher_testvec camellia_cbc_enc_tv_template[] = {
6815         {
6816                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
6817                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
6818                 .klen   = 16,
6819                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
6820                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
6821                 .input  = "Single block msg",
6822                 .ilen   = 16,
6823                 .result = "\xea\x32\x12\x76\x3b\x50\x10\xe7"
6824                           "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51",
6825                 .rlen   = 16,
6826         }, {
6827                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
6828                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
6829                 .klen   = 16,
6830                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
6831                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
6832                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
6833                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
6834                           "\x10\x11\x12\x13\x14\x15\x16\x17"
6835                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
6836                 .ilen   = 32,
6837                 .result = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01"
6838                           "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd"
6839                           "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0"
6840                           "\x15\x78\xe0\x5e\xf2\xcb\x87\x16",
6841                 .rlen   = 32,
6842         },
6843 };
6844
6845 static struct cipher_testvec camellia_cbc_dec_tv_template[] = {
6846         {
6847                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
6848                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
6849                 .klen   = 16,
6850                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
6851                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
6852                 .input  = "\xea\x32\x12\x76\x3b\x50\x10\xe7"
6853                           "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51",
6854                 .ilen   = 16,
6855                 .result = "Single block msg",
6856                 .rlen   = 16,
6857         }, {
6858                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
6859                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
6860                 .klen   = 16,
6861                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
6862                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
6863                 .input = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01"
6864                           "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd"
6865                           "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0"
6866                           "\x15\x78\xe0\x5e\xf2\xcb\x87\x16",
6867                 .ilen   = 32,
6868                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
6869                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
6870                           "\x10\x11\x12\x13\x14\x15\x16\x17"
6871                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
6872                 .rlen   = 32,
6873         },
6874 };
6875
6876 /*
6877  * SEED test vectors
6878  */
6879 #define SEED_ENC_TEST_VECTORS   4
6880 #define SEED_DEC_TEST_VECTORS   4
6881
6882 static struct cipher_testvec seed_enc_tv_template[] = {
6883         {
6884                 .key    = zeroed_string,
6885                 .klen   = 16,
6886                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
6887                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
6888                 .ilen   = 16,
6889                 .result = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68"
6890                           "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb",
6891                 .rlen   = 16,
6892         }, {
6893                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
6894                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
6895                 .klen   = 16,
6896                 .input  = zeroed_string,
6897                 .ilen   = 16,
6898                 .result = "\xc1\x1f\x22\xf2\x01\x40\x50\x50"
6899                           "\x84\x48\x35\x97\xe4\x37\x0f\x43",
6900                 .rlen   = 16,
6901         }, {
6902                 .key    = "\x47\x06\x48\x08\x51\xe6\x1b\xe8"
6903                           "\x5d\x74\xbf\xb3\xfd\x95\x61\x85",
6904                 .klen   = 16,
6905                 .input  = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9"
6906                           "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d",
6907                 .ilen   = 16,
6908                 .result = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d"
6909                           "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a",
6910                 .rlen   = 16,
6911         }, {
6912                 .key    = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d"
6913                           "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7",
6914                 .klen   = 16,
6915                 .input  = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14"
6916                           "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7",
6917                 .ilen   = 16,
6918                 .result = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9"
6919                           "\x5d\x0b\x36\x18\xf4\x0f\x51\x22",
6920                 .rlen   = 16,
6921         }
6922 };
6923
6924 static struct cipher_testvec seed_dec_tv_template[] = {
6925         {
6926                 .key    = zeroed_string,
6927                 .klen   = 16,
6928                 .input  = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68"
6929                           "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb",
6930                 .ilen   = 16,
6931                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
6932                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
6933                 .rlen   = 16,
6934         }, {
6935                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
6936                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
6937                 .klen   = 16,
6938                 .input  = "\xc1\x1f\x22\xf2\x01\x40\x50\x50"
6939                           "\x84\x48\x35\x97\xe4\x37\x0f\x43",
6940                 .ilen   = 16,
6941                 .result = zeroed_string,
6942                 .rlen   = 16,
6943         }, {
6944                 .key    = "\x47\x06\x48\x08\x51\xe6\x1b\xe8"
6945                           "\x5d\x74\xbf\xb3\xfd\x95\x61\x85",
6946                 .klen   = 16,
6947                 .input  = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d"
6948                           "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a",
6949                 .ilen   = 16,
6950                 .result = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9"
6951                           "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d",
6952                 .rlen   = 16,
6953         }, {
6954                 .key    = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d"
6955                           "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7",
6956                 .klen   = 16,
6957                 .input  = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9"
6958                           "\x5d\x0b\x36\x18\xf4\x0f\x51\x22",
6959                 .ilen   = 16,
6960                 .result = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14"
6961                           "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7",
6962                 .rlen   = 16,
6963         }
6964 };
6965
6966 #define SALSA20_STREAM_ENC_TEST_VECTORS 5
6967 static struct cipher_testvec salsa20_stream_enc_tv_template[] = {
6968         /*
6969         * Testvectors from verified.test-vectors submitted to ECRYPT.
6970         * They are truncated to size 39, 64, 111, 129 to test a variety
6971         * of input length.
6972         */
6973         { /* Set 3, vector 0 */
6974                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
6975                         "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F",
6976                 .klen   = 16,
6977                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
6978                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
6979                         "\x00\x00\x00\x00\x00\x00\x00\x00"
6980                         "\x00\x00\x00\x00\x00\x00\x00\x00"
6981                         "\x00\x00\x00\x00\x00\x00\x00\x00"
6982                         "\x00\x00\x00\x00\x00\x00\x00",
6983                 .ilen   = 39,
6984                 .result = "\x2D\xD5\xC3\xF7\xBA\x2B\x20\xF7"
6985                          "\x68\x02\x41\x0C\x68\x86\x88\x89"
6986                          "\x5A\xD8\xC1\xBD\x4E\xA6\xC9\xB1"
6987                          "\x40\xFB\x9B\x90\xE2\x10\x49\xBF"
6988                          "\x58\x3F\x52\x79\x70\xEB\xC1",
6989                 .rlen   = 39,
6990         }, { /* Set 5, vector 0 */
6991                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
6992                         "\x00\x00\x00\x00\x00\x00\x00\x00",
6993                 .klen   = 16,
6994                 .iv     = "\x80\x00\x00\x00\x00\x00\x00\x00",
6995                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
6996                         "\x00\x00\x00\x00\x00\x00\x00\x00"
6997                         "\x00\x00\x00\x00\x00\x00\x00\x00"
6998                         "\x00\x00\x00\x00\x00\x00\x00\x00"
6999                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7000                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7001                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7002                         "\x00\x00\x00\x00\x00\x00\x00\x00",
7003                 .ilen   = 64,
7004                 .result = "\xB6\x6C\x1E\x44\x46\xDD\x95\x57"
7005                          "\xE5\x78\xE2\x23\xB0\xB7\x68\x01"
7006                          "\x7B\x23\xB2\x67\xBB\x02\x34\xAE"
7007                          "\x46\x26\xBF\x44\x3F\x21\x97\x76"
7008                          "\x43\x6F\xB1\x9F\xD0\xE8\x86\x6F"
7009                          "\xCD\x0D\xE9\xA9\x53\x8F\x4A\x09"
7010                          "\xCA\x9A\xC0\x73\x2E\x30\xBC\xF9"
7011                          "\x8E\x4F\x13\xE4\xB9\xE2\x01\xD9",
7012                 .rlen   = 64,
7013         }, { /* Set 3, vector 27 */
7014                 .key    = "\x1B\x1C\x1D\x1E\x1F\x20\x21\x22"
7015                         "\x23\x24\x25\x26\x27\x28\x29\x2A"
7016                         "\x2B\x2C\x2D\x2E\x2F\x30\x31\x32"
7017                         "\x33\x34\x35\x36\x37\x38\x39\x3A",
7018                 .klen   = 32,
7019                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7020                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
7021                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7022                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7023                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7024                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7025                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7026                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7027                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7028                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7029                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7030                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7031                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7032                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7033                         "\x00\x00\x00\x00\x00\x00\x00",
7034                 .ilen   = 111,
7035                 .result = "\xAE\x39\x50\x8E\xAC\x9A\xEC\xE7"
7036                          "\xBF\x97\xBB\x20\xB9\xDE\xE4\x1F"
7037                          "\x87\xD9\x47\xF8\x28\x91\x35\x98"
7038                          "\xDB\x72\xCC\x23\x29\x48\x56\x5E"
7039                          "\x83\x7E\x0B\xF3\x7D\x5D\x38\x7B"
7040                          "\x2D\x71\x02\xB4\x3B\xB5\xD8\x23"
7041                          "\xB0\x4A\xDF\x3C\xEC\xB6\xD9\x3B"
7042                          "\x9B\xA7\x52\xBE\xC5\xD4\x50\x59"
7043                          "\x15\x14\xB4\x0E\x40\xE6\x53\xD1"
7044                          "\x83\x9C\x5B\xA0\x92\x29\x6B\x5E"
7045                          "\x96\x5B\x1E\x2F\xD3\xAC\xC1\x92"
7046                          "\xB1\x41\x3F\x19\x2F\xC4\x3B\xC6"
7047                          "\x95\x46\x45\x54\xE9\x75\x03\x08"
7048                          "\x44\xAF\xE5\x8A\x81\x12\x09",
7049                 .rlen   = 111,
7050         }, { /* Set 5, vector 27 */
7051                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
7052                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7053                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7054                         "\x00\x00\x00\x00\x00\x00\x00\x00",
7055                 .klen   = 32,
7056                 .iv     = "\x00\x00\x00\x10\x00\x00\x00\x00",
7057                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
7058                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7059                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7060                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7061                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7062                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7063                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7064                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7065                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7066                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7067                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7068                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7069                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7070                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7071                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7072                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7073                         "\x00",
7074                 .ilen   = 129,
7075                 .result = "\xD2\xDB\x1A\x5C\xF1\xC1\xAC\xDB"
7076                          "\xE8\x1A\x7A\x43\x40\xEF\x53\x43"
7077                          "\x5E\x7F\x4B\x1A\x50\x52\x3F\x8D"
7078                          "\x28\x3D\xCF\x85\x1D\x69\x6E\x60"
7079                          "\xF2\xDE\x74\x56\x18\x1B\x84\x10"
7080                          "\xD4\x62\xBA\x60\x50\xF0\x61\xF2"
7081                          "\x1C\x78\x7F\xC1\x24\x34\xAF\x58"
7082                          "\xBF\x2C\x59\xCA\x90\x77\xF3\xB0"
7083                          "\x5B\x4A\xDF\x89\xCE\x2C\x2F\xFC"
7084                          "\x67\xF0\xE3\x45\xE8\xB3\xB3\x75"
7085                          "\xA0\x95\x71\xA1\x29\x39\x94\xCA"
7086                          "\x45\x2F\xBD\xCB\x10\xB6\xBE\x9F"
7087                          "\x8E\xF9\xB2\x01\x0A\x5A\x0A\xB7"
7088                          "\x6B\x9D\x70\x8E\x4B\xD6\x2F\xCD"
7089                          "\x2E\x40\x48\x75\xE9\xE2\x21\x45"
7090                          "\x0B\xC9\xB6\xB5\x66\xBC\x9A\x59"
7091                          "\x5A",
7092                 .rlen   = 129,
7093         }, { /* large test vector generated using Crypto++ */
7094                 .key =  "\x00\x01\x02\x03\x04\x05\x06\x07"
7095                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7096                         "\x10\x11\x12\x13\x14\x15\x16\x17"
7097                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
7098                 .klen = 32,
7099                 .iv =   "\x00\x00\x00\x00\x00\x00\x00\x00"
7100                         "\x00\x00\x00\x00\x00\x00\x00\x00",
7101                 .input =
7102                         "\x00\x01\x02\x03\x04\x05\x06\x07"
7103                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7104                         "\x10\x11\x12\x13\x14\x15\x16\x17"
7105                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
7106                         "\x20\x21\x22\x23\x24\x25\x26\x27"
7107                         "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
7108                         "\x30\x31\x32\x33\x34\x35\x36\x37"
7109                         "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
7110                         "\x40\x41\x42\x43\x44\x45\x46\x47"
7111                         "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
7112                         "\x50\x51\x52\x53\x54\x55\x56\x57"
7113                         "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
7114                         "\x60\x61\x62\x63\x64\x65\x66\x67"
7115                         "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
7116                         "\x70\x71\x72\x73\x74\x75\x76\x77"
7117                         "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
7118                         "\x80\x81\x82\x83\x84\x85\x86\x87"
7119                         "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
7120                         "\x90\x91\x92\x93\x94\x95\x96\x97"
7121                         "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
7122                         "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
7123                         "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
7124                         "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
7125                         "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
7126                         "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
7127                         "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
7128                         "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
7129                         "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
7130                         "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
7131                         "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
7132                         "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
7133                         "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
7134                         "\x00\x03\x06\x09\x0c\x0f\x12\x15"
7135                         "\x18\x1b\x1e\x21\x24\x27\x2a\x2d"
7136                         "\x30\x33\x36\x39\x3c\x3f\x42\x45"
7137                         "\x48\x4b\x4e\x51\x54\x57\x5a\x5d"
7138                         "\x60\x63\x66\x69\x6c\x6f\x72\x75"
7139                         "\x78\x7b\x7e\x81\x84\x87\x8a\x8d"
7140                         "\x90\x93\x96\x99\x9c\x9f\xa2\xa5"
7141                         "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd"
7142                         "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5"
7143                         "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed"
7144                         "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05"
7145                         "\x08\x0b\x0e\x11\x14\x17\x1a\x1d"
7146                         "\x20\x23\x26\x29\x2c\x2f\x32\x35"
7147                         "\x38\x3b\x3e\x41\x44\x47\x4a\x4d"
7148                         "\x50\x53\x56\x59\x5c\x5f\x62\x65"
7149                         "\x68\x6b\x6e\x71\x74\x77\x7a\x7d"
7150                         "\x80\x83\x86\x89\x8c\x8f\x92\x95"
7151                         "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad"
7152                         "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5"
7153                         "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd"
7154                         "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5"
7155                         "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d"
7156                         "\x10\x13\x16\x19\x1c\x1f\x22\x25"
7157                         "\x28\x2b\x2e\x31\x34\x37\x3a\x3d"
7158                         "\x40\x43\x46\x49\x4c\x4f\x52\x55"
7159                         "\x58\x5b\x5e\x61\x64\x67\x6a\x6d"
7160                         "\x70\x73\x76\x79\x7c\x7f\x82\x85"
7161                         "\x88\x8b\x8e\x91\x94\x97\x9a\x9d"
7162                         "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5"
7163                         "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd"
7164                         "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5"
7165                         "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd"
7166                         "\x00\x05\x0a\x0f\x14\x19\x1e\x23"
7167                         "\x28\x2d\x32\x37\x3c\x41\x46\x4b"
7168                         "\x50\x55\x5a\x5f\x64\x69\x6e\x73"
7169                         "\x78\x7d\x82\x87\x8c\x91\x96\x9b"
7170                         "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3"
7171                         "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb"
7172                         "\xf0\xf5\xfa\xff\x04\x09\x0e\x13"
7173                         "\x18\x1d\x22\x27\x2c\x31\x36\x3b"
7174                         "\x40\x45\x4a\x4f\x54\x59\x5e\x63"
7175                         "\x68\x6d\x72\x77\x7c\x81\x86\x8b"
7176                         "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3"
7177                         "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb"
7178                         "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03"
7179                         "\x08\x0d\x12\x17\x1c\x21\x26\x2b"
7180                         "\x30\x35\x3a\x3f\x44\x49\x4e\x53"
7181                         "\x58\x5d\x62\x67\x6c\x71\x76\x7b"
7182                         "\x80\x85\x8a\x8f\x94\x99\x9e\xa3"
7183                         "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb"
7184                         "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3"
7185                         "\xf8\xfd\x02\x07\x0c\x11\x16\x1b"
7186                         "\x20\x25\x2a\x2f\x34\x39\x3e\x43"
7187                         "\x48\x4d\x52\x57\x5c\x61\x66\x6b"
7188                         "\x70\x75\x7a\x7f\x84\x89\x8e\x93"
7189                         "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb"
7190                         "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3"
7191                         "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b"
7192                         "\x10\x15\x1a\x1f\x24\x29\x2e\x33"
7193                         "\x38\x3d\x42\x47\x4c\x51\x56\x5b"
7194                         "\x60\x65\x6a\x6f\x74\x79\x7e\x83"
7195                         "\x88\x8d\x92\x97\x9c\xa1\xa6\xab"
7196                         "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3"
7197                         "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb"
7198                         "\x00\x07\x0e\x15\x1c\x23\x2a\x31"
7199                         "\x38\x3f\x46\x4d\x54\x5b\x62\x69"
7200                         "\x70\x77\x7e\x85\x8c\x93\x9a\xa1"
7201                         "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9"
7202                         "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11"
7203                         "\x18\x1f\x26\x2d\x34\x3b\x42\x49"
7204                         "\x50\x57\x5e\x65\x6c\x73\x7a\x81"
7205                         "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9"
7206                         "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1"
7207                         "\xf8\xff\x06\x0d\x14\x1b\x22\x29"
7208                         "\x30\x37\x3e\x45\x4c\x53\x5a\x61"
7209                         "\x68\x6f\x76\x7d\x84\x8b\x92\x99"
7210                         "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1"
7211                         "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09"
7212                         "\x10\x17\x1e\x25\x2c\x33\x3a\x41"
7213                         "\x48\x4f\x56\x5d\x64\x6b\x72\x79"
7214                         "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1"
7215                         "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9"
7216                         "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21"
7217                         "\x28\x2f\x36\x3d\x44\x4b\x52\x59"
7218                         "\x60\x67\x6e\x75\x7c\x83\x8a\x91"
7219                         "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9"
7220                         "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01"
7221                         "\x08\x0f\x16\x1d\x24\x2b\x32\x39"
7222                         "\x40\x47\x4e\x55\x5c\x63\x6a\x71"
7223                         "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9"
7224                         "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1"
7225                         "\xe8\xef\xf6\xfd\x04\x0b\x12\x19"
7226                         "\x20\x27\x2e\x35\x3c\x43\x4a\x51"
7227                         "\x58\x5f\x66\x6d\x74\x7b\x82\x89"
7228                         "\x90\x97\x9e\xa5\xac\xb3\xba\xc1"
7229                         "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9"
7230                         "\x00\x09\x12\x1b\x24\x2d\x36\x3f"
7231                         "\x48\x51\x5a\x63\x6c\x75\x7e\x87"
7232                         "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf"
7233                         "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17"
7234                         "\x20\x29\x32\x3b\x44\x4d\x56\x5f"
7235                         "\x68\x71\x7a\x83\x8c\x95\x9e\xa7"
7236                         "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef"
7237                         "\xf8\x01\x0a\x13\x1c\x25\x2e\x37"
7238                         "\x40\x49\x52\x5b\x64\x6d\x76\x7f"
7239                         "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7"
7240                         "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f"
7241                         "\x18\x21\x2a\x33\x3c\x45\x4e\x57"
7242                         "\x60\x69\x72\x7b\x84\x8d\x96\x9f"
7243                         "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7"
7244                         "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f"
7245                         "\x38\x41\x4a\x53\x5c\x65\x6e\x77"
7246                         "\x80\x89\x92\x9b\xa4\xad\xb6\xbf"
7247                         "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07"
7248                         "\x10\x19\x22\x2b\x34\x3d\x46\x4f"
7249                         "\x58\x61\x6a\x73\x7c\x85\x8e\x97"
7250                         "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf"
7251                         "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27"
7252                         "\x30\x39\x42\x4b\x54\x5d\x66\x6f"
7253                         "\x78\x81\x8a\x93\x9c\xa5\xae\xb7"
7254                         "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff"
7255                         "\x08\x11\x1a\x23\x2c\x35\x3e\x47"
7256                         "\x50\x59\x62\x6b\x74\x7d\x86\x8f"
7257                         "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7"
7258                         "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f"
7259                         "\x28\x31\x3a\x43\x4c\x55\x5e\x67"
7260                         "\x70\x79\x82\x8b\x94\x9d\xa6\xaf"
7261                         "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7"
7262                         "\x00\x0b\x16\x21\x2c\x37\x42\x4d"
7263                         "\x58\x63\x6e\x79\x84\x8f\x9a\xa5"
7264                         "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd"
7265                         "\x08\x13\x1e\x29\x34\x3f\x4a\x55"
7266                         "\x60\x6b\x76\x81\x8c\x97\xa2\xad"
7267                         "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05"
7268                         "\x10\x1b\x26\x31\x3c\x47\x52\x5d"
7269                         "\x68\x73\x7e\x89\x94\x9f\xaa\xb5"
7270                         "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d"
7271                         "\x18\x23\x2e\x39\x44\x4f\x5a\x65"
7272                         "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd"
7273                         "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15"
7274                         "\x20\x2b\x36\x41\x4c\x57\x62\x6d"
7275                         "\x78\x83\x8e\x99\xa4\xaf\xba\xc5"
7276                         "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d"
7277                         "\x28\x33\x3e\x49\x54\x5f\x6a\x75"
7278                         "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd"
7279                         "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25"
7280                         "\x30\x3b\x46\x51\x5c\x67\x72\x7d"
7281                         "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5"
7282                         "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d"
7283                         "\x38\x43\x4e\x59\x64\x6f\x7a\x85"
7284                         "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd"
7285                         "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35"
7286                         "\x40\x4b\x56\x61\x6c\x77\x82\x8d"
7287                         "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5"
7288                         "\xf0\xfb\x06\x11\x1c\x27\x32\x3d"
7289                         "\x48\x53\x5e\x69\x74\x7f\x8a\x95"
7290                         "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed"
7291                         "\xf8\x03\x0e\x19\x24\x2f\x3a\x45"
7292                         "\x50\x5b\x66\x71\x7c\x87\x92\x9d"
7293                         "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5"
7294                         "\x00\x0d\x1a\x27\x34\x41\x4e\x5b"
7295                         "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3"
7296                         "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b"
7297                         "\x38\x45\x52\x5f\x6c\x79\x86\x93"
7298                         "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb"
7299                         "\x08\x15\x22\x2f\x3c\x49\x56\x63"
7300                         "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb"
7301                         "\xd8\xe5\xf2\xff\x0c\x19\x26\x33"
7302                         "\x40\x4d\x5a\x67\x74\x81\x8e\x9b"
7303                         "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03"
7304                         "\x10\x1d\x2a\x37\x44\x51\x5e\x6b"
7305                         "\x78\x85\x92\x9f\xac\xb9\xc6\xd3"
7306                         "\xe0\xed\xfa\x07\x14\x21\x2e\x3b"
7307                         "\x48\x55\x62\x6f\x7c\x89\x96\xa3"
7308                         "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b"
7309                         "\x18\x25\x32\x3f\x4c\x59\x66\x73"
7310                         "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb"
7311                         "\xe8\xf5\x02\x0f\x1c\x29\x36\x43"
7312                         "\x50\x5d\x6a\x77\x84\x91\x9e\xab"
7313                         "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13"
7314                         "\x20\x2d\x3a\x47\x54\x61\x6e\x7b"
7315                         "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3"
7316                         "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b"
7317                         "\x58\x65\x72\x7f\x8c\x99\xa6\xb3"
7318                         "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b"
7319                         "\x28\x35\x42\x4f\x5c\x69\x76\x83"
7320                         "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb"
7321                         "\xf8\x05\x12\x1f\x2c\x39\x46\x53"
7322                         "\x60\x6d\x7a\x87\x94\xa1\xae\xbb"
7323                         "\xc8\xd5\xe2\xef\xfc\x09\x16\x23"
7324                         "\x30\x3d\x4a\x57\x64\x71\x7e\x8b"
7325                         "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3"
7326                         "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69"
7327                         "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1"
7328                         "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59"
7329                         "\x68\x77\x86\x95\xa4\xb3\xc2\xd1"
7330                         "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49"
7331                         "\x58\x67\x76\x85\x94\xa3\xb2\xc1"
7332                         "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39"
7333                         "\x48\x57\x66\x75\x84\x93\xa2\xb1"
7334                         "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29"
7335                         "\x38\x47\x56\x65\x74\x83\x92\xa1"
7336                         "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19"
7337                         "\x28\x37\x46\x55\x64\x73\x82\x91"
7338                         "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09"
7339                         "\x18\x27\x36\x45\x54\x63\x72\x81"
7340                         "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9"
7341                         "\x08\x17\x26\x35\x44\x53\x62\x71"
7342                         "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9"
7343                         "\xf8\x07\x16\x25\x34\x43\x52\x61"
7344                         "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9"
7345                         "\xe8\xf7\x06\x15\x24\x33\x42\x51"
7346                         "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9"
7347                         "\xd8\xe7\xf6\x05\x14\x23\x32\x41"
7348                         "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9"
7349                         "\xc8\xd7\xe6\xf5\x04\x13\x22\x31"
7350                         "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9"
7351                         "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21"
7352                         "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99"
7353                         "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11"
7354                         "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89"
7355                         "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01"
7356                         "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79"
7357                         "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1"
7358                         "\x00\x11\x22\x33\x44\x55\x66\x77"
7359                         "\x88\x99\xaa\xbb\xcc\xdd\xee\xff"
7360                         "\x10\x21\x32\x43\x54\x65\x76\x87"
7361                         "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f"
7362                         "\x20\x31\x42\x53\x64\x75\x86\x97"
7363                         "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f"
7364                         "\x30\x41\x52\x63\x74\x85\x96\xa7"
7365                         "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f"
7366                         "\x40\x51\x62\x73\x84\x95\xa6\xb7"
7367                         "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f"
7368                         "\x50\x61\x72\x83\x94\xa5\xb6\xc7"
7369                         "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f"
7370                         "\x60\x71\x82\x93\xa4\xb5\xc6\xd7"
7371                         "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f"
7372                         "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7"
7373                         "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f"
7374                         "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7"
7375                         "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f"
7376                         "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07"
7377                         "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f"
7378                         "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17"
7379                         "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f"
7380                         "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27"
7381                         "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf"
7382                         "\xc0\xd1\xe2\xf3\x04\x15\x26\x37"
7383                         "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf"
7384                         "\xd0\xe1\xf2\x03\x14\x25\x36\x47"
7385                         "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf"
7386                         "\xe0\xf1\x02\x13\x24\x35\x46\x57"
7387                         "\x68\x79\x8a\x9b\xac\xbd\xce\xdf"
7388                         "\xf0\x01\x12\x23\x34\x45\x56\x67"
7389                         "\x78\x89\x9a\xab\xbc\xcd\xde\xef"
7390                         "\x00\x13\x26\x39\x4c\x5f\x72\x85"
7391                         "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d"
7392                         "\x30\x43\x56\x69\x7c\x8f\xa2\xb5"
7393                         "\xc8\xdb\xee\x01\x14\x27\x3a\x4d"
7394                         "\x60\x73\x86\x99\xac\xbf\xd2\xe5"
7395                         "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d"
7396                         "\x90\xa3\xb6\xc9\xdc\xef\x02\x15"
7397                         "\x28\x3b\x4e\x61\x74\x87\x9a\xad"
7398                         "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45"
7399                         "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd"
7400                         "\xf0\x03\x16\x29\x3c\x4f\x62\x75"
7401                         "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d"
7402                         "\x20\x33\x46\x59\x6c\x7f\x92\xa5"
7403                         "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d"
7404                         "\x50\x63\x76\x89\x9c\xaf\xc2\xd5"
7405                         "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d"
7406                         "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05"
7407                         "\x18\x2b\x3e\x51\x64\x77\x8a\x9d"
7408                         "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35"
7409                         "\x48\x5b\x6e\x81\x94\xa7\xba\xcd"
7410                         "\xe0\xf3\x06\x19\x2c\x3f\x52\x65"
7411                         "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd"
7412                         "\x10\x23\x36\x49\x5c\x6f\x82\x95"
7413                         "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d"
7414                         "\x40\x53\x66\x79\x8c\x9f\xb2\xc5"
7415                         "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d"
7416                         "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5"
7417                         "\x08\x1b\x2e\x41\x54\x67\x7a\x8d"
7418                         "\xa0\xb3\xc6\xd9\xec\xff\x12\x25"
7419                         "\x38\x4b\x5e\x71\x84\x97\xaa\xbd"
7420                         "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55"
7421                         "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed"
7422                         "\x00\x15\x2a\x3f\x54\x69\x7e\x93"
7423                         "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b"
7424                         "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3"
7425                         "\xf8\x0d\x22\x37\x4c\x61\x76\x8b"
7426                         "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33"
7427                         "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb"
7428                         "\xf0\x05\x1a\x2f\x44\x59\x6e\x83"
7429                         "\x98\xad\xc2\xd7\xec\x01\x16\x2b"
7430                         "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3"
7431                         "\xe8\xfd\x12\x27\x3c\x51\x66\x7b"
7432                         "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23"
7433                         "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb"
7434                         "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73"
7435                         "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b"
7436                         "\x30\x45\x5a\x6f\x84\x99\xae\xc3"
7437                         "\xd8\xed\x02\x17\x2c\x41\x56\x6b"
7438                         "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13"
7439                         "\x28\x3d\x52\x67\x7c\x91\xa6\xbb"
7440                         "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63"
7441                         "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b"
7442                         "\x20\x35\x4a\x5f\x74\x89\x9e\xb3"
7443                         "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b"
7444                         "\x70\x85\x9a\xaf\xc4\xd9\xee\x03"
7445                         "\x18\x2d\x42\x57\x6c\x81\x96\xab"
7446                         "\xc0\xd5\xea\xff\x14\x29\x3e\x53"
7447                         "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb"
7448                         "\x10\x25\x3a\x4f\x64\x79\x8e\xa3"
7449                         "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b"
7450                         "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3"
7451                         "\x08\x1d\x32\x47\x5c\x71\x86\x9b"
7452                         "\xb0\xc5\xda\xef\x04\x19\x2e\x43"
7453                         "\x58\x6d\x82\x97\xac\xc1\xd6\xeb"
7454                         "\x00\x17\x2e\x45\x5c\x73\x8a\xa1"
7455                         "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59"
7456                         "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11"
7457                         "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9"
7458                         "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81"
7459                         "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39"
7460                         "\x50\x67\x7e\x95\xac\xc3\xda\xf1"
7461                         "\x08\x1f\x36\x4d\x64\x7b\x92\xa9"
7462                         "\xc0\xd7\xee\x05\x1c\x33\x4a\x61"
7463                         "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19"
7464                         "\x30\x47\x5e\x75\x8c\xa3\xba\xd1"
7465                         "\xe8\xff\x16\x2d\x44\x5b\x72\x89"
7466                         "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41"
7467                         "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9"
7468                         "\x10\x27\x3e\x55\x6c\x83\x9a\xb1"
7469                         "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69"
7470                         "\x80\x97\xae\xc5\xdc\xf3\x0a\x21"
7471                         "\x38\x4f\x66\x7d\x94\xab\xc2\xd9"
7472                         "\xf0\x07\x1e\x35\x4c\x63\x7a\x91"
7473                         "\xa8\xbf\xd6\xed\x04\x1b\x32\x49"
7474                         "\x60\x77\x8e\xa5\xbc\xd3\xea\x01"
7475                         "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9"
7476                         "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71"
7477                         "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29"
7478                         "\x40\x57\x6e\x85\x9c\xb3\xca\xe1"
7479                         "\xf8\x0f\x26\x3d\x54\x6b\x82\x99"
7480                         "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51"
7481                         "\x68\x7f\x96\xad\xc4\xdb\xf2\x09"
7482                         "\x20\x37\x4e\x65\x7c\x93\xaa\xc1"
7483                         "\xd8\xef\x06\x1d\x34\x4b\x62\x79"
7484                         "\x90\xa7\xbe\xd5\xec\x03\x1a\x31"
7485                         "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9"
7486                         "\x00\x19\x32\x4b\x64\x7d\x96\xaf"
7487                         "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77"
7488                         "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f"
7489                         "\x58\x71\x8a\xa3\xbc\xd5\xee\x07"
7490                         "\x20\x39\x52\x6b\x84\x9d\xb6\xcf"
7491                         "\xe8\x01\x1a\x33\x4c\x65\x7e\x97"
7492                         "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f"
7493                         "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27"
7494                         "\x40\x59\x72\x8b\xa4\xbd\xd6\xef"
7495                         "\x08\x21\x3a\x53\x6c\x85\x9e\xb7"
7496                         "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f"
7497                         "\x98\xb1\xca\xe3\xfc\x15\x2e\x47"
7498                         "\x60\x79\x92\xab\xc4\xdd\xf6\x0f"
7499                         "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7"
7500                         "\xf0\x09\x22\x3b\x54\x6d\x86\x9f"
7501                         "\xb8\xd1\xea\x03\x1c\x35\x4e\x67"
7502                         "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f"
7503                         "\x48\x61\x7a\x93\xac\xc5\xde\xf7"
7504                         "\x10\x29\x42\x5b\x74\x8d\xa6\xbf"
7505                         "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87"
7506                         "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f"
7507                         "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17"
7508                         "\x30\x49\x62\x7b\x94\xad\xc6\xdf"
7509                         "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7"
7510                         "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f"
7511                         "\x88\xa1\xba\xd3\xec\x05\x1e\x37"
7512                         "\x50\x69\x82\x9b\xb4\xcd\xe6\xff"
7513                         "\x18\x31\x4a\x63\x7c\x95\xae\xc7"
7514                         "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f"
7515                         "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57"
7516                         "\x70\x89\xa2\xbb\xd4\xed\x06\x1f"
7517                         "\x38\x51\x6a\x83\x9c\xb5\xce\xe7"
7518                         "\x00\x1b\x36\x51\x6c\x87\xa2\xbd"
7519                         "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95"
7520                         "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d"
7521                         "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45"
7522                         "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d"
7523                         "\x38\x53\x6e\x89\xa4\xbf\xda\xf5"
7524                         "\x10\x2b\x46\x61\x7c\x97\xb2\xcd"
7525                         "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5"
7526                         "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d"
7527                         "\x98\xb3\xce\xe9\x04\x1f\x3a\x55"
7528                         "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d"
7529                         "\x48\x63\x7e\x99\xb4\xcf\xea\x05"
7530                         "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd"
7531                         "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5"
7532                         "\xd0\xeb\x06\x21\x3c\x57\x72\x8d"
7533                         "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65"
7534                         "\x80\x9b\xb6\xd1\xec\x07\x22\x3d"
7535                         "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15"
7536                         "\x30\x4b\x66\x81\x9c\xb7\xd2\xed"
7537                         "\x08\x23\x3e\x59\x74\x8f\xaa\xc5"
7538                         "\xe0\xfb\x16\x31\x4c\x67\x82\x9d"
7539                         "\xb8\xd3\xee\x09\x24\x3f\x5a\x75"
7540                         "\x90\xab\xc6\xe1\xfc\x17\x32\x4d"
7541                         "\x68\x83\x9e\xb9\xd4\xef\x0a\x25"
7542                         "\x40\x5b\x76\x91\xac\xc7\xe2\xfd"
7543                         "\x18\x33\x4e\x69\x84\x9f\xba\xd5"
7544                         "\xf0\x0b\x26\x41\x5c\x77\x92\xad"
7545                         "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85"
7546                         "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d"
7547                         "\x78\x93\xae\xc9\xe4\xff\x1a\x35"
7548                         "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d"
7549                         "\x28\x43\x5e\x79\x94\xaf\xca\xe5"
7550                         "\x00\x1d\x3a\x57\x74\x91\xae\xcb"
7551                         "\xe8\x05\x22\x3f\x5c\x79\x96\xb3"
7552                         "\xd0\xed\x0a\x27\x44\x61\x7e\x9b"
7553                         "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83"
7554                         "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b"
7555                         "\x88\xa5\xc2\xdf\xfc\x19\x36\x53"
7556                         "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b"
7557                         "\x58\x75\x92\xaf\xcc\xe9\x06\x23"
7558                         "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b"
7559                         "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3"
7560                         "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb"
7561                         "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3"
7562                         "\xe0\xfd\x1a\x37\x54\x71\x8e\xab"
7563                         "\xc8\xe5\x02\x1f\x3c\x59\x76\x93"
7564                         "\xb0\xcd\xea\x07\x24\x41\x5e\x7b"
7565                         "\x98\xb5\xd2\xef\x0c\x29\x46\x63"
7566                         "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b"
7567                         "\x68\x85\xa2\xbf\xdc\xf9\x16\x33"
7568                         "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b"
7569                         "\x38\x55\x72\x8f\xac\xc9\xe6\x03"
7570                         "\x20\x3d\x5a\x77\x94\xb1\xce\xeb"
7571                         "\x08\x25\x42\x5f\x7c\x99\xb6\xd3"
7572                         "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb"
7573                         "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3"
7574                         "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b"
7575                         "\xa8\xc5\xe2\xff\x1c\x39\x56\x73"
7576                         "\x90\xad\xca\xe7\x04\x21\x3e\x5b"
7577                         "\x78\x95\xb2\xcf\xec\x09\x26\x43"
7578                         "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b"
7579                         "\x48\x65\x82\x9f\xbc\xd9\xf6\x13"
7580                         "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb"
7581                         "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3"
7582                         "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9"
7583                         "\xf8\x17\x36\x55\x74\x93\xb2\xd1"
7584                         "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9"
7585                         "\xe8\x07\x26\x45\x64\x83\xa2\xc1"
7586                         "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9"
7587                         "\xd8\xf7\x16\x35\x54\x73\x92\xb1"
7588                         "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9"
7589                         "\xc8\xe7\x06\x25\x44\x63\x82\xa1"
7590                         "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99"
7591                         "\xb8\xd7\xf6\x15\x34\x53\x72\x91"
7592                         "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89"
7593                         "\xa8\xc7\xe6\x05\x24\x43\x62\x81"
7594                         "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79"
7595                         "\x98\xb7\xd6\xf5\x14\x33\x52\x71"
7596                         "\x90\xaf\xce\xed\x0c\x2b\x4a\x69"
7597                         "\x88\xa7\xc6\xe5\x04\x23\x42\x61"
7598                         "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59"
7599                         "\x78\x97\xb6\xd5\xf4\x13\x32\x51"
7600                         "\x70\x8f\xae\xcd\xec\x0b\x2a\x49"
7601                         "\x68\x87\xa6\xc5\xe4\x03\x22\x41"
7602                         "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39"
7603                         "\x58\x77\x96\xb5\xd4\xf3\x12\x31"
7604                         "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29"
7605                         "\x48\x67\x86\xa5\xc4\xe3\x02\x21"
7606                         "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19"
7607                         "\x38\x57\x76\x95\xb4\xd3\xf2\x11"
7608                         "\x30\x4f\x6e\x8d\xac\xcb\xea\x09"
7609                         "\x28\x47\x66\x85\xa4\xc3\xe2\x01"
7610                         "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9"
7611                         "\x18\x37\x56\x75\x94\xb3\xd2\xf1"
7612                         "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9"
7613                         "\x08\x27\x46\x65\x84\xa3\xc2\xe1"
7614                         "\x00\x21\x42\x63",
7615                 .ilen = 4100,
7616                 .result =
7617                         "\xb5\x81\xf5\x64\x18\x73\xe3\xf0"
7618                         "\x4c\x13\xf2\x77\x18\x60\x65\x5e"
7619                         "\x29\x01\xce\x98\x55\x53\xf9\x0c"
7620                         "\x2a\x08\xd5\x09\xb3\x57\x55\x56"
7621                         "\xc5\xe9\x56\x90\xcb\x6a\xa3\xc0"
7622                         "\xff\xc4\x79\xb4\xd2\x97\x5d\xc4"
7623                         "\x43\xd1\xfe\x94\x7b\x88\x06\x5a"
7624                         "\xb2\x9e\x2c\xfc\x44\x03\xb7\x90"
7625                         "\xa0\xc1\xba\x6a\x33\xb8\xc7\xb2"
7626                         "\x9d\xe1\x12\x4f\xc0\x64\xd4\x01"
7627                         "\xfe\x8c\x7a\x66\xf7\xe6\x5a\x91"
7628                         "\xbb\xde\x56\x86\xab\x65\x21\x30"
7629                         "\x00\x84\x65\x24\xa5\x7d\x85\xb4"
7630                         "\xe3\x17\xed\x3a\xb7\x6f\xb4\x0b"
7631                         "\x0b\xaf\x15\xae\x5a\x8f\xf2\x0c"
7632                         "\x2f\x27\xf4\x09\xd8\xd2\x96\xb7"
7633                         "\x71\xf2\xc5\x99\x4d\x7e\x7f\x75"
7634                         "\x77\x89\x30\x8b\x59\xdb\xa2\xb2"
7635                         "\xa0\xf3\x19\x39\x2b\xc5\x7e\x3f"
7636                         "\x4f\xd9\xd3\x56\x28\x97\x44\xdc"
7637                         "\xc0\x8b\x77\x24\xd9\x52\xe7\xc5"
7638                         "\xaf\xf6\x7d\x59\xb2\x44\x05\x1d"
7639                         "\xb1\xb0\x11\xa5\x0f\xec\x33\xe1"
7640                         "\x6d\x1b\x4e\x1f\xff\x57\x91\xb4"
7641                         "\x5b\x9a\x96\xc5\x53\xbc\xae\x20"
7642                         "\x3c\xbb\x14\xe2\xe8\x22\x33\xc1"
7643                         "\x5e\x76\x9e\x46\x99\xf6\x2a\x15"
7644                         "\xc6\x97\x02\xa0\x66\x43\xd1\xa6"
7645                         "\x31\xa6\x9f\xfb\xf4\xd3\x69\xe5"
7646                         "\xcd\x76\x95\xb8\x7a\x82\x7f\x21"
7647                         "\x45\xff\x3f\xce\x55\xf6\x95\x10"
7648                         "\x08\x77\x10\x43\xc6\xf3\x09\xe5"
7649                         "\x68\xe7\x3c\xad\x00\x52\x45\x0d"
7650                         "\xfe\x2d\xc6\xc2\x94\x8c\x12\x1d"
7651                         "\xe6\x25\xae\x98\x12\x8e\x19\x9c"
7652                         "\x81\x68\xb1\x11\xf6\x69\xda\xe3"
7653                         "\x62\x08\x18\x7a\x25\x49\x28\xac"
7654                         "\xba\x71\x12\x0b\xe4\xa2\xe5\xc7"
7655                         "\x5d\x8e\xec\x49\x40\x21\xbf\x5a"
7656                         "\x98\xf3\x02\x68\x55\x03\x7f\x8a"
7657                         "\xe5\x94\x0c\x32\x5c\x07\x82\x63"
7658                         "\xaf\x6f\x91\x40\x84\x8e\x52\x25"
7659                         "\xd0\xb0\x29\x53\x05\xe2\x50\x7a"
7660                         "\x34\xeb\xc9\x46\x20\xa8\x3d\xde"
7661                         "\x7f\x16\x5f\x36\xc5\x2e\xdc\xd1"
7662                         "\x15\x47\xc7\x50\x40\x6d\x91\xc5"
7663                         "\xe7\x93\x95\x1a\xd3\x57\xbc\x52"
7664                         "\x33\xee\x14\x19\x22\x52\x89\xa7"
7665                         "\x4a\x25\x56\x77\x4b\xca\xcf\x0a"
7666                         "\xe1\xf5\x35\x85\x30\x7e\x59\x4a"
7667                         "\xbd\x14\x5b\xdf\xe3\x46\xcb\xac"
7668                         "\x1f\x6c\x96\x0e\xf4\x81\xd1\x99"
7669                         "\xca\x88\x63\x3d\x02\x58\x6b\xa9"
7670                         "\xe5\x9f\xb3\x00\xb2\x54\xc6\x74"
7671                         "\x1c\xbf\x46\xab\x97\xcc\xf8\x54"
7672                         "\x04\x07\x08\x52\xe6\xc0\xda\x93"
7673                         "\x74\x7d\x93\x99\x5d\x78\x68\xa6"
7674                         "\x2e\x6b\xd3\x6a\x69\xcc\x12\x6b"
7675                         "\xd4\xc7\xa5\xc6\xe7\xf6\x03\x04"
7676                         "\x5d\xcd\x61\x5e\x17\x40\xdc\xd1"
7677                         "\x5c\xf5\x08\xdf\x5c\x90\x85\xa4"
7678                         "\xaf\xf6\x78\xbb\x0d\xf1\xf4\xa4"
7679                         "\x54\x26\x72\x9e\x61\xfa\x86\xcf"
7680                         "\xe8\x9e\xa1\xe0\xc7\x48\x23\xae"
7681                         "\x5a\x90\xae\x75\x0a\x74\x18\x89"
7682                         "\x05\xb1\x92\xb2\x7f\xd0\x1b\xa6"
7683                         "\x62\x07\x25\x01\xc7\xc2\x4f\xf9"
7684                         "\xe8\xfe\x63\x95\x80\x07\xb4\x26"
7685                         "\xcc\xd1\x26\xb6\xc4\x3f\x9e\xcb"
7686                         "\x8e\x3b\x2e\x44\x16\xd3\x10\x9a"
7687                         "\x95\x08\xeb\xc8\xcb\xeb\xbf\x6f"
7688                         "\x0b\xcd\x1f\xc8\xca\x86\xaa\xec"
7689                         "\x33\xe6\x69\xf4\x45\x25\x86\x3a"
7690                         "\x22\x94\x4f\x00\x23\x6a\x44\xc2"
7691                         "\x49\x97\x33\xab\x36\x14\x0a\x70"
7692                         "\x24\xc3\xbe\x04\x3b\x79\xa0\xf9"
7693                         "\xb8\xe7\x76\x29\x22\x83\xd7\xf2"
7694                         "\x94\xf4\x41\x49\xba\x5f\x7b\x07"
7695                         "\xb5\xfb\xdb\x03\x1a\x9f\xb6\x4c"
7696                         "\xc2\x2e\x37\x40\x49\xc3\x38\x16"
7697                         "\xe2\x4f\x77\x82\xb0\x68\x4c\x71"
7698                         "\x1d\x57\x61\x9c\xd9\x4e\x54\x99"
7699                         "\x47\x13\x28\x73\x3c\xbb\x00\x90"
7700                         "\xf3\x4d\xc9\x0e\xfd\xe7\xb1\x71"
7701                         "\xd3\x15\x79\xbf\xcc\x26\x2f\xbd"
7702                         "\xad\x6c\x50\x69\x6c\x3e\x6d\x80"
7703                         "\x9a\xea\x78\xaf\x19\xb2\x0d\x4d"
7704                         "\xad\x04\x07\xae\x22\x90\x4a\x93"
7705                         "\x32\x0e\x36\x9b\x1b\x46\xba\x3b"
7706                         "\xb4\xac\xc6\xd1\xa2\x31\x53\x3b"
7707                         "\x2a\x3d\x45\xfe\x03\x61\x10\x85"
7708                         "\x17\x69\xa6\x78\xcc\x6c\x87\x49"
7709                         "\x53\xf9\x80\x10\xde\x80\xa2\x41"
7710                         "\x6a\xc3\x32\x02\xad\x6d\x3c\x56"
7711                         "\x00\x71\x51\x06\xa7\xbd\xfb\xef"
7712                         "\x3c\xb5\x9f\xfc\x48\x7d\x53\x7c"
7713                         "\x66\xb0\x49\x23\xc4\x47\x10\x0e"
7714                         "\xe5\x6c\x74\x13\xe6\xc5\x3f\xaa"
7715                         "\xde\xff\x07\x44\xdd\x56\x1b\xad"
7716                         "\x09\x77\xfb\x5b\x12\xb8\x0d\x38"
7717                         "\x17\x37\x35\x7b\x9b\xbc\xfe\xd4"
7718                         "\x7e\x8b\xda\x7e\x5b\x04\xa7\x22"
7719                         "\xa7\x31\xa1\x20\x86\xc7\x1b\x99"
7720                         "\xdb\xd1\x89\xf4\x94\xa3\x53\x69"
7721                         "\x8d\xe7\xe8\x74\x11\x8d\x74\xd6"
7722                         "\x07\x37\x91\x9f\xfd\x67\x50\x3a"
7723                         "\xc9\xe1\xf4\x36\xd5\xa0\x47\xd1"
7724                         "\xf9\xe5\x39\xa3\x31\xac\x07\x36"
7725                         "\x23\xf8\x66\x18\x14\x28\x34\x0f"
7726                         "\xb8\xd0\xe7\x29\xb3\x04\x4b\x55"
7727                         "\x01\x41\xb2\x75\x8d\xcb\x96\x85"
7728                         "\x3a\xfb\xab\x2b\x9e\xfa\x58\x20"
7729                         "\x44\x1f\xc0\x14\x22\x75\x61\xe8"
7730                         "\xaa\x19\xcf\xf1\x82\x56\xf4\xd7"
7731                         "\x78\x7b\x3d\x5f\xb3\x9e\x0b\x8a"
7732                         "\x57\x50\xdb\x17\x41\x65\x4d\xa3"
7733                         "\x02\xc9\x9c\x9c\x53\xfb\x39\x39"
7734                         "\x9b\x1d\x72\x24\xda\xb7\x39\xbe"
7735                         "\x13\x3b\xfa\x29\xda\x9e\x54\x64"
7736                         "\x6e\xba\xd8\xa1\xcb\xb3\x36\xfa"
7737                         "\xcb\x47\x85\xe9\x61\x38\xbc\xbe"
7738                         "\xc5\x00\x38\x2a\x54\xf7\xc4\xb9"
7739                         "\xb3\xd3\x7b\xa0\xa0\xf8\x72\x7f"
7740                         "\x8c\x8e\x82\x0e\xc6\x1c\x75\x9d"
7741                         "\xca\x8e\x61\x87\xde\xad\x80\xd2"
7742                         "\xf5\xf9\x80\xef\x15\x75\xaf\xf5"
7743                         "\x80\xfb\xff\x6d\x1e\x25\xb7\x40"
7744                         "\x61\x6a\x39\x5a\x6a\xb5\x31\xab"
7745                         "\x97\x8a\x19\x89\x44\x40\xc0\xa6"
7746                         "\xb4\x4e\x30\x32\x7b\x13\xe7\x67"
7747                         "\xa9\x8b\x57\x04\xc2\x01\xa6\xf4"
7748                         "\x28\x99\xad\x2c\x76\xa3\x78\xc2"
7749                         "\x4a\xe6\xca\x5c\x50\x6a\xc1\xb0"
7750                         "\x62\x4b\x10\x8e\x7c\x17\x43\xb3"
7751                         "\x17\x66\x1c\x3e\x8d\x69\xf0\x5a"
7752                         "\x71\xf5\x97\xdc\xd1\x45\xdd\x28"
7753                         "\xf3\x5d\xdf\x53\x7b\x11\xe5\xbc"
7754                         "\x4c\xdb\x1b\x51\x6b\xe9\xfb\x3d"
7755                         "\xc1\xc3\x2c\xb9\x71\xf5\xb6\xb2"
7756                         "\x13\x36\x79\x80\x53\xe8\xd3\xa6"
7757                         "\x0a\xaf\xfd\x56\x97\xf7\x40\x8e"
7758                         "\x45\xce\xf8\xb0\x9e\x5c\x33\x82"
7759                         "\xb0\x44\x56\xfc\x05\x09\xe9\x2a"
7760                         "\xac\x26\x80\x14\x1d\xc8\x3a\x35"
7761                         "\x4c\x82\x97\xfd\x76\xb7\xa9\x0a"
7762                         "\x35\x58\x79\x8e\x0f\x66\xea\xaf"
7763                         "\x51\x6c\x09\xa9\x6e\x9b\xcb\x9a"
7764                         "\x31\x47\xa0\x2f\x7c\x71\xb4\x4a"
7765                         "\x11\xaa\x8c\x66\xc5\x64\xe6\x3a"
7766                         "\x54\xda\x24\x6a\xc4\x41\x65\x46"
7767                         "\x82\xa0\x0a\x0f\x5f\xfb\x25\xd0"
7768                         "\x2c\x91\xa7\xee\xc4\x81\x07\x86"
7769                         "\x75\x5e\x33\x69\x97\xe4\x2c\xa8"
7770                         "\x9d\x9f\x0b\x6a\xbe\xad\x98\xda"
7771                         "\x6d\x94\x41\xda\x2c\x1e\x89\xc4"
7772                         "\xc2\xaf\x1e\x00\x05\x0b\x83\x60"
7773                         "\xbd\x43\xea\x15\x23\x7f\xb9\xac"
7774                         "\xee\x4f\x2c\xaf\x2a\xf3\xdf\xd0"
7775                         "\xf3\x19\x31\xbb\x4a\x74\x84\x17"
7776                         "\x52\x32\x2c\x7d\x61\xe4\xcb\xeb"
7777                         "\x80\x38\x15\x52\xcb\x6f\xea\xe5"
7778                         "\x73\x9c\xd9\x24\x69\xc6\x95\x32"
7779                         "\x21\xc8\x11\xe4\xdc\x36\xd7\x93"
7780                         "\x38\x66\xfb\xb2\x7f\x3a\xb9\xaf"
7781                         "\x31\xdd\x93\x75\x78\x8a\x2c\x94"
7782                         "\x87\x1a\x58\xec\x9e\x7d\x4d\xba"
7783                         "\xe1\xe5\x4d\xfc\xbc\xa4\x2a\x14"
7784                         "\xef\xcc\xa7\xec\xab\x43\x09\x18"
7785                         "\xd3\xab\x68\xd1\x07\x99\x44\x47"
7786                         "\xd6\x83\x85\x3b\x30\xea\xa9\x6b"
7787                         "\x63\xea\xc4\x07\xfb\x43\x2f\xa4"
7788                         "\xaa\xb0\xab\x03\x89\xce\x3f\x8c"
7789                         "\x02\x7c\x86\x54\xbc\x88\xaf\x75"
7790                         "\xd2\xdc\x63\x17\xd3\x26\xf6\x96"
7791                         "\xa9\x3c\xf1\x61\x8c\x11\x18\xcc"
7792                         "\xd6\xea\x5b\xe2\xcd\xf0\xf1\xb2"
7793                         "\xe5\x35\x90\x1f\x85\x4c\x76\x5b"
7794                         "\x66\xce\x44\xa4\x32\x9f\xe6\x7b"
7795                         "\x71\x6e\x9f\x58\x15\x67\x72\x87"
7796                         "\x64\x8e\x3a\x44\x45\xd4\x76\xfa"
7797                         "\xc2\xf6\xef\x85\x05\x18\x7a\x9b"
7798                         "\xba\x41\x54\xac\xf0\xfc\x59\x12"
7799                         "\x3f\xdf\xa0\xe5\x8a\x65\xfd\x3a"
7800                         "\x62\x8d\x83\x2c\x03\xbe\x05\x76"
7801                         "\x2e\x53\x49\x97\x94\x33\xae\x40"
7802                         "\x81\x15\xdb\x6e\xad\xaa\xf5\x4b"
7803                         "\xe3\x98\x70\xdf\xe0\x7c\xcd\xdb"
7804                         "\x02\xd4\x7d\x2f\xc1\xe6\xb4\xf3"
7805                         "\xd7\x0d\x7a\xd9\x23\x9e\x87\x2d"
7806                         "\xce\x87\xad\xcc\x72\x05\x00\x29"
7807                         "\xdc\x73\x7f\x64\xc1\x15\x0e\xc2"
7808                         "\xdf\xa7\x5f\xeb\x41\xa1\xcd\xef"
7809                         "\x5c\x50\x79\x2a\x56\x56\x71\x8c"
7810                         "\xac\xc0\x79\x50\x69\xca\x59\x32"
7811                         "\x65\xf2\x54\xe4\x52\x38\x76\xd1"
7812                         "\x5e\xde\x26\x9e\xfb\x75\x2e\x11"
7813                         "\xb5\x10\xf4\x17\x73\xf5\x89\xc7"
7814                         "\x4f\x43\x5c\x8e\x7c\xb9\x05\x52"
7815                         "\x24\x40\x99\xfe\x9b\x85\x0b\x6c"
7816                         "\x22\x3e\x8b\xae\x86\xa1\xd2\x79"
7817                         "\x05\x68\x6b\xab\xe3\x41\x49\xed"
7818                         "\x15\xa1\x8d\x40\x2d\x61\xdf\x1a"
7819                         "\x59\xc9\x26\x8b\xef\x30\x4c\x88"
7820                         "\x4b\x10\xf8\x8d\xa6\x92\x9f\x4b"
7821                         "\xf3\xc4\x53\x0b\x89\x5d\x28\x92"
7822                         "\xcf\x78\xb2\xc0\x5d\xed\x7e\xfc"
7823                         "\xc0\x12\x23\x5f\x5a\x78\x86\x43"
7824                         "\x6e\x27\xf7\x5a\xa7\x6a\xed\x19"
7825                         "\x04\xf0\xb3\x12\xd1\xbd\x0e\x89"
7826                         "\x6e\xbc\x96\xa8\xd8\x49\x39\x9f"
7827                         "\x7e\x67\xf0\x2e\x3e\x01\xa9\xba"
7828                         "\xec\x8b\x62\x8e\xcb\x4a\x70\x43"
7829                         "\xc7\xc2\xc4\xca\x82\x03\x73\xe9"
7830                         "\x11\xdf\xcf\x54\xea\xc9\xb0\x95"
7831                         "\x51\xc0\x13\x3d\x92\x05\xfa\xf4"
7832                         "\xa9\x34\xc8\xce\x6c\x3d\x54\xcc"
7833                         "\xc4\xaf\xf1\xdc\x11\x44\x26\xa2"
7834                         "\xaf\xf1\x85\x75\x7d\x03\x61\x68"
7835                         "\x4e\x78\xc6\x92\x7d\x86\x7d\x77"
7836                         "\xdc\x71\x72\xdb\xc6\xae\xa1\xcb"
7837                         "\x70\x9a\x0b\x19\xbe\x4a\x6c\x2a"
7838                         "\xe2\xba\x6c\x64\x9a\x13\x28\xdf"
7839                         "\x85\x75\xe6\x43\xf6\x87\x08\x68"
7840                         "\x6e\xba\x6e\x79\x9f\x04\xbc\x23"
7841                         "\x50\xf6\x33\x5c\x1f\x24\x25\xbe"
7842                         "\x33\x47\x80\x45\x56\xa3\xa7\xd7"
7843                         "\x7a\xb1\x34\x0b\x90\x3c\x9c\xad"
7844                         "\x44\x5f\x9e\x0e\x9d\xd4\xbd\x93"
7845                         "\x5e\xfa\x3c\xe0\xb0\xd9\xed\xf3"
7846                         "\xd6\x2e\xff\x24\xd8\x71\x6c\xed"
7847                         "\xaf\x55\xeb\x22\xac\x93\x68\x32"
7848                         "\x05\x5b\x47\xdd\xc6\x4a\xcb\xc7"
7849                         "\x10\xe1\x3c\x92\x1a\xf3\x23\x78"
7850                         "\x2b\xa1\xd2\x80\xf4\x12\xb1\x20"
7851                         "\x8f\xff\x26\x35\xdd\xfb\xc7\x4e"
7852                         "\x78\xf1\x2d\x50\x12\x77\xa8\x60"
7853                         "\x7c\x0f\xf5\x16\x2f\x63\x70\x2a"
7854                         "\xc0\x96\x80\x4e\x0a\xb4\x93\x35"
7855                         "\x5d\x1d\x3f\x56\xf7\x2f\xbb\x90"
7856                         "\x11\x16\x8f\xa2\xec\x47\xbe\xac"
7857                         "\x56\x01\x26\x56\xb1\x8c\xb2\x10"
7858                         "\xf9\x1a\xca\xf5\xd1\xb7\x39\x20"
7859                         "\x63\xf1\x69\x20\x4f\x13\x12\x1f"
7860                         "\x5b\x65\xfc\x98\xf7\xc4\x7a\xbe"
7861                         "\xf7\x26\x4d\x2b\x84\x7b\x42\xad"
7862                         "\xd8\x7a\x0a\xb4\xd8\x74\xbf\xc1"
7863                         "\xf0\x6e\xb4\x29\xa3\xbb\xca\x46"
7864                         "\x67\x70\x6a\x2d\xce\x0e\xa2\x8a"
7865                         "\xa9\x87\xbf\x05\xc4\xc1\x04\xa3"
7866                         "\xab\xd4\x45\x43\x8c\xb6\x02\xb0"
7867                         "\x41\xc8\xfc\x44\x3d\x59\xaa\x2e"
7868                         "\x44\x21\x2a\x8d\x88\x9d\x57\xf4"
7869                         "\xa0\x02\x77\xb8\xa6\xa0\xe6\x75"
7870                         "\x5c\x82\x65\x3e\x03\x5c\x29\x8f"
7871                         "\x38\x55\xab\x33\x26\xef\x9f\x43"
7872                         "\x52\xfd\x68\xaf\x36\xb4\xbb\x9a"
7873                         "\x58\x09\x09\x1b\xc3\x65\x46\x46"
7874                         "\x1d\xa7\x94\x18\x23\x50\x2c\xca"
7875                         "\x2c\x55\x19\x97\x01\x9d\x93\x3b"
7876                         "\x63\x86\xf2\x03\x67\x45\xd2\x72"
7877                         "\x28\x52\x6c\xf4\xe3\x1c\xb5\x11"
7878                         "\x13\xf1\xeb\x21\xc7\xd9\x56\x82"
7879                         "\x2b\x82\x39\xbd\x69\x54\xed\x62"
7880                         "\xc3\xe2\xde\x73\xd4\x6a\x12\xae"
7881                         "\x13\x21\x7f\x4b\x5b\xfc\xbf\xe8"
7882                         "\x2b\xbe\x56\xba\x68\x8b\x9a\xb1"
7883                         "\x6e\xfa\xbf\x7e\x5a\x4b\xf1\xac"
7884                         "\x98\x65\x85\xd1\x93\x53\xd3\x7b"
7885                         "\x09\xdd\x4b\x10\x6d\x84\xb0\x13"
7886                         "\x65\xbd\xcf\x52\x09\xc4\x85\xe2"
7887                         "\x84\x74\x15\x65\xb7\xf7\x51\xaf"
7888                         "\x55\xad\xa4\xd1\x22\x54\x70\x94"
7889                         "\xa0\x1c\x90\x41\xfd\x99\xd7\x5a"
7890                         "\x31\xef\xaa\x25\xd0\x7f\x4f\xea"
7891                         "\x1d\x55\x42\xe5\x49\xb0\xd0\x46"
7892                         "\x62\x36\x43\xb2\x82\x15\x75\x50"
7893                         "\xa4\x72\xeb\x54\x27\x1f\x8a\xe4"
7894                         "\x7d\xe9\x66\xc5\xf1\x53\xa4\xd1"
7895                         "\x0c\xeb\xb8\xf8\xbc\xd4\xe2\xe7"
7896                         "\xe1\xf8\x4b\xcb\xa9\xa1\xaf\x15"
7897                         "\x83\xcb\x72\xd0\x33\x79\x00\x2d"
7898                         "\x9f\xd7\xf1\x2e\x1e\x10\xe4\x45"
7899                         "\xc0\x75\x3a\x39\xea\x68\xf7\x5d"
7900                         "\x1b\x73\x8f\xe9\x8e\x0f\x72\x47"
7901                         "\xae\x35\x0a\x31\x7a\x14\x4d\x4a"
7902                         "\x6f\x47\xf7\x7e\x91\x6e\x74\x8b"
7903                         "\x26\x47\xf9\xc3\xf9\xde\x70\xf5"
7904                         "\x61\xab\xa9\x27\x9f\x82\xe4\x9c"
7905                         "\x89\x91\x3f\x2e\x6a\xfd\xb5\x49"
7906                         "\xe9\xfd\x59\x14\x36\x49\x40\x6d"
7907                         "\x32\xd8\x85\x42\xf3\xa5\xdf\x0c"
7908                         "\xa8\x27\xd7\x54\xe2\x63\x2f\xf2"
7909                         "\x7e\x8b\x8b\xe7\xf1\x9a\x95\x35"
7910                         "\x43\xdc\x3a\xe4\xb6\xf4\xd0\xdf"
7911                         "\x9c\xcb\x94\xf3\x21\xa0\x77\x50"
7912                         "\xe2\xc6\xc4\xc6\x5f\x09\x64\x5b"
7913                         "\x92\x90\xd8\xe1\xd1\xed\x4b\x42"
7914                         "\xd7\x37\xaf\x65\x3d\x11\x39\xb6"
7915                         "\x24\x8a\x60\xae\xd6\x1e\xbf\x0e"
7916                         "\x0d\xd7\xdc\x96\x0e\x65\x75\x4e"
7917                         "\x29\x06\x9d\xa4\x51\x3a\x10\x63"
7918                         "\x8f\x17\x07\xd5\x8e\x3c\xf4\x28"
7919                         "\x00\x5a\x5b\x05\x19\xd8\xc0\x6c"
7920                         "\xe5\x15\xe4\x9c\x9d\x71\x9d\x5e"
7921                         "\x94\x29\x1a\xa7\x80\xfa\x0e\x33"
7922                         "\x03\xdd\xb7\x3e\x9a\xa9\x26\x18"
7923                         "\x37\xa9\x64\x08\x4d\x94\x5a\x88"
7924                         "\xca\x35\xce\x81\x02\xe3\x1f\x1b"
7925                         "\x89\x1a\x77\x85\xe3\x41\x6d\x32"
7926                         "\x42\x19\x23\x7d\xc8\x73\xee\x25"
7927                         "\x85\x0d\xf8\x31\x25\x79\x1b\x6f"
7928                         "\x79\x25\xd2\xd8\xd4\x23\xfd\xf7"
7929                         "\x82\x36\x6a\x0c\x46\x22\x15\xe9"
7930                         "\xff\x72\x41\x91\x91\x7d\x3a\xb7"
7931                         "\xdd\x65\x99\x70\xf6\x8d\x84\xf8"
7932                         "\x67\x15\x20\x11\xd6\xb2\x55\x7b"
7933                         "\xdb\x87\xee\xef\x55\x89\x2a\x59"
7934                         "\x2b\x07\x8f\x43\x8a\x59\x3c\x01"
7935                         "\x8b\x65\x54\xa1\x66\xd5\x38\xbd"
7936                         "\xc6\x30\xa9\xcc\x49\xb6\xa8\x1b"
7937                         "\xb8\xc0\x0e\xe3\x45\x28\xe2\xff"
7938                         "\x41\x9f\x7e\x7c\xd1\xae\x9e\x25"
7939                         "\x3f\x4c\x7c\x7c\xf4\xa8\x26\x4d"
7940                         "\x5c\xfd\x4b\x27\x18\xf9\x61\x76"
7941                         "\x48\xba\x0c\x6b\xa9\x4d\xfc\xf5"
7942                         "\x3b\x35\x7e\x2f\x4a\xa9\xc2\x9a"
7943                         "\xae\xab\x86\x09\x89\xc9\xc2\x40"
7944                         "\x39\x2c\x81\xb3\xb8\x17\x67\xc2"
7945                         "\x0d\x32\x4a\x3a\x67\x81\xd7\x1a"
7946                         "\x34\x52\xc5\xdb\x0a\xf5\x63\x39"
7947                         "\xea\x1f\xe1\x7c\xa1\x9e\xc1\x35"
7948                         "\xe3\xb1\x18\x45\x67\xf9\x22\x38"
7949                         "\x95\xd9\x34\x34\x86\xc6\x41\x94"
7950                         "\x15\xf9\x5b\x41\xa6\x87\x8b\xf8"
7951                         "\xd5\xe1\x1b\xe2\x5b\xf3\x86\x10"
7952                         "\xff\xe6\xae\x69\x76\xbc\x0d\xb4"
7953                         "\x09\x90\x0c\xa2\x65\x0c\xad\x74"
7954                         "\xf5\xd7\xff\xda\xc1\xce\x85\xbe"
7955                         "\x00\xa7\xff\x4d\x2f\x65\xd3\x8c"
7956                         "\x86\x2d\x05\xe8\xed\x3e\x6b\x8b"
7957                         "\x0f\x3d\x83\x8c\xf1\x1d\x5b\x96"
7958                         "\x2e\xb1\x9c\xc2\x98\xe1\x70\xb9"
7959                         "\xba\x5c\x8a\x43\xd6\x34\xa7\x2d"
7960                         "\xc9\x92\xae\xf2\xa5\x7b\x05\x49"
7961                         "\xa7\x33\x34\x86\xca\xe4\x96\x23"
7962                         "\x76\x5b\xf2\xc6\xf1\x51\x28\x42"
7963                         "\x7b\xcc\x76\x8f\xfa\xa2\xad\x31"
7964                         "\xd4\xd6\x7a\x6d\x25\x25\x54\xe4"
7965                         "\x3f\x50\x59\xe1\x5c\x05\xb7\x27"
7966                         "\x48\xbf\x07\xec\x1b\x13\xbe\x2b"
7967                         "\xa1\x57\x2b\xd5\xab\xd7\xd0\x4c"
7968                         "\x1e\xcb\x71\x9b\xc5\x90\x85\xd3"
7969                         "\xde\x59\xec\x71\xeb\x89\xbb\xd0"
7970                         "\x09\x50\xe1\x16\x3f\xfd\x1c\x34"
7971                         "\xc3\x1c\xa1\x10\x77\x53\x98\xef"
7972                         "\xf2\xfd\xa5\x01\x59\xc2\x9b\x26"
7973                         "\xc7\x42\xd9\x49\xda\x58\x2b\x6e"
7974                         "\x9f\x53\x19\x76\x7e\xd9\xc9\x0e"
7975                         "\x68\xc8\x7f\x51\x22\x42\xef\x49"
7976                         "\xa4\x55\xb6\x36\xac\x09\xc7\x31"
7977                         "\x88\x15\x4b\x2e\x8f\x3a\x08\xf7"
7978                         "\xd8\xf7\xa8\xc5\xa9\x33\xa6\x45"
7979                         "\xe4\xc4\x94\x76\xf3\x0d\x8f\x7e"
7980                         "\xc8\xf6\xbc\x23\x0a\xb6\x4c\xd3"
7981                         "\x6a\xcd\x36\xc2\x90\x5c\x5c\x3c"
7982                         "\x65\x7b\xc2\xd6\xcc\xe6\x0d\x87"
7983                         "\x73\x2e\x71\x79\x16\x06\x63\x28"
7984                         "\x09\x15\xd8\x89\x38\x38\x3d\xb5"
7985                         "\x42\x1c\x08\x24\xf7\x2a\xd2\x9d"
7986                         "\xc8\xca\xef\xf9\x27\xd8\x07\x86"
7987                         "\xf7\x43\x0b\x55\x15\x3f\x9f\x83"
7988                         "\xef\xdc\x49\x9d\x2a\xc1\x54\x62"
7989                         "\xbd\x9b\x66\x55\x9f\xb7\x12\xf3"
7990                         "\x1b\x4d\x9d\x2a\x5c\xed\x87\x75"
7991                         "\x87\x26\xec\x61\x2c\xb4\x0f\x89"
7992                         "\xb0\xfb\x2e\x68\x5d\x15\xc7\x8d"
7993                         "\x2e\xc0\xd9\xec\xaf\x4f\xd2\x25"
7994                         "\x29\xe8\xd2\x26\x2b\x67\xe9\xfc"
7995                         "\x2b\xa8\x67\x96\x12\x1f\x5b\x96"
7996                         "\xc6\x14\x53\xaf\x44\xea\xd6\xe2"
7997                         "\x94\x98\xe4\x12\x93\x4c\x92\xe0"
7998                         "\x18\xa5\x8d\x2d\xe4\x71\x3c\x47"
7999                         "\x4c\xf7\xe6\x47\x9e\xc0\x68\xdf"
8000                         "\xd4\xf5\x5a\x74\xb1\x2b\x29\x03"
8001                         "\x19\x07\xaf\x90\x62\x5c\x68\x98"
8002                         "\x48\x16\x11\x02\x9d\xee\xb4\x9b"
8003                         "\xe5\x42\x7f\x08\xfd\x16\x32\x0b"
8004                         "\xd0\xb3\xfa\x2b\xb7\x99\xf9\x29"
8005                         "\xcd\x20\x45\x9f\xb3\x1a\x5d\xa2"
8006                         "\xaf\x4d\xe0\xbd\x42\x0d\xbc\x74"
8007                         "\x99\x9c\x8e\x53\x1a\xb4\x3e\xbd"
8008                         "\xa2\x9a\x2d\xf7\xf8\x39\x0f\x67"
8009                         "\x63\xfc\x6b\xc0\xaf\xb3\x4b\x4f"
8010                         "\x55\xc4\xcf\xa7\xc8\x04\x11\x3e"
8011                         "\x14\x32\xbb\x1b\x38\x77\xd6\x7f"
8012                         "\x54\x4c\xdf\x75\xf3\x07\x2d\x33"
8013                         "\x9b\xa8\x20\xe1\x7b\x12\xb5\xf3"
8014                         "\xef\x2f\xce\x72\xe5\x24\x60\xc1"
8015                         "\x30\xe2\xab\xa1\x8e\x11\x09\xa8"
8016                         "\x21\x33\x44\xfe\x7f\x35\x32\x93"
8017                         "\x39\xa7\xad\x8b\x79\x06\xb2\xcb"
8018                         "\x4e\xa9\x5f\xc7\xba\x74\x29\xec"
8019                         "\x93\xa0\x4e\x54\x93\xc0\xbc\x55"
8020                         "\x64\xf0\x48\xe5\x57\x99\xee\x75"
8021                         "\xd6\x79\x0f\x66\xb7\xc6\x57\x76"
8022                         "\xf7\xb7\xf3\x9c\xc5\x60\xe8\x7f"
8023                         "\x83\x76\xd6\x0e\xaa\xe6\x90\x39"
8024                         "\x1d\xa6\x32\x6a\x34\xe3\x55\xf8"
8025                         "\x58\xa0\x58\x7d\x33\xe0\x22\x39"
8026                         "\x44\x64\x87\x86\x5a\x2f\xa7\x7e"
8027                         "\x0f\x38\xea\xb0\x30\xcc\x61\xa5"
8028                         "\x6a\x32\xae\x1e\xf7\xe9\xd0\xa9"
8029                         "\x0c\x32\x4b\xb5\x49\x28\xab\x85"
8030                         "\x2f\x8e\x01\x36\x38\x52\xd0\xba"
8031                         "\xd6\x02\x78\xf8\x0e\x3e\x9c\x8b"
8032                         "\x6b\x45\x99\x3f\x5c\xfe\x58\xf1"
8033                         "\x5c\x94\x04\xe1\xf5\x18\x6d\x51"
8034                         "\xb2\x5d\x18\x20\xb6\xc2\x9a\x42"
8035                         "\x1d\xb3\xab\x3c\xb6\x3a\x13\x03"
8036                         "\xb2\x46\x82\x4f\xfc\x64\xbc\x4f"
8037                         "\xca\xfa\x9c\xc0\xd5\xa7\xbd\x11"
8038                         "\xb7\xe4\x5a\xf6\x6f\x4d\x4d\x54"
8039                         "\xea\xa4\x98\x66\xd4\x22\x3b\xd3"
8040                         "\x8f\x34\x47\xd9\x7c\xf4\x72\x3b"
8041                         "\x4d\x02\x77\xf6\xd6\xdd\x08\x0a"
8042                         "\x81\xe1\x86\x89\x3e\x56\x10\x3c"
8043                         "\xba\xd7\x81\x8c\x08\xbc\x8b\xe2"
8044                         "\x53\xec\xa7\x89\xee\xc8\x56\xb5"
8045                         "\x36\x2c\xb2\x03\xba\x99\xdd\x7c"
8046                         "\x48\xa0\xb0\xbc\x91\x33\xe9\xa8"
8047                         "\xcb\xcd\xcf\x59\x5f\x1f\x15\xe2"
8048                         "\x56\xf5\x4e\x01\x35\x27\x45\x77"
8049                         "\x47\xc8\xbc\xcb\x7e\x39\xc1\x97"
8050                         "\x28\xd3\x84\xfc\x2c\x3e\xc8\xad"
8051                         "\x9c\xf8\x8a\x61\x9c\x28\xaa\xc5"
8052                         "\x99\x20\x43\x85\x9d\xa5\xe2\x8b"
8053                         "\xb8\xae\xeb\xd0\x32\x0d\x52\x78"
8054                         "\x09\x56\x3f\xc7\xd8\x7e\x26\xfc"
8055                         "\x37\xfb\x6f\x04\xfc\xfa\x92\x10"
8056                         "\xac\xf8\x3e\x21\xdc\x8c\x21\x16"
8057                         "\x7d\x67\x6e\xf6\xcd\xda\xb6\x98"
8058                         "\x23\xab\x23\x3c\xb2\x10\xa0\x53"
8059                         "\x5a\x56\x9f\xc5\xd0\xff\xbb\xe4"
8060                         "\x98\x3c\x69\x1e\xdb\x38\x8f\x7e"
8061                         "\x0f\xd2\x98\x88\x81\x8b\x45\x67"
8062                         "\xea\x33\xf1\xeb\xe9\x97\x55\x2e"
8063                         "\xd9\xaa\xeb\x5a\xec\xda\xe1\x68"
8064                         "\xa8\x9d\x3c\x84\x7c\x05\x3d\x62"
8065                         "\x87\x8f\x03\x21\x28\x95\x0c\x89"
8066                         "\x25\x22\x4a\xb0\x93\xa9\x50\xa2"
8067                         "\x2f\x57\x6e\x18\x42\x19\x54\x0c"
8068                         "\x55\x67\xc6\x11\x49\xf4\x5c\xd2"
8069                         "\xe9\x3d\xdd\x8b\x48\x71\x21\x00"
8070                         "\xc3\x9a\x6c\x85\x74\x28\x83\x4a"
8071                         "\x1b\x31\x05\xe1\x06\x92\xe7\xda"
8072                         "\x85\x73\x78\x45\x20\x7f\xae\x13"
8073                         "\x7c\x33\x06\x22\xf4\x83\xf9\x35"
8074                         "\x3f\x6c\x71\xa8\x4e\x48\xbe\x9b"
8075                         "\xce\x8a\xba\xda\xbe\x28\x08\xf7"
8076                         "\xe2\x14\x8c\x71\xea\x72\xf9\x33"
8077                         "\xf2\x88\x3f\xd7\xbb\x69\x6c\x29"
8078                         "\x19\xdc\x84\xce\x1f\x12\x4f\xc8"
8079                         "\xaf\xa5\x04\xba\x5a\xab\xb0\xd9"
8080                         "\x14\x1f\x6c\x68\x98\x39\x89\x7a"
8081                         "\xd9\xd8\x2f\xdf\xa8\x47\x4a\x25"
8082                         "\xe2\xfb\x33\xf4\x59\x78\xe1\x68"
8083                         "\x85\xcf\xfe\x59\x20\xd4\x05\x1d"
8084                         "\x80\x99\xae\xbc\xca\xae\x0f\x2f"
8085                         "\x65\x43\x34\x8e\x7e\xac\xd3\x93"
8086                         "\x2f\xac\x6d\x14\x3d\x02\x07\x70"
8087                         "\x9d\xa4\xf3\x1b\x5c\x36\xfc\x01"
8088                         "\x73\x34\x85\x0c\x6c\xd6\xf1\xbd"
8089                         "\x3f\xdf\xee\xf5\xd9\xba\x56\xef"
8090                         "\xf4\x9b\x6b\xee\x9f\x5a\x78\x6d"
8091                         "\x32\x19\xf4\xf7\xf8\x4c\x69\x0b"
8092                         "\x4b\xbc\xbb\xb7\xf2\x85\xaf\x70"
8093                         "\x75\x24\x6c\x54\xa7\x0e\x4d\x1d"
8094                         "\x01\xbf\x08\xac\xcf\x7f\x2c\xe3"
8095                         "\x14\x89\x5e\x70\x5a\x99\x92\xcd"
8096                         "\x01\x84\xc8\xd2\xab\xe5\x4f\x58"
8097                         "\xe7\x0f\x2f\x0e\xff\x68\xea\xfd"
8098                         "\x15\xb3\x17\xe6\xb0\xe7\x85\xd8"
8099                         "\x23\x2e\x05\xc7\xc9\xc4\x46\x1f"
8100                         "\xe1\x9e\x49\x20\x23\x24\x4d\x7e"
8101                         "\x29\x65\xff\xf4\xb6\xfd\x1a\x85"
8102                         "\xc4\x16\xec\xfc\xea\x7b\xd6\x2c"
8103                         "\x43\xf8\xb7\xbf\x79\xc0\x85\xcd"
8104                         "\xef\xe1\x98\xd3\xa5\xf7\x90\x8c"
8105                         "\xe9\x7f\x80\x6b\xd2\xac\x4c\x30"
8106                         "\xa7\xc6\x61\x6c\xd2\xf9\x2c\xff"
8107                         "\x30\xbc\x22\x81\x7d\x93\x12\xe4"
8108                         "\x0a\xcd\xaf\xdd\xe8\xab\x0a\x1e"
8109                         "\x13\xa4\x27\xc3\x5f\xf7\x4b\xbb"
8110                         "\x37\x09\x4b\x91\x6f\x92\x4f\xaf"
8111                         "\x52\xee\xdf\xef\x09\x6f\xf7\x5c"
8112                         "\x6e\x12\x17\x72\x63\x57\xc7\xba"
8113                         "\x3b\x6b\x38\x32\x73\x1b\x9c\x80"
8114                         "\xc1\x7a\xc6\xcf\xcd\x35\xc0\x6b"
8115                         "\x31\x1a\x6b\xe9\xd8\x2c\x29\x3f"
8116                         "\x96\xfb\xb6\xcd\x13\x91\x3b\xc2"
8117                         "\xd2\xa3\x31\x8d\xa4\xcd\x57\xcd"
8118                         "\x13\x3d\x64\xfd\x06\xce\xe6\xdc"
8119                         "\x0c\x24\x43\x31\x40\x57\xf1\x72"
8120                         "\x17\xe3\x3a\x63\x6d\x35\xcf\x5d"
8121                         "\x97\x40\x59\xdd\xf7\x3c\x02\xf7"
8122                         "\x1c\x7e\x05\xbb\xa9\x0d\x01\xb1"
8123                         "\x8e\xc0\x30\xa9\x53\x24\xc9\x89"
8124                         "\x84\x6d\xaa\xd0\xcd\x91\xc2\x4d"
8125                         "\x91\xb0\x89\xe2\xbf\x83\x44\xaa"
8126                         "\x28\x72\x23\xa0\xc2\xad\xad\x1c"
8127                         "\xfc\x3f\x09\x7a\x0b\xdc\xc5\x1b"
8128                         "\x87\x13\xc6\x5b\x59\x8d\xf2\xc8"
8129                         "\xaf\xdf\x11\x95",
8130                 .rlen   = 4100,
8131                 .np     = 2,
8132                 .tap    = { 4064, 36 },
8133         },
8134 };
8135
8136 /*
8137  * CTS (Cipher Text Stealing) mode tests
8138  */
8139 #define CTS_MODE_ENC_TEST_VECTORS 6
8140 #define CTS_MODE_DEC_TEST_VECTORS 6
8141 static struct cipher_testvec cts_mode_enc_tv_template[] = {
8142         { /* from rfc3962 */
8143                 .klen   = 16,
8144                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8145                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8146                 .ilen   = 17,
8147                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8148                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8149                           "\x20",
8150                 .rlen   = 17,
8151                 .result = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4"
8152                           "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f"
8153                           "\x97",
8154         }, {
8155                 .klen   = 16,
8156                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8157                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8158                 .ilen   = 31,
8159                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8160                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8161                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8162                           "\x20\x47\x61\x75\x27\x73\x20",
8163                 .rlen   = 31,
8164                 .result = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1"
8165                           "\xd4\x45\xd4\xc8\xef\xf7\xed\x22"
8166                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8167                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5",
8168         }, {
8169                 .klen   = 16,
8170                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8171                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8172                 .ilen   = 32,
8173                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8174                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8175                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8176                           "\x20\x47\x61\x75\x27\x73\x20\x43",
8177                 .rlen   = 32,
8178                 .result = "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8179                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8180                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8181                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84",
8182         }, {
8183                 .klen   = 16,
8184                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8185                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8186                 .ilen   = 47,
8187                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8188                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8189                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8190                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8191                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8192                           "\x70\x6c\x65\x61\x73\x65\x2c",
8193                 .rlen   = 47,
8194                 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8195                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8196                           "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c"
8197                           "\x1b\x55\x49\xd2\xf8\x38\x02\x9e"
8198                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8199                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5",
8200         }, {
8201                 .klen   = 16,
8202                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8203                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8204                 .ilen   = 48,
8205                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8206                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8207                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8208                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8209                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8210                           "\x70\x6c\x65\x61\x73\x65\x2c\x20",
8211                 .rlen   = 48,
8212                 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8213                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8214                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8215                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8"
8216                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8217                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8",
8218         }, {
8219                 .klen   = 16,
8220                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8221                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8222                 .ilen   = 64,
8223                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8224                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8225                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8226                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8227                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8228                           "\x70\x6c\x65\x61\x73\x65\x2c\x20"
8229                           "\x61\x6e\x64\x20\x77\x6f\x6e\x74"
8230                           "\x6f\x6e\x20\x73\x6f\x75\x70\x2e",
8231                 .rlen   = 64,
8232                 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8233                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8234                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8235                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8236                           "\x48\x07\xef\xe8\x36\xee\x89\xa5"
8237                           "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40"
8238                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8239                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8",
8240         }
8241 };
8242
8243 static struct cipher_testvec cts_mode_dec_tv_template[] = {
8244         { /* from rfc3962 */
8245                 .klen   = 16,
8246                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8247                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8248                 .rlen   = 17,
8249                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8250                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8251                           "\x20",
8252                 .ilen   = 17,
8253                 .input  = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4"
8254                           "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f"
8255                           "\x97",
8256         }, {
8257                 .klen   = 16,
8258                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8259                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8260                 .rlen   = 31,
8261                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8262                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8263                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8264                           "\x20\x47\x61\x75\x27\x73\x20",
8265                 .ilen   = 31,
8266                 .input  = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1"
8267                           "\xd4\x45\xd4\xc8\xef\xf7\xed\x22"
8268                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8269                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5",
8270         }, {
8271                 .klen   = 16,
8272                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8273                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8274                 .rlen   = 32,
8275                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8276                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8277                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8278                           "\x20\x47\x61\x75\x27\x73\x20\x43",
8279                 .ilen   = 32,
8280                 .input  = "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8281                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8282                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8283                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84",
8284         }, {
8285                 .klen   = 16,
8286                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8287                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8288                 .rlen   = 47,
8289                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8290                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8291                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8292                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8293                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8294                           "\x70\x6c\x65\x61\x73\x65\x2c",
8295                 .ilen   = 47,
8296                 .input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8297                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8298                           "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c"
8299                           "\x1b\x55\x49\xd2\xf8\x38\x02\x9e"
8300                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8301                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5",
8302         }, {
8303                 .klen   = 16,
8304                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8305                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8306                 .rlen   = 48,
8307                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8308                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8309                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8310                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8311                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8312                           "\x70\x6c\x65\x61\x73\x65\x2c\x20",
8313                 .ilen   = 48,
8314                 .input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8315                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8316                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8317                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8"
8318                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8319                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8",
8320         }, {
8321                 .klen   = 16,
8322                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8323                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8324                 .rlen   = 64,
8325                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8326                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8327                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8328                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8329                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8330                           "\x70\x6c\x65\x61\x73\x65\x2c\x20"
8331                           "\x61\x6e\x64\x20\x77\x6f\x6e\x74"
8332                           "\x6f\x6e\x20\x73\x6f\x75\x70\x2e",
8333                 .ilen   = 64,
8334                 .input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8335                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8336                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8337                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8338                           "\x48\x07\xef\xe8\x36\xee\x89\xa5"
8339                           "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40"
8340                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8341                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8",
8342         }
8343 };
8344
8345 /*
8346  * Compression stuff.
8347  */
8348 #define COMP_BUF_SIZE           512
8349
8350 struct comp_testvec {
8351         int inlen, outlen;
8352         char input[COMP_BUF_SIZE];
8353         char output[COMP_BUF_SIZE];
8354 };
8355
8356 struct pcomp_testvec {
8357         void *params;
8358         unsigned int paramsize;
8359         int inlen, outlen;
8360         char input[COMP_BUF_SIZE];
8361         char output[COMP_BUF_SIZE];
8362 };
8363
8364 /*
8365  * Deflate test vectors (null-terminated strings).
8366  * Params: winbits=-11, Z_DEFAULT_COMPRESSION, MAX_MEM_LEVEL.
8367  */
8368
8369 #define DEFLATE_COMP_TEST_VECTORS 2
8370 #define DEFLATE_DECOMP_TEST_VECTORS 2
8371
8372 static struct comp_testvec deflate_comp_tv_template[] = {
8373         {
8374                 .inlen  = 70,
8375                 .outlen = 38,
8376                 .input  = "Join us now and share the software "
8377                         "Join us now and share the software ",
8378                 .output = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8379                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8380                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8381                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8382                           "\x71\xbc\x08\x2b\x01\x00",
8383         }, {
8384                 .inlen  = 191,
8385                 .outlen = 122,
8386                 .input  = "This document describes a compression method based on the DEFLATE"
8387                         "compression algorithm.  This document defines the application of "
8388                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8389                 .output = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8390                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8391                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8392                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8393                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
8394                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8395                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8396                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8397                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8398                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8399                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8400                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8401                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8402                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8403                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8404                           "\xfa\x02",
8405         },
8406 };
8407
8408 static struct comp_testvec deflate_decomp_tv_template[] = {
8409         {
8410                 .inlen  = 122,
8411                 .outlen = 191,
8412                 .input  = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8413                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8414                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8415                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8416                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
8417                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8418                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8419                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8420                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8421                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8422                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8423                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8424                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8425                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8426                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8427                           "\xfa\x02",
8428                 .output = "This document describes a compression method based on the DEFLATE"
8429                         "compression algorithm.  This document defines the application of "
8430                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8431         }, {
8432                 .inlen  = 38,
8433                 .outlen = 70,
8434                 .input  = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8435                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8436                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8437                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8438                           "\x71\xbc\x08\x2b\x01\x00",
8439                 .output = "Join us now and share the software "
8440                         "Join us now and share the software ",
8441         },
8442 };
8443
8444 #define ZLIB_COMP_TEST_VECTORS 2
8445 #define ZLIB_DECOMP_TEST_VECTORS 2
8446
8447 static const struct {
8448         struct nlattr nla;
8449         int val;
8450 } deflate_comp_params[] = {
8451         {
8452                 .nla = {
8453                         .nla_len        = NLA_HDRLEN + sizeof(int),
8454                         .nla_type       = ZLIB_COMP_LEVEL,
8455                 },
8456                 .val                    = Z_DEFAULT_COMPRESSION,
8457         }, {
8458                 .nla = {
8459                         .nla_len        = NLA_HDRLEN + sizeof(int),
8460                         .nla_type       = ZLIB_COMP_METHOD,
8461                 },
8462                 .val                    = Z_DEFLATED,
8463         }, {
8464                 .nla = {
8465                         .nla_len        = NLA_HDRLEN + sizeof(int),
8466                         .nla_type       = ZLIB_COMP_WINDOWBITS,
8467                 },
8468                 .val                    = -11,
8469         }, {
8470                 .nla = {
8471                         .nla_len        = NLA_HDRLEN + sizeof(int),
8472                         .nla_type       = ZLIB_COMP_MEMLEVEL,
8473                 },
8474                 .val                    = MAX_MEM_LEVEL,
8475         }, {
8476                 .nla = {
8477                         .nla_len        = NLA_HDRLEN + sizeof(int),
8478                         .nla_type       = ZLIB_COMP_STRATEGY,
8479                 },
8480                 .val                    = Z_DEFAULT_STRATEGY,
8481         }
8482 };
8483
8484 static const struct {
8485         struct nlattr nla;
8486         int val;
8487 } deflate_decomp_params[] = {
8488         {
8489                 .nla = {
8490                         .nla_len        = NLA_HDRLEN + sizeof(int),
8491                         .nla_type       = ZLIB_DECOMP_WINDOWBITS,
8492                 },
8493                 .val                    = -11,
8494         }
8495 };
8496
8497 static struct pcomp_testvec zlib_comp_tv_template[] = {
8498         {
8499                 .params = &deflate_comp_params,
8500                 .paramsize = sizeof(deflate_comp_params),
8501                 .inlen  = 70,
8502                 .outlen = 38,
8503                 .input  = "Join us now and share the software "
8504                         "Join us now and share the software ",
8505                 .output = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8506                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8507                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8508                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8509                           "\x71\xbc\x08\x2b\x01\x00",
8510         }, {
8511                 .params = &deflate_comp_params,
8512                 .paramsize = sizeof(deflate_comp_params),
8513                 .inlen  = 191,
8514                 .outlen = 122,
8515                 .input  = "This document describes a compression method based on the DEFLATE"
8516                         "compression algorithm.  This document defines the application of "
8517                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8518                 .output = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8519                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8520                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8521                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8522                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
8523                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8524                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8525                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8526                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8527                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8528                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8529                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8530                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8531                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8532                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8533                           "\xfa\x02",
8534         },
8535 };
8536
8537 static struct pcomp_testvec zlib_decomp_tv_template[] = {
8538         {
8539                 .params = &deflate_decomp_params,
8540                 .paramsize = sizeof(deflate_decomp_params),
8541                 .inlen  = 122,
8542                 .outlen = 191,
8543                 .input  = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8544                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8545                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8546                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8547                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
8548                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8549                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8550                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8551                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8552                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8553                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8554                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8555                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8556                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8557                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8558                           "\xfa\x02",
8559                 .output = "This document describes a compression method based on the DEFLATE"
8560                         "compression algorithm.  This document defines the application of "
8561                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8562         }, {
8563                 .params = &deflate_decomp_params,
8564                 .paramsize = sizeof(deflate_decomp_params),
8565                 .inlen  = 38,
8566                 .outlen = 70,
8567                 .input  = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8568                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8569                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8570                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8571                           "\x71\xbc\x08\x2b\x01\x00",
8572                 .output = "Join us now and share the software "
8573                         "Join us now and share the software ",
8574         },
8575 };
8576
8577 /*
8578  * LZO test vectors (null-terminated strings).
8579  */
8580 #define LZO_COMP_TEST_VECTORS 2
8581 #define LZO_DECOMP_TEST_VECTORS 2
8582
8583 static struct comp_testvec lzo_comp_tv_template[] = {
8584         {
8585                 .inlen  = 70,
8586                 .outlen = 46,
8587                 .input  = "Join us now and share the software "
8588                         "Join us now and share the software ",
8589                 .output = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75"
8590                         "\x73\x20\x6e\x6f\x77\x20\x61\x6e"
8591                         "\x64\x20\x73\x68\x61\x72\x65\x20"
8592                         "\x74\x68\x65\x20\x73\x6f\x66\x74"
8593                         "\x77\x70\x01\x01\x4a\x6f\x69\x6e"
8594                         "\x3d\x88\x00\x11\x00\x00",
8595         }, {
8596                 .inlen  = 159,
8597                 .outlen = 133,
8598                 .input  = "This document describes a compression method based on the LZO "
8599                         "compression algorithm.  This document defines the application of "
8600                         "the LZO algorithm used in UBIFS.",
8601                 .output = "\x00\x2b\x54\x68\x69\x73\x20\x64"
8602                           "\x6f\x63\x75\x6d\x65\x6e\x74\x20"
8603                           "\x64\x65\x73\x63\x72\x69\x62\x65"
8604                           "\x73\x20\x61\x20\x63\x6f\x6d\x70"
8605                           "\x72\x65\x73\x73\x69\x6f\x6e\x20"
8606                           "\x6d\x65\x74\x68\x6f\x64\x20\x62"
8607                           "\x61\x73\x65\x64\x20\x6f\x6e\x20"
8608                           "\x74\x68\x65\x20\x4c\x5a\x4f\x2b"
8609                           "\x8c\x00\x0d\x61\x6c\x67\x6f\x72"
8610                           "\x69\x74\x68\x6d\x2e\x20\x20\x54"
8611                           "\x68\x69\x73\x2a\x54\x01\x02\x66"
8612                           "\x69\x6e\x65\x73\x94\x06\x05\x61"
8613                           "\x70\x70\x6c\x69\x63\x61\x74\x76"
8614                           "\x0a\x6f\x66\x88\x02\x60\x09\x27"
8615                           "\xf0\x00\x0c\x20\x75\x73\x65\x64"
8616                           "\x20\x69\x6e\x20\x55\x42\x49\x46"
8617                           "\x53\x2e\x11\x00\x00",
8618         },
8619 };
8620
8621 static struct comp_testvec lzo_decomp_tv_template[] = {
8622         {
8623                 .inlen  = 133,
8624                 .outlen = 159,
8625                 .input  = "\x00\x2b\x54\x68\x69\x73\x20\x64"
8626                           "\x6f\x63\x75\x6d\x65\x6e\x74\x20"
8627                           "\x64\x65\x73\x63\x72\x69\x62\x65"
8628                           "\x73\x20\x61\x20\x63\x6f\x6d\x70"
8629                           "\x72\x65\x73\x73\x69\x6f\x6e\x20"
8630                           "\x6d\x65\x74\x68\x6f\x64\x20\x62"
8631                           "\x61\x73\x65\x64\x20\x6f\x6e\x20"
8632                           "\x74\x68\x65\x20\x4c\x5a\x4f\x2b"
8633                           "\x8c\x00\x0d\x61\x6c\x67\x6f\x72"
8634                           "\x69\x74\x68\x6d\x2e\x20\x20\x54"
8635                           "\x68\x69\x73\x2a\x54\x01\x02\x66"
8636                           "\x69\x6e\x65\x73\x94\x06\x05\x61"
8637                           "\x70\x70\x6c\x69\x63\x61\x74\x76"
8638                           "\x0a\x6f\x66\x88\x02\x60\x09\x27"
8639                           "\xf0\x00\x0c\x20\x75\x73\x65\x64"
8640                           "\x20\x69\x6e\x20\x55\x42\x49\x46"
8641                           "\x53\x2e\x11\x00\x00",
8642                 .output = "This document describes a compression method based on the LZO "
8643                         "compression algorithm.  This document defines the application of "
8644                         "the LZO algorithm used in UBIFS.",
8645         }, {
8646                 .inlen  = 46,
8647                 .outlen = 70,
8648                 .input  = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75"
8649                           "\x73\x20\x6e\x6f\x77\x20\x61\x6e"
8650                           "\x64\x20\x73\x68\x61\x72\x65\x20"
8651                           "\x74\x68\x65\x20\x73\x6f\x66\x74"
8652                           "\x77\x70\x01\x01\x4a\x6f\x69\x6e"
8653                           "\x3d\x88\x00\x11\x00\x00",
8654                 .output = "Join us now and share the software "
8655                         "Join us now and share the software ",
8656         },
8657 };
8658
8659 /*
8660  * Michael MIC test vectors from IEEE 802.11i
8661  */
8662 #define MICHAEL_MIC_TEST_VECTORS 6
8663
8664 static struct hash_testvec michael_mic_tv_template[] = {
8665         {
8666                 .key = "\x00\x00\x00\x00\x00\x00\x00\x00",
8667                 .ksize = 8,
8668                 .plaintext = zeroed_string,
8669                 .psize = 0,
8670                 .digest = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8",
8671         },
8672         {
8673                 .key = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8",
8674                 .ksize = 8,
8675                 .plaintext = "M",
8676                 .psize = 1,
8677                 .digest = "\x43\x47\x21\xca\x40\x63\x9b\x3f",
8678         },
8679         {
8680                 .key = "\x43\x47\x21\xca\x40\x63\x9b\x3f",
8681                 .ksize = 8,
8682                 .plaintext = "Mi",
8683                 .psize = 2,
8684                 .digest = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29",
8685         },
8686         {
8687                 .key = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29",
8688                 .ksize = 8,
8689                 .plaintext = "Mic",
8690                 .psize = 3,
8691                 .digest = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb",
8692         },
8693         {
8694                 .key = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb",
8695                 .ksize = 8,
8696                 .plaintext = "Mich",
8697                 .psize = 4,
8698                 .digest = "\xd5\x5e\x10\x05\x10\x12\x89\x86",
8699         },
8700         {
8701                 .key = "\xd5\x5e\x10\x05\x10\x12\x89\x86",
8702                 .ksize = 8,
8703                 .plaintext = "Michael",
8704                 .psize = 7,
8705                 .digest = "\x0a\x94\x2b\x12\x4e\xca\xa5\x46",
8706         }
8707 };
8708
8709 /*
8710  * CRC32C test vectors
8711  */
8712 #define CRC32C_TEST_VECTORS 14
8713
8714 static struct hash_testvec crc32c_tv_template[] = {
8715         {
8716                 .psize = 0,
8717                 .digest = "\x00\x00\x00\x00",
8718         },
8719         {
8720                 .key = "\x87\xa9\xcb\xed",
8721                 .ksize = 4,
8722                 .psize = 0,
8723                 .digest = "\x78\x56\x34\x12",
8724         },
8725         {
8726                 .key = "\xff\xff\xff\xff",
8727                 .ksize = 4,
8728                 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08"
8729                              "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
8730                              "\x11\x12\x13\x14\x15\x16\x17\x18"
8731                              "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
8732                              "\x21\x22\x23\x24\x25\x26\x27\x28",
8733                 .psize = 40,
8734                 .digest = "\x7f\x15\x2c\x0e",
8735         },
8736         {
8737                 .key = "\xff\xff\xff\xff",
8738                 .ksize = 4,
8739                 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
8740                              "\x31\x32\x33\x34\x35\x36\x37\x38"
8741                              "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
8742                              "\x41\x42\x43\x44\x45\x46\x47\x48"
8743                              "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50",
8744                 .psize = 40,
8745                 .digest = "\xf6\xeb\x80\xe9",
8746         },
8747         {
8748                 .key = "\xff\xff\xff\xff",
8749                 .ksize = 4,
8750                 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58"
8751                              "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
8752                              "\x61\x62\x63\x64\x65\x66\x67\x68"
8753                              "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
8754                              "\x71\x72\x73\x74\x75\x76\x77\x78",
8755                 .psize = 40,
8756                 .digest = "\xed\xbd\x74\xde",
8757         },
8758         {
8759                 .key = "\xff\xff\xff\xff",
8760                 .ksize = 4,
8761                 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
8762                              "\x81\x82\x83\x84\x85\x86\x87\x88"
8763                              "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
8764                              "\x91\x92\x93\x94\x95\x96\x97\x98"
8765                              "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0",
8766                 .psize = 40,
8767                 .digest = "\x62\xc8\x79\xd5",
8768         },
8769         {
8770                 .key = "\xff\xff\xff\xff",
8771                 .ksize = 4,
8772                 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
8773                              "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
8774                              "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
8775                              "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
8776                              "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8",
8777                 .psize = 40,
8778                 .digest = "\xd0\x9a\x97\xba",
8779         },
8780         {
8781                 .key = "\xff\xff\xff\xff",
8782                 .ksize = 4,
8783                 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
8784                              "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
8785                              "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
8786                              "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
8787                              "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
8788                 .psize = 40,
8789                 .digest = "\x13\xd9\x29\x2b",
8790         },
8791         {
8792                 .key = "\x80\xea\xd3\xf1",
8793                 .ksize = 4,
8794                 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
8795                              "\x31\x32\x33\x34\x35\x36\x37\x38"
8796                              "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
8797                              "\x41\x42\x43\x44\x45\x46\x47\x48"
8798                              "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50",
8799                 .psize = 40,
8800                 .digest = "\x0c\xb5\xe2\xa2",
8801         },
8802         {
8803                 .key = "\xf3\x4a\x1d\x5d",
8804                 .ksize = 4,
8805                 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58"
8806                              "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
8807                              "\x61\x62\x63\x64\x65\x66\x67\x68"
8808                              "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
8809                              "\x71\x72\x73\x74\x75\x76\x77\x78",
8810                 .psize = 40,
8811                 .digest = "\xd1\x7f\xfb\xa6",
8812         },
8813         {
8814                 .key = "\x2e\x80\x04\x59",
8815                 .ksize = 4,
8816                 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
8817                              "\x81\x82\x83\x84\x85\x86\x87\x88"
8818                              "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
8819                              "\x91\x92\x93\x94\x95\x96\x97\x98"
8820                              "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0",
8821                 .psize = 40,
8822                 .digest = "\x59\x33\xe6\x7a",
8823         },
8824         {
8825                 .key = "\xa6\xcc\x19\x85",
8826                 .ksize = 4,
8827                 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
8828                              "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
8829                              "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
8830                              "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
8831                              "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8",
8832                 .psize = 40,
8833                 .digest = "\xbe\x03\x01\xd2",
8834         },
8835         {
8836                 .key = "\x41\xfc\xfe\x2d",
8837                 .ksize = 4,
8838                 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
8839                              "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
8840                              "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
8841                              "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
8842                              "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
8843                 .psize = 40,
8844                 .digest = "\x75\xd3\xc5\x24",
8845         },
8846         {
8847                 .key = "\xff\xff\xff\xff",
8848                 .ksize = 4,
8849                 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08"
8850                              "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
8851                              "\x11\x12\x13\x14\x15\x16\x17\x18"
8852                              "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
8853                              "\x21\x22\x23\x24\x25\x26\x27\x28"
8854                              "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
8855                              "\x31\x32\x33\x34\x35\x36\x37\x38"
8856                              "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
8857                              "\x41\x42\x43\x44\x45\x46\x47\x48"
8858                              "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50"
8859                              "\x51\x52\x53\x54\x55\x56\x57\x58"
8860                              "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
8861                              "\x61\x62\x63\x64\x65\x66\x67\x68"
8862                              "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
8863                              "\x71\x72\x73\x74\x75\x76\x77\x78"
8864                              "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
8865                              "\x81\x82\x83\x84\x85\x86\x87\x88"
8866                              "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
8867                              "\x91\x92\x93\x94\x95\x96\x97\x98"
8868                              "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0"
8869                              "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
8870                              "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
8871                              "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
8872                              "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
8873                              "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8"
8874                              "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
8875                              "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
8876                              "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
8877                              "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
8878                              "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
8879                 .psize = 240,
8880                 .digest = "\x75\xd3\xc5\x24",
8881                 .np = 2,
8882                 .tap = { 31, 209 }
8883         },
8884 };
8885
8886 #endif  /* _CRYPTO_TESTMGR_H */