crypto: testmgr - Add self-tests for rfc4309(ccm(aes))
[platform/adaptation/renesas_rcar/renesas_kernel.git] / crypto / testmgr.h
1 /*
2  * Algorithm testing framework and tests.
3  *
4  * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
5  * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
6  * Copyright (c) 2007 Nokia Siemens Networks
7  * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU General Public License as published by the Free
11  * Software Foundation; either version 2 of the License, or (at your option)
12  * any later version.
13  *
14  */
15 #ifndef _CRYPTO_TESTMGR_H
16 #define _CRYPTO_TESTMGR_H
17
18 #include <linux/netlink.h>
19 #include <linux/zlib.h>
20
21 #include <crypto/compress.h>
22
23 #define MAX_DIGEST_SIZE         64
24 #define MAX_TAP                 8
25
26 #define MAX_KEYLEN              56
27 #define MAX_IVLEN               32
28
29 struct hash_testvec {
30         /* only used with keyed hash algorithms */
31         char *key;
32         char *plaintext;
33         char *digest;
34         unsigned char tap[MAX_TAP];
35         unsigned char psize;
36         unsigned char np;
37         unsigned char ksize;
38 };
39
40 struct cipher_testvec {
41         char *key;
42         char *iv;
43         char *input;
44         char *result;
45         unsigned short tap[MAX_TAP];
46         int np;
47         unsigned char fail;
48         unsigned char wk; /* weak key flag */
49         unsigned char klen;
50         unsigned short ilen;
51         unsigned short rlen;
52 };
53
54 struct aead_testvec {
55         char *key;
56         char *iv;
57         char *input;
58         char *assoc;
59         char *result;
60         unsigned char tap[MAX_TAP];
61         unsigned char atap[MAX_TAP];
62         int np;
63         int anp;
64         unsigned char fail;
65         unsigned char novrfy;   /* ccm dec verification failure expected */
66         unsigned char wk; /* weak key flag */
67         unsigned char klen;
68         unsigned short ilen;
69         unsigned short alen;
70         unsigned short rlen;
71 };
72
73 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 #define AES_CCM_4309_ENC_TEST_VECTORS 7
2852 #define AES_CCM_4309_DEC_TEST_VECTORS 10
2853
2854 static struct cipher_testvec aes_enc_tv_template[] = {
2855         { /* From FIPS-197 */
2856                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2857                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2858                 .klen   = 16,
2859                 .input  = "\x00\x11\x22\x33\x44\x55\x66\x77"
2860                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2861                 .ilen   = 16,
2862                 .result = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30"
2863                           "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a",
2864                 .rlen   = 16,
2865         }, {
2866                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2867                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2868                           "\x10\x11\x12\x13\x14\x15\x16\x17",
2869                 .klen   = 24,
2870                 .input  = "\x00\x11\x22\x33\x44\x55\x66\x77"
2871                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2872                 .ilen   = 16,
2873                 .result = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0"
2874                           "\x6e\xaf\x70\xa0\xec\x0d\x71\x91",
2875                 .rlen   = 16,
2876         }, {
2877                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2878                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2879                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2880                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2881                 .klen   = 32,
2882                 .input  = "\x00\x11\x22\x33\x44\x55\x66\x77"
2883                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2884                 .ilen   = 16,
2885                 .result = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf"
2886                           "\xea\xfc\x49\x90\x4b\x49\x60\x89",
2887                 .rlen   = 16,
2888         },
2889 };
2890
2891 static struct cipher_testvec aes_dec_tv_template[] = {
2892         { /* From FIPS-197 */
2893                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2894                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2895                 .klen   = 16,
2896                 .input  = "\x69\xc4\xe0\xd8\x6a\x7b\x04\x30"
2897                           "\xd8\xcd\xb7\x80\x70\xb4\xc5\x5a",
2898                 .ilen   = 16,
2899                 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
2900                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2901                 .rlen   = 16,
2902         }, {
2903                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2904                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2905                           "\x10\x11\x12\x13\x14\x15\x16\x17",
2906                 .klen   = 24,
2907                 .input  = "\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0"
2908                           "\x6e\xaf\x70\xa0\xec\x0d\x71\x91",
2909                 .ilen   = 16,
2910                 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
2911                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2912                 .rlen   = 16,
2913         }, {
2914                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
2915                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2916                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2917                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2918                 .klen   = 32,
2919                 .input  = "\x8e\xa2\xb7\xca\x51\x67\x45\xbf"
2920                           "\xea\xfc\x49\x90\x4b\x49\x60\x89",
2921                 .ilen   = 16,
2922                 .result = "\x00\x11\x22\x33\x44\x55\x66\x77"
2923                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
2924                 .rlen   = 16,
2925         },
2926 };
2927
2928 static struct cipher_testvec aes_cbc_enc_tv_template[] = {
2929         { /* From RFC 3602 */
2930                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
2931                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
2932                 .klen   = 16,
2933                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
2934                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
2935                 .input  = "Single block msg",
2936                 .ilen   = 16,
2937                 .result = "\xe3\x53\x77\x9c\x10\x79\xae\xb8"
2938                           "\x27\x08\x94\x2d\xbe\x77\x18\x1a",
2939                 .rlen   = 16,
2940         }, {
2941                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
2942                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
2943                 .klen   = 16,
2944                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
2945                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
2946                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
2947                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2948                           "\x10\x11\x12\x13\x14\x15\x16\x17"
2949                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
2950                 .ilen   = 32,
2951                 .result = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a"
2952                           "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a"
2953                           "\x75\x86\x60\x2d\x25\x3c\xff\xf9"
2954                           "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1",
2955                 .rlen   = 32,
2956         }, { /* From NIST SP800-38A */
2957                 .key    = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
2958                           "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
2959                           "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
2960                 .klen   = 24,
2961                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
2962                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2963                 .input  = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
2964                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
2965                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
2966                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
2967                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
2968                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
2969                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
2970                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
2971                 .ilen   = 64,
2972                 .result = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d"
2973                           "\x71\x78\x18\x3a\x9f\xa0\x71\xe8"
2974                           "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4"
2975                           "\xe5\xe7\x38\x76\x3f\x69\x14\x5a"
2976                           "\x57\x1b\x24\x20\x12\xfb\x7a\xe0"
2977                           "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0"
2978                           "\x08\xb0\xe2\x79\x88\x59\x88\x81"
2979                           "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd",
2980                 .rlen   = 64,
2981         }, {
2982                 .key    = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
2983                           "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
2984                           "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
2985                           "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
2986                 .klen   = 32,
2987                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
2988                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
2989                 .input  = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
2990                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
2991                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
2992                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
2993                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
2994                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
2995                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
2996                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
2997                 .ilen   = 64,
2998                 .result = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba"
2999                           "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6"
3000                           "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d"
3001                           "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d"
3002                           "\x39\xf2\x33\x69\xa9\xd9\xba\xcf"
3003                           "\xa5\x30\xe2\x63\x04\x23\x14\x61"
3004                           "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc"
3005                           "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b",
3006                 .rlen   = 64,
3007         },
3008 };
3009
3010 static struct cipher_testvec aes_cbc_dec_tv_template[] = {
3011         { /* From RFC 3602 */
3012                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
3013                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
3014                 .klen   = 16,
3015                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
3016                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
3017                 .input  = "\xe3\x53\x77\x9c\x10\x79\xae\xb8"
3018                           "\x27\x08\x94\x2d\xbe\x77\x18\x1a",
3019                 .ilen   = 16,
3020                 .result = "Single block msg",
3021                 .rlen   = 16,
3022         }, {
3023                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
3024                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
3025                 .klen   = 16,
3026                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
3027                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
3028                 .input  = "\xd2\x96\xcd\x94\xc2\xcc\xcf\x8a"
3029                           "\x3a\x86\x30\x28\xb5\xe1\xdc\x0a"
3030                           "\x75\x86\x60\x2d\x25\x3c\xff\xf9"
3031                           "\x1b\x82\x66\xbe\xa6\xd6\x1a\xb1",
3032                 .ilen   = 32,
3033                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
3034                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3035                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3036                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
3037                 .rlen   = 32,
3038         }, { /* From NIST SP800-38A */
3039                 .key    = "\x8e\x73\xb0\xf7\xda\x0e\x64\x52"
3040                           "\xc8\x10\xf3\x2b\x80\x90\x79\xe5"
3041                           "\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
3042                 .klen   = 24,
3043                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
3044                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3045                 .input  = "\x4f\x02\x1d\xb2\x43\xbc\x63\x3d"
3046                           "\x71\x78\x18\x3a\x9f\xa0\x71\xe8"
3047                           "\xb4\xd9\xad\xa9\xad\x7d\xed\xf4"
3048                           "\xe5\xe7\x38\x76\x3f\x69\x14\x5a"
3049                           "\x57\x1b\x24\x20\x12\xfb\x7a\xe0"
3050                           "\x7f\xa9\xba\xac\x3d\xf1\x02\xe0"
3051                           "\x08\xb0\xe2\x79\x88\x59\x88\x81"
3052                           "\xd9\x20\xa9\xe6\x4f\x56\x15\xcd",
3053                 .ilen   = 64,
3054                 .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3055                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3056                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3057                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3058                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3059                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3060                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3061                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3062                 .rlen   = 64,
3063         }, {
3064                 .key    = "\x60\x3d\xeb\x10\x15\xca\x71\xbe"
3065                           "\x2b\x73\xae\xf0\x85\x7d\x77\x81"
3066                           "\x1f\x35\x2c\x07\x3b\x61\x08\xd7"
3067                           "\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
3068                 .klen   = 32,
3069                 .iv     = "\x00\x01\x02\x03\x04\x05\x06\x07"
3070                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
3071                 .input  = "\xf5\x8c\x4c\x04\xd6\xe5\xf1\xba"
3072                           "\x77\x9e\xab\xfb\x5f\x7b\xfb\xd6"
3073                           "\x9c\xfc\x4e\x96\x7e\xdb\x80\x8d"
3074                           "\x67\x9f\x77\x7b\xc6\x70\x2c\x7d"
3075                           "\x39\xf2\x33\x69\xa9\xd9\xba\xcf"
3076                           "\xa5\x30\xe2\x63\x04\x23\x14\x61"
3077                           "\xb2\xeb\x05\xe2\xc3\x9b\xe9\xfc"
3078                           "\xda\x6c\x19\x07\x8c\x6a\x9d\x1b",
3079                 .ilen   = 64,
3080                 .result = "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96"
3081                           "\xe9\x3d\x7e\x11\x73\x93\x17\x2a"
3082                           "\xae\x2d\x8a\x57\x1e\x03\xac\x9c"
3083                           "\x9e\xb7\x6f\xac\x45\xaf\x8e\x51"
3084                           "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11"
3085                           "\xe5\xfb\xc1\x19\x1a\x0a\x52\xef"
3086                           "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17"
3087                           "\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
3088                 .rlen   = 64,
3089         },
3090 };
3091
3092 static struct cipher_testvec aes_lrw_enc_tv_template[] = {
3093         /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */
3094         { /* LRW-32-AES 1 */
3095                 .key    = "\x45\x62\xac\x25\xf8\x28\x17\x6d"
3096                           "\x4c\x26\x84\x14\xb5\x68\x01\x85"
3097                           "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03"
3098                           "\xee\x5a\x83\x0c\xcc\x09\x4c\x87",
3099                 .klen   = 32,
3100                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3101                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3102                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3103                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3104                 .ilen   = 16,
3105                 .result = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f"
3106                           "\xe9\x5d\x48\x92\x54\x63\x4e\xb8",
3107                 .rlen   = 16,
3108         }, { /* LRW-32-AES 2 */
3109                 .key    = "\x59\x70\x47\x14\xf5\x57\x47\x8c"
3110                           "\xd7\x79\xe8\x0f\x54\x88\x79\x44"
3111                           "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea"
3112                           "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf",
3113                 .klen   = 32,
3114                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3115                           "\x00\x00\x00\x00\x00\x00\x00\x02",
3116                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3117                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3118                 .ilen   = 16,
3119                 .result = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5"
3120                           "\x27\x4f\x07\x69\xb2\x60\xe1\x36",
3121                 .rlen   = 16,
3122         }, { /* LRW-32-AES 3 */
3123                 .key    = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50"
3124                           "\x30\xfe\x69\xe2\x37\x7f\x98\x47"
3125                           "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6"
3126                           "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f",
3127                 .klen   = 32,
3128                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3129                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3130                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3131                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3132                 .ilen   = 16,
3133                 .result = "\x76\x32\x21\x83\xed\x8f\xf1\x82"
3134                           "\xf9\x59\x62\x03\x69\x0e\x5e\x01",
3135                 .rlen   = 16,
3136         }, { /* LRW-32-AES 4 */
3137                 .key    = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15"
3138                           "\x25\x83\xf7\x3c\x1f\x01\x28\x74"
3139                           "\xca\xc6\xbc\x35\x4d\x4a\x65\x54"
3140                           "\x90\xae\x61\xcf\x7b\xae\xbd\xcc"
3141                           "\xad\xe4\x94\xc5\x4a\x29\xae\x70",
3142                 .klen   = 40,
3143                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3144                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3145                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3146                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3147                 .ilen   = 16,
3148                 .result = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0"
3149                           "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41",
3150                 .rlen   = 16,
3151         }, { /* LRW-32-AES 5 */
3152                 .key    = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff"
3153                           "\xf8\x86\xce\xac\x93\xc5\xad\xc6"
3154                           "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd"
3155                           "\x52\x13\xb2\xb7\xf0\xff\x11\xd8"
3156                           "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f",
3157                 .klen   = 40,
3158                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3159                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3160                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3161                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3162                 .ilen   = 16,
3163                 .result = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65"
3164                           "\xc8\x60\x48\x02\x87\xe3\x34\x06",
3165                 .rlen   = 16,
3166         }, { /* LRW-32-AES 6 */
3167                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3168                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3169                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3170                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3171                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3172                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3173                 .klen   = 48,
3174                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3175                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3176                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3177                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3178                 .ilen   = 16,
3179                 .result = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e"
3180                           "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b",
3181                 .rlen   = 16,
3182         }, { /* LRW-32-AES 7 */
3183                 .key    = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d"
3184                           "\xd4\x70\x98\x0b\xc7\x95\x84\xc8"
3185                           "\xb2\xfb\x64\xce\x60\x97\x87\x8d"
3186                           "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7"
3187                           "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4"
3188                           "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c",
3189                 .klen   = 48,
3190                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3191                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3192                 .input  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3193                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3194                 .ilen   = 16,
3195                 .result = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f"
3196                           "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5",
3197                 .rlen   = 16,
3198         }, {
3199 /* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */
3200                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3201                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3202                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3203                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3204                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3205                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3206                 .klen   = 48,
3207                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3208                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3209                 .input  = "\x05\x11\xb7\x18\xab\xc6\x2d\xac"
3210                           "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c"
3211                           "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8"
3212                           "\x50\x38\x1f\x71\x49\xb6\x57\xd6"
3213                           "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90"
3214                           "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6"
3215                           "\xad\x1e\x9e\x20\x5f\x38\xbe\x04"
3216                           "\xda\x10\x8e\xed\xa2\xa4\x87\xab"
3217                           "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c"
3218                           "\xc9\xac\x42\x31\x95\x7c\xc9\x04"
3219                           "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6"
3220                           "\x15\xd7\x3f\x4f\x2f\x66\x69\x03"
3221                           "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65"
3222                           "\x4c\x96\x12\xed\x7c\x92\x03\x01"
3223                           "\x6f\xbc\x35\x93\xac\xf1\x27\xf1"
3224                           "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50"
3225                           "\x89\xa4\x8e\x66\x44\x85\xcc\xfd"
3226                           "\x33\x14\x70\xe3\x96\xb2\xc3\xd3"
3227                           "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5"
3228                           "\x2d\x64\x75\xdd\xb4\x54\xe6\x74"
3229                           "\x8c\xd3\x9d\x9e\x86\xab\x51\x53"
3230                           "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40"
3231                           "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5"
3232                           "\x76\x12\x73\x44\x1a\x56\xd7\x72"
3233                           "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda"
3234                           "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd"
3235                           "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60"
3236                           "\x1a\xe2\x70\x85\x58\xc2\x1b\x09"
3237                           "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9"
3238                           "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8"
3239                           "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8"
3240                           "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10"
3241                           "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1"
3242                           "\x90\x3e\x76\x4a\x74\xa4\x21\x2c"
3243                           "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e"
3244                           "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f"
3245                           "\x8d\x23\x31\x74\x84\xeb\x88\x6e"
3246                           "\xcc\xb9\xbc\x22\x83\x19\x07\x22"
3247                           "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78"
3248                           "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5"
3249                           "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41"
3250                           "\x3c\xce\x8f\x42\x60\x71\xa7\x75"
3251                           "\x08\x40\x65\x8a\x82\xbf\xf5\x43"
3252                           "\x71\x96\xa9\x4d\x44\x8a\x20\xbe"
3253                           "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65"
3254                           "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9"
3255                           "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4"
3256                           "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a"
3257                           "\x62\x73\x65\xfd\x46\x63\x25\x3d"
3258                           "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf"
3259                           "\x24\xf3\xb4\xac\x64\xba\xdf\x4b"
3260                           "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7"
3261                           "\xc5\x68\x77\x84\x32\x2b\xcc\x85"
3262                           "\x74\x96\xf0\x12\x77\x61\xb9\xeb"
3263                           "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8"
3264                           "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24"
3265                           "\xda\x39\x87\x45\xc0\x2b\xbb\x01"
3266                           "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce"
3267                           "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6"
3268                           "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32"
3269                           "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45"
3270                           "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6"
3271                           "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4"
3272                           "\x21\xc4\xc2\x75\x67\x89\x37\x0a",
3273                 .ilen   = 512,
3274                 .result = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b"
3275                           "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a"
3276                           "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23"
3277                           "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e"
3278                           "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c"
3279                           "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d"
3280                           "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3"
3281                           "\xe8\x58\x46\x97\x39\x51\x07\xde"
3282                           "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3"
3283                           "\x0e\x84\x23\x1d\x16\xd4\x1c\x59"
3284                           "\x9c\x1a\x02\x55\xab\x3a\x97\x1d"
3285                           "\xdf\xdd\xc7\x06\x51\xd7\x70\xae"
3286                           "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82"
3287                           "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68"
3288                           "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce"
3289                           "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98"
3290                           "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2"
3291                           "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f"
3292                           "\xea\x20\xe7\xcb\x65\x77\x3a\xdf"
3293                           "\xc8\x97\x67\x15\xc2\x2a\x27\xcc"
3294                           "\x18\x55\xa1\x24\x0b\x24\x24\xaf"
3295                           "\x5b\xec\x68\xb8\xc8\xf5\xba\x63"
3296                           "\xff\xed\x89\xce\xd5\x3d\x88\xf3"
3297                           "\x25\xef\x05\x7c\x3a\xef\xeb\xd8"
3298                           "\x7a\x32\x0d\xd1\x1e\x58\x59\x99"
3299                           "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c"
3300                           "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50"
3301                           "\x41\x30\x58\xc5\x62\x74\x52\x1d"
3302                           "\x45\x24\x6a\x42\x64\x4f\x97\x1c"
3303                           "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48"
3304                           "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1"
3305                           "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46"
3306                           "\xe4\x81\x84\x95\x36\x59\x7a\x6b"
3307                           "\xaa\xb3\x60\xad\xce\x9f\x9f\x28"
3308                           "\xe0\x01\x75\x22\xc4\x4e\xa9\x62"
3309                           "\x5c\x62\x0d\x00\xcb\x13\xe8\x43"
3310                           "\x72\xd4\x2d\x53\x46\xb5\xd1\x16"
3311                           "\x22\x18\xdf\x34\x33\xf5\xd6\x1c"
3312                           "\xb8\x79\x78\x97\x94\xff\x72\x13"
3313                           "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6"
3314                           "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4"
3315                           "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f"
3316                           "\x2d\x14\x8e\x24\x61\x2c\xe1\x17"
3317                           "\xcc\xce\x51\x0c\x19\x8a\x82\x30"
3318                           "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd"
3319                           "\xb7\xeb\xfa\xfd\x27\x51\xde\x85"
3320                           "\x1e\x86\x53\x11\x53\x94\x00\xee"
3321                           "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11"
3322                           "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62"
3323                           "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1"
3324                           "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a"
3325                           "\x9e\xfa\x31\x18\x45\x3c\x21\x33"
3326                           "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1"
3327                           "\x03\xad\x1b\x48\xd4\x67\x27\xf0"
3328                           "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7"
3329                           "\xdd\x2b\x01\x39\x04\x5a\x58\x7a"
3330                           "\xf7\x11\x90\xec\xbd\x51\x5c\x32"
3331                           "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6"
3332                           "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d"
3333                           "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4"
3334                           "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3"
3335                           "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29"
3336                           "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7"
3337                           "\x74\x3f\x7d\x58\x88\x75\xde\x3e",
3338                 .rlen   = 512,
3339         }
3340 };
3341
3342 static struct cipher_testvec aes_lrw_dec_tv_template[] = {
3343         /* from http://grouper.ieee.org/groups/1619/email/pdf00017.pdf */
3344         /* same as enc vectors with input and result reversed */
3345         { /* LRW-32-AES 1 */
3346                 .key    = "\x45\x62\xac\x25\xf8\x28\x17\x6d"
3347                           "\x4c\x26\x84\x14\xb5\x68\x01\x85"
3348                           "\x25\x8e\x2a\x05\xe7\x3e\x9d\x03"
3349                           "\xee\x5a\x83\x0c\xcc\x09\x4c\x87",
3350                 .klen   = 32,
3351                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3352                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3353                 .input  = "\xf1\xb2\x73\xcd\x65\xa3\xdf\x5f"
3354                           "\xe9\x5d\x48\x92\x54\x63\x4e\xb8",
3355                 .ilen   = 16,
3356                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3357                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3358                 .rlen   = 16,
3359         }, { /* LRW-32-AES 2 */
3360                 .key    = "\x59\x70\x47\x14\xf5\x57\x47\x8c"
3361                           "\xd7\x79\xe8\x0f\x54\x88\x79\x44"
3362                           "\x0d\x48\xf0\xb7\xb1\x5a\x53\xea"
3363                           "\x1c\xaa\x6b\x29\xc2\xca\xfb\xaf",
3364                 .klen   = 32,
3365                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3366                           "\x00\x00\x00\x00\x00\x00\x00\x02",
3367                 .input  = "\x00\xc8\x2b\xae\x95\xbb\xcd\xe5"
3368                           "\x27\x4f\x07\x69\xb2\x60\xe1\x36",
3369                 .ilen   = 16,
3370                 .result  = "\x30\x31\x32\x33\x34\x35\x36\x37"
3371                            "\x38\x39\x41\x42\x43\x44\x45\x46",
3372                 .rlen   = 16,
3373         }, { /* LRW-32-AES 3 */
3374                 .key    = "\xd8\x2a\x91\x34\xb2\x6a\x56\x50"
3375                           "\x30\xfe\x69\xe2\x37\x7f\x98\x47"
3376                           "\xcd\xf9\x0b\x16\x0c\x64\x8f\xb6"
3377                           "\xb0\x0d\x0d\x1b\xae\x85\x87\x1f",
3378                 .klen   = 32,
3379                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3380                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3381                 .input  = "\x76\x32\x21\x83\xed\x8f\xf1\x82"
3382                           "\xf9\x59\x62\x03\x69\x0e\x5e\x01",
3383                 .ilen   = 16,
3384                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3385                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3386                 .rlen   = 16,
3387         }, { /* LRW-32-AES 4 */
3388                 .key    = "\x0f\x6a\xef\xf8\xd3\xd2\xbb\x15"
3389                           "\x25\x83\xf7\x3c\x1f\x01\x28\x74"
3390                           "\xca\xc6\xbc\x35\x4d\x4a\x65\x54"
3391                           "\x90\xae\x61\xcf\x7b\xae\xbd\xcc"
3392                           "\xad\xe4\x94\xc5\x4a\x29\xae\x70",
3393                 .klen   = 40,
3394                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3395                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3396                 .input  = "\x9c\x0f\x15\x2f\x55\xa2\xd8\xf0"
3397                           "\xd6\x7b\x8f\x9e\x28\x22\xbc\x41",
3398                 .ilen   = 16,
3399                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3400                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3401                 .rlen   = 16,
3402         }, { /* LRW-32-AES 5 */
3403                 .key    = "\x8a\xd4\xee\x10\x2f\xbd\x81\xff"
3404                           "\xf8\x86\xce\xac\x93\xc5\xad\xc6"
3405                           "\xa0\x19\x07\xc0\x9d\xf7\xbb\xdd"
3406                           "\x52\x13\xb2\xb7\xf0\xff\x11\xd8"
3407                           "\xd6\x08\xd0\xcd\x2e\xb1\x17\x6f",
3408                 .klen   = 40,
3409                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3410                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3411                 .input  = "\xd4\x27\x6a\x7f\x14\x91\x3d\x65"
3412                           "\xc8\x60\x48\x02\x87\xe3\x34\x06",
3413                 .ilen   = 16,
3414                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3415                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3416                 .rlen   = 16,
3417         }, { /* LRW-32-AES 6 */
3418                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3419                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3420                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3421                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3422                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3423                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3424                 .klen   = 48,
3425                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3426                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3427                 .input  = "\xbd\x06\xb8\xe1\xdb\x98\x89\x9e"
3428                           "\xc4\x98\xe4\x91\xcf\x1c\x70\x2b",
3429                 .ilen   = 16,
3430                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3431                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3432                 .rlen   = 16,
3433         }, { /* LRW-32-AES 7 */
3434                 .key    = "\xfb\x76\x15\xb2\x3d\x80\x89\x1d"
3435                           "\xd4\x70\x98\x0b\xc7\x95\x84\xc8"
3436                           "\xb2\xfb\x64\xce\x60\x97\x87\x8d"
3437                           "\x17\xfc\xe4\x5a\x49\xe8\x30\xb7"
3438                           "\x6e\x78\x17\xe7\x2d\x5e\x12\xd4"
3439                           "\x60\x64\x04\x7a\xf1\x2f\x9e\x0c",
3440                 .klen   = 48,
3441                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3442                           "\x00\x00\x00\x02\x00\x00\x00\x00",
3443                 .input  = "\x5b\x90\x8e\xc1\xab\xdd\x67\x5f"
3444                           "\x3d\x69\x8a\x95\x53\xc8\x9c\xe5",
3445                 .ilen   = 16,
3446                 .result = "\x30\x31\x32\x33\x34\x35\x36\x37"
3447                           "\x38\x39\x41\x42\x43\x44\x45\x46",
3448                 .rlen   = 16,
3449         }, {
3450 /* http://www.mail-archive.com/stds-p1619@listserv.ieee.org/msg00173.html */
3451                 .key    = "\xf8\xd4\x76\xff\xd6\x46\xee\x6c"
3452                           "\x23\x84\xcb\x1c\x77\xd6\x19\x5d"
3453                           "\xfe\xf1\xa9\xf3\x7b\xbc\x8d\x21"
3454                           "\xa7\x9c\x21\xf8\xcb\x90\x02\x89"
3455                           "\xa8\x45\x34\x8e\xc8\xc5\xb5\xf1"
3456                           "\x26\xf5\x0e\x76\xfe\xfd\x1b\x1e",
3457                 .klen   = 48,
3458                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3459                           "\x00\x00\x00\x00\x00\x00\x00\x01",
3460                 .input  = "\x1a\x1d\xa9\x30\xad\xf9\x2f\x9b"
3461                           "\xb6\x1d\xae\xef\xf0\x2f\xf8\x5a"
3462                           "\x39\x3c\xbf\x2a\xb2\x45\xb2\x23"
3463                           "\x1b\x63\x3c\xcf\xaa\xbe\xcf\x4e"
3464                           "\xfa\xe8\x29\xc2\x20\x68\x2b\x3c"
3465                           "\x2e\x8b\xf7\x6e\x25\xbd\xe3\x3d"
3466                           "\x66\x27\xd6\xaf\xd6\x64\x3e\xe3"
3467                           "\xe8\x58\x46\x97\x39\x51\x07\xde"
3468                           "\xcb\x37\xbc\xa9\xc0\x5f\x75\xc3"
3469                           "\x0e\x84\x23\x1d\x16\xd4\x1c\x59"
3470                           "\x9c\x1a\x02\x55\xab\x3a\x97\x1d"
3471                           "\xdf\xdd\xc7\x06\x51\xd7\x70\xae"
3472                           "\x23\xc6\x8c\xf5\x1e\xa0\xe5\x82"
3473                           "\xb8\xb2\xbf\x04\xa0\x32\x8e\x68"
3474                           "\xeb\xaf\x6e\x2d\x94\x22\x2f\xce"
3475                           "\x4c\xb5\x59\xe2\xa2\x2f\xa0\x98"
3476                           "\x1a\x97\xc6\xd4\xb5\x00\x59\xf2"
3477                           "\x84\x14\x72\xb1\x9a\x6e\xa3\x7f"
3478                           "\xea\x20\xe7\xcb\x65\x77\x3a\xdf"
3479                           "\xc8\x97\x67\x15\xc2\x2a\x27\xcc"
3480                           "\x18\x55\xa1\x24\x0b\x24\x24\xaf"
3481                           "\x5b\xec\x68\xb8\xc8\xf5\xba\x63"
3482                           "\xff\xed\x89\xce\xd5\x3d\x88\xf3"
3483                           "\x25\xef\x05\x7c\x3a\xef\xeb\xd8"
3484                           "\x7a\x32\x0d\xd1\x1e\x58\x59\x99"
3485                           "\x90\x25\xb5\x26\xb0\xe3\x2b\x6c"
3486                           "\x4c\xa9\x8b\x84\x4f\x5e\x01\x50"
3487                           "\x41\x30\x58\xc5\x62\x74\x52\x1d"
3488                           "\x45\x24\x6a\x42\x64\x4f\x97\x1c"
3489                           "\xa8\x66\xb5\x6d\x79\xd4\x0d\x48"
3490                           "\xc5\x5f\xf3\x90\x32\xdd\xdd\xe1"
3491                           "\xe4\xa9\x9f\xfc\xc3\x52\x5a\x46"
3492                           "\xe4\x81\x84\x95\x36\x59\x7a\x6b"
3493                           "\xaa\xb3\x60\xad\xce\x9f\x9f\x28"
3494                           "\xe0\x01\x75\x22\xc4\x4e\xa9\x62"
3495                           "\x5c\x62\x0d\x00\xcb\x13\xe8\x43"
3496                           "\x72\xd4\x2d\x53\x46\xb5\xd1\x16"
3497                           "\x22\x18\xdf\x34\x33\xf5\xd6\x1c"
3498                           "\xb8\x79\x78\x97\x94\xff\x72\x13"
3499                           "\x4c\x27\xfc\xcb\xbf\x01\x53\xa6"
3500                           "\xb4\x50\x6e\xde\xdf\xb5\x43\xa4"
3501                           "\x59\xdf\x52\xf9\x7c\xe0\x11\x6f"
3502                           "\x2d\x14\x8e\x24\x61\x2c\xe1\x17"
3503                           "\xcc\xce\x51\x0c\x19\x8a\x82\x30"
3504                           "\x94\xd5\x3d\x6a\x53\x06\x5e\xbd"
3505                           "\xb7\xeb\xfa\xfd\x27\x51\xde\x85"
3506                           "\x1e\x86\x53\x11\x53\x94\x00\xee"
3507                           "\x2b\x8c\x08\x2a\xbf\xdd\xae\x11"
3508                           "\xcb\x1e\xa2\x07\x9a\x80\xcf\x62"
3509                           "\x9b\x09\xdc\x95\x3c\x96\x8e\xb1"
3510                           "\x09\xbd\xe4\xeb\xdb\xca\x70\x7a"
3511                           "\x9e\xfa\x31\x18\x45\x3c\x21\x33"
3512                           "\xb0\xb3\x2b\xea\xf3\x71\x2d\xe1"
3513                           "\x03\xad\x1b\x48\xd4\x67\x27\xf0"
3514                           "\x62\xe4\x3d\xfb\x9b\x08\x76\xe7"
3515                           "\xdd\x2b\x01\x39\x04\x5a\x58\x7a"
3516                           "\xf7\x11\x90\xec\xbd\x51\x5c\x32"
3517                           "\x6b\xd7\x35\x39\x02\x6b\xf2\xa6"
3518                           "\xd0\x0d\x07\xe1\x06\xc4\x5b\x7d"
3519                           "\xe4\x6a\xd7\xee\x15\x1f\x83\xb4"
3520                           "\xa3\xa7\x5e\xc3\x90\xb7\xef\xd3"
3521                           "\xb7\x4f\xf8\x92\x4c\xb7\x3c\x29"
3522                           "\xcd\x7e\x2b\x5d\x43\xea\x42\xe7"
3523                           "\x74\x3f\x7d\x58\x88\x75\xde\x3e",
3524                 .ilen   = 512,
3525                 .result = "\x05\x11\xb7\x18\xab\xc6\x2d\xac"
3526                           "\x70\x5d\xf6\x22\x94\xcd\xe5\x6c"
3527                           "\x17\x6b\xf6\x1c\xf0\xf3\x6e\xf8"
3528                           "\x50\x38\x1f\x71\x49\xb6\x57\xd6"
3529                           "\x8f\xcb\x8d\x6b\xe3\xa6\x29\x90"
3530                           "\xfe\x2a\x62\x82\xae\x6d\x8b\xf6"
3531                           "\xad\x1e\x9e\x20\x5f\x38\xbe\x04"
3532                           "\xda\x10\x8e\xed\xa2\xa4\x87\xab"
3533                           "\xda\x6b\xb4\x0c\x75\xba\xd3\x7c"
3534                           "\xc9\xac\x42\x31\x95\x7c\xc9\x04"
3535                           "\xeb\xd5\x6e\x32\x69\x8a\xdb\xa6"
3536                           "\x15\xd7\x3f\x4f\x2f\x66\x69\x03"
3537                           "\x9c\x1f\x54\x0f\xde\x1f\xf3\x65"
3538                           "\x4c\x96\x12\xed\x7c\x92\x03\x01"
3539                           "\x6f\xbc\x35\x93\xac\xf1\x27\xf1"
3540                           "\xb4\x96\x82\x5a\x5f\xb0\xa0\x50"
3541                           "\x89\xa4\x8e\x66\x44\x85\xcc\xfd"
3542                           "\x33\x14\x70\xe3\x96\xb2\xc3\xd3"
3543                           "\xbb\x54\x5a\x1a\xf9\x74\xa2\xc5"
3544                           "\x2d\x64\x75\xdd\xb4\x54\xe6\x74"
3545                           "\x8c\xd3\x9d\x9e\x86\xab\x51\x53"
3546                           "\xb7\x93\x3e\x6f\xd0\x4e\x2c\x40"
3547                           "\xf6\xa8\x2e\x3e\x9d\xf4\x66\xa5"
3548                           "\x76\x12\x73\x44\x1a\x56\xd7\x72"
3549                           "\x88\xcd\x21\x8c\x4c\x0f\xfe\xda"
3550                           "\x95\xe0\x3a\xa6\xa5\x84\x46\xcd"
3551                           "\xd5\x3e\x9d\x3a\xe2\x67\xe6\x60"
3552                           "\x1a\xe2\x70\x85\x58\xc2\x1b\x09"
3553                           "\xe1\xd7\x2c\xca\xad\xa8\x8f\xf9"
3554                           "\xac\xb3\x0e\xdb\xca\x2e\xe2\xb8"
3555                           "\x51\x71\xd9\x3c\x6c\xf1\x56\xf8"
3556                           "\xea\x9c\xf1\xfb\x0c\xe6\xb7\x10"
3557                           "\x1c\xf8\xa9\x7c\xe8\x53\x35\xc1"
3558                           "\x90\x3e\x76\x4a\x74\xa4\x21\x2c"
3559                           "\xf6\x2c\x4e\x0f\x94\x3a\x88\x2e"
3560                           "\x41\x09\x6a\x33\x7d\xf6\xdd\x3f"
3561                           "\x8d\x23\x31\x74\x84\xeb\x88\x6e"
3562                           "\xcc\xb9\xbc\x22\x83\x19\x07\x22"
3563                           "\xa5\x2d\xdf\xa5\xf3\x80\x85\x78"
3564                           "\x84\x39\x6a\x6d\x6a\x99\x4f\xa5"
3565                           "\x15\xfe\x46\xb0\xe4\x6c\xa5\x41"
3566                           "\x3c\xce\x8f\x42\x60\x71\xa7\x75"
3567                           "\x08\x40\x65\x8a\x82\xbf\xf5\x43"
3568                           "\x71\x96\xa9\x4d\x44\x8a\x20\xbe"
3569                           "\xfa\x4d\xbb\xc0\x7d\x31\x96\x65"
3570                           "\xe7\x75\xe5\x3e\xfd\x92\x3b\xc9"
3571                           "\x55\xbb\x16\x7e\xf7\xc2\x8c\xa4"
3572                           "\x40\x1d\xe5\xef\x0e\xdf\xe4\x9a"
3573                           "\x62\x73\x65\xfd\x46\x63\x25\x3d"
3574                           "\x2b\xaf\xe5\x64\xfe\xa5\x5c\xcf"
3575                           "\x24\xf3\xb4\xac\x64\xba\xdf\x4b"
3576                           "\xc6\x96\x7d\x81\x2d\x8d\x97\xf7"
3577                           "\xc5\x68\x77\x84\x32\x2b\xcc\x85"
3578                           "\x74\x96\xf0\x12\x77\x61\xb9\xeb"
3579                           "\x71\xaa\x82\xcb\x1c\xdb\x89\xc8"
3580                           "\xc6\xb5\xe3\x5c\x7d\x39\x07\x24"
3581                           "\xda\x39\x87\x45\xc0\x2b\xbb\x01"
3582                           "\xac\xbc\x2a\x5c\x7f\xfc\xe8\xce"
3583                           "\x6d\x9c\x6f\xed\xd3\xc1\xa1\xd6"
3584                           "\xc5\x55\xa9\x66\x2f\xe1\xc8\x32"
3585                           "\xa6\x5d\xa4\x3a\x98\x73\xe8\x45"
3586                           "\xa4\xc7\xa8\xb4\xf6\x13\x03\xf6"
3587                           "\xe9\x2e\xc4\x29\x0f\x84\xdb\xc4"
3588                           "\x21\xc4\xc2\x75\x67\x89\x37\x0a",
3589                 .rlen   = 512,
3590         }
3591 };
3592
3593 static struct cipher_testvec aes_xts_enc_tv_template[] = {
3594         /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */
3595         { /* XTS-AES 1 */
3596                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
3597                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3598                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3599                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3600                 .klen   = 32,
3601                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3602                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3603                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
3604                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3605                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3606                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3607                 .ilen   = 32,
3608                 .result = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec"
3609                           "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92"
3610                           "\xcd\x43\xd2\xf5\x95\x98\xed\x85"
3611                           "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e",
3612                 .rlen   = 32,
3613         }, { /* XTS-AES 2 */
3614                 .key    = "\x11\x11\x11\x11\x11\x11\x11\x11"
3615                           "\x11\x11\x11\x11\x11\x11\x11\x11"
3616                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3617                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3618                 .klen   = 32,
3619                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3620                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3621                 .input  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3622                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3623                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3624                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3625                 .ilen   = 32,
3626                 .result = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e"
3627                           "\x39\x33\x40\x38\xac\xef\x83\x8b"
3628                           "\xfb\x18\x6f\xff\x74\x80\xad\xc4"
3629                           "\x28\x93\x82\xec\xd6\xd3\x94\xf0",
3630                 .rlen   = 32,
3631         }, { /* XTS-AES 3 */
3632                 .key    = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8"
3633                           "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0"
3634                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3635                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3636                 .klen   = 32,
3637                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3638                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3639                 .input  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3640                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3641                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3642                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3643                 .ilen   = 32,
3644                 .result = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a"
3645                           "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2"
3646                           "\x92\xdf\x4c\x04\x7e\x0b\x21\x53"
3647                           "\x21\x86\xa5\x97\x1a\x22\x7a\x89",
3648                 .rlen   = 32,
3649         }, { /* XTS-AES 4 */
3650                 .key    = "\x27\x18\x28\x18\x28\x45\x90\x45"
3651                           "\x23\x53\x60\x28\x74\x71\x35\x26"
3652                           "\x31\x41\x59\x26\x53\x58\x97\x93"
3653                           "\x23\x84\x62\x64\x33\x83\x27\x95",
3654                 .klen   = 32,
3655                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3656                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3657                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
3658                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3659                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3660                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3661                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3662                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3663                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3664                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3665                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3666                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3667                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3668                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3669                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3670                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3671                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3672                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3673                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3674                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3675                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3676                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3677                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3678                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3679                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3680                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3681                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3682                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3683                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3684                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3685                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3686                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3687                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3688                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
3689                           "\x00\x01\x02\x03\x04\x05\x06\x07"
3690                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3691                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3692                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3693                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3694                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3695                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3696                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3697                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3698                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3699                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3700                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3701                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3702                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3703                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3704                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3705                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3706                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3707                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3708                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3709                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3710                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3711                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3712                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3713                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3714                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3715                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3716                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3717                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3718                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3719                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3720                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
3721                 .ilen   = 512,
3722                 .result = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76"
3723                           "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2"
3724                           "\xa9\x6e\x4b\xbe\x32\x08\xff\x25"
3725                           "\x28\x7d\xd3\x81\x96\x16\xe8\x9c"
3726                           "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f"
3727                           "\x83\x33\xd8\xfa\x7f\x56\x00\x00"
3728                           "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad"
3729                           "\x40\xe7\x36\xdd\xb4\xd3\x54\x12"
3730                           "\x32\x80\x63\xfd\x2a\xab\x53\xe5"
3731                           "\xea\x1e\x0a\x9f\x33\x25\x00\xa5"
3732                           "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc"
3733                           "\x51\x2c\x88\x66\xc7\xe8\x60\xce"
3734                           "\x93\xfd\xf1\x66\xa2\x49\x12\xb4"
3735                           "\x22\x97\x61\x46\xae\x20\xce\x84"
3736                           "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a"
3737                           "\xae\xf2\x0c\x0d\x61\xad\x02\x65"
3738                           "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89"
3739                           "\x52\xc6\x51\xd3\x31\x74\xbe\x51"
3740                           "\xa1\x0c\x42\x11\x10\xe6\xd8\x15"
3741                           "\x88\xed\xe8\x21\x03\xa2\x52\xd8"
3742                           "\xa7\x50\xe8\x76\x8d\xef\xff\xed"
3743                           "\x91\x22\x81\x0a\xae\xb9\x9f\x91"
3744                           "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e"
3745                           "\x51\xbc\xb0\x82\x35\xa6\xf4\x34"
3746                           "\x13\x32\xe4\xca\x60\x48\x2a\x4b"
3747                           "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5"
3748                           "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4"
3749                           "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c"
3750                           "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd"
3751                           "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3"
3752                           "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f"
3753                           "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e"
3754                           "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91"
3755                           "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19"
3756                           "\x7c\x4e\x5b\x03\x39\x36\x97\xe1"
3757                           "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc"
3758                           "\x1e\x08\x29\x85\x16\xe2\xc9\xed"
3759                           "\x03\xff\x3c\x1b\x78\x60\xf6\xde"
3760                           "\x76\xd4\xce\xcd\x94\xc8\x11\x98"
3761                           "\x55\xef\x52\x97\xca\x67\xe9\xf3"
3762                           "\xe7\xff\x72\xb1\xe9\x97\x85\xca"
3763                           "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6"
3764                           "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc"
3765                           "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44"
3766                           "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0"
3767                           "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95"
3768                           "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4"
3769                           "\x99\x02\x7a\x78\x57\x2a\xee\xbd"
3770                           "\x74\xd2\x0c\xc3\x98\x81\xc2\x13"
3771                           "\xee\x77\x0b\x10\x10\xe4\xbe\xa7"
3772                           "\x18\x84\x69\x77\xae\x11\x9f\x7a"
3773                           "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52"
3774                           "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a"
3775                           "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38"
3776                           "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e"
3777                           "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e"
3778                           "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad"
3779                           "\x15\xb4\xaa\x5b\x65\x50\x16\xa8"
3780                           "\x44\x92\x77\xdb\xd4\x77\xef\x2c"
3781                           "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d"
3782                           "\xeb\x4a\x42\x7d\x19\x23\xce\x3f"
3783                           "\xf2\x62\x73\x57\x79\xa4\x18\xf2"
3784                           "\x0a\x28\x2d\xf9\x20\x14\x7b\xea"
3785                           "\xbe\x42\x1e\xe5\x31\x9d\x05\x68",
3786                 .rlen   = 512,
3787         }
3788 };
3789
3790 static struct cipher_testvec aes_xts_dec_tv_template[] = {
3791         /* http://grouper.ieee.org/groups/1619/email/pdf00086.pdf */
3792         { /* XTS-AES 1 */
3793                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
3794                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3795                           "\x00\x00\x00\x00\x00\x00\x00\x00"
3796                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3797                 .klen   = 32,
3798                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3799                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3800                 .input = "\x91\x7c\xf6\x9e\xbd\x68\xb2\xec"
3801                          "\x9b\x9f\xe9\xa3\xea\xdd\xa6\x92"
3802                          "\xcd\x43\xd2\xf5\x95\x98\xed\x85"
3803                          "\x8c\x02\xc2\x65\x2f\xbf\x92\x2e",
3804                 .ilen   = 32,
3805                 .result  = "\x00\x00\x00\x00\x00\x00\x00\x00"
3806                            "\x00\x00\x00\x00\x00\x00\x00\x00"
3807                            "\x00\x00\x00\x00\x00\x00\x00\x00"
3808                            "\x00\x00\x00\x00\x00\x00\x00\x00",
3809                 .rlen   = 32,
3810         }, { /* XTS-AES 2 */
3811                 .key    = "\x11\x11\x11\x11\x11\x11\x11\x11"
3812                           "\x11\x11\x11\x11\x11\x11\x11\x11"
3813                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3814                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3815                 .klen   = 32,
3816                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3817                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3818                 .input  = "\xc4\x54\x18\x5e\x6a\x16\x93\x6e"
3819                           "\x39\x33\x40\x38\xac\xef\x83\x8b"
3820                           "\xfb\x18\x6f\xff\x74\x80\xad\xc4"
3821                           "\x28\x93\x82\xec\xd6\xd3\x94\xf0",
3822                 .ilen   = 32,
3823                 .result = "\x44\x44\x44\x44\x44\x44\x44\x44"
3824                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3825                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3826                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3827                 .rlen   = 32,
3828         }, { /* XTS-AES 3 */
3829                 .key    = "\xff\xfe\xfd\xfc\xfb\xfa\xf9\xf8"
3830                           "\xf7\xf6\xf5\xf4\xf3\xf2\xf1\xf0"
3831                           "\x22\x22\x22\x22\x22\x22\x22\x22"
3832                           "\x22\x22\x22\x22\x22\x22\x22\x22",
3833                 .klen   = 32,
3834                 .iv     = "\x33\x33\x33\x33\x33\x00\x00\x00"
3835                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3836                 .input = "\xaf\x85\x33\x6b\x59\x7a\xfc\x1a"
3837                           "\x90\x0b\x2e\xb2\x1e\xc9\x49\xd2"
3838                           "\x92\xdf\x4c\x04\x7e\x0b\x21\x53"
3839                           "\x21\x86\xa5\x97\x1a\x22\x7a\x89",
3840                 .ilen   = 32,
3841                 .result  = "\x44\x44\x44\x44\x44\x44\x44\x44"
3842                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3843                           "\x44\x44\x44\x44\x44\x44\x44\x44"
3844                           "\x44\x44\x44\x44\x44\x44\x44\x44",
3845                 .rlen   = 32,
3846         }, { /* XTS-AES 4 */
3847                 .key    = "\x27\x18\x28\x18\x28\x45\x90\x45"
3848                           "\x23\x53\x60\x28\x74\x71\x35\x26"
3849                           "\x31\x41\x59\x26\x53\x58\x97\x93"
3850                           "\x23\x84\x62\x64\x33\x83\x27\x95",
3851                 .klen   = 32,
3852                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00"
3853                           "\x00\x00\x00\x00\x00\x00\x00\x00",
3854                 .input  = "\x27\xa7\x47\x9b\xef\xa1\xd4\x76"
3855                           "\x48\x9f\x30\x8c\xd4\xcf\xa6\xe2"
3856                           "\xa9\x6e\x4b\xbe\x32\x08\xff\x25"
3857                           "\x28\x7d\xd3\x81\x96\x16\xe8\x9c"
3858                           "\xc7\x8c\xf7\xf5\xe5\x43\x44\x5f"
3859                           "\x83\x33\xd8\xfa\x7f\x56\x00\x00"
3860                           "\x05\x27\x9f\xa5\xd8\xb5\xe4\xad"
3861                           "\x40\xe7\x36\xdd\xb4\xd3\x54\x12"
3862                           "\x32\x80\x63\xfd\x2a\xab\x53\xe5"
3863                           "\xea\x1e\x0a\x9f\x33\x25\x00\xa5"
3864                           "\xdf\x94\x87\xd0\x7a\x5c\x92\xcc"
3865                           "\x51\x2c\x88\x66\xc7\xe8\x60\xce"
3866                           "\x93\xfd\xf1\x66\xa2\x49\x12\xb4"
3867                           "\x22\x97\x61\x46\xae\x20\xce\x84"
3868                           "\x6b\xb7\xdc\x9b\xa9\x4a\x76\x7a"
3869                           "\xae\xf2\x0c\x0d\x61\xad\x02\x65"
3870                           "\x5e\xa9\x2d\xc4\xc4\xe4\x1a\x89"
3871                           "\x52\xc6\x51\xd3\x31\x74\xbe\x51"
3872                           "\xa1\x0c\x42\x11\x10\xe6\xd8\x15"
3873                           "\x88\xed\xe8\x21\x03\xa2\x52\xd8"
3874                           "\xa7\x50\xe8\x76\x8d\xef\xff\xed"
3875                           "\x91\x22\x81\x0a\xae\xb9\x9f\x91"
3876                           "\x72\xaf\x82\xb6\x04\xdc\x4b\x8e"
3877                           "\x51\xbc\xb0\x82\x35\xa6\xf4\x34"
3878                           "\x13\x32\xe4\xca\x60\x48\x2a\x4b"
3879                           "\xa1\xa0\x3b\x3e\x65\x00\x8f\xc5"
3880                           "\xda\x76\xb7\x0b\xf1\x69\x0d\xb4"
3881                           "\xea\xe2\x9c\x5f\x1b\xad\xd0\x3c"
3882                           "\x5c\xcf\x2a\x55\xd7\x05\xdd\xcd"
3883                           "\x86\xd4\x49\x51\x1c\xeb\x7e\xc3"
3884                           "\x0b\xf1\x2b\x1f\xa3\x5b\x91\x3f"
3885                           "\x9f\x74\x7a\x8a\xfd\x1b\x13\x0e"
3886                           "\x94\xbf\xf9\x4e\xff\xd0\x1a\x91"
3887                           "\x73\x5c\xa1\x72\x6a\xcd\x0b\x19"
3888                           "\x7c\x4e\x5b\x03\x39\x36\x97\xe1"
3889                           "\x26\x82\x6f\xb6\xbb\xde\x8e\xcc"
3890                           "\x1e\x08\x29\x85\x16\xe2\xc9\xed"
3891                           "\x03\xff\x3c\x1b\x78\x60\xf6\xde"
3892                           "\x76\xd4\xce\xcd\x94\xc8\x11\x98"
3893                           "\x55\xef\x52\x97\xca\x67\xe9\xf3"
3894                           "\xe7\xff\x72\xb1\xe9\x97\x85\xca"
3895                           "\x0a\x7e\x77\x20\xc5\xb3\x6d\xc6"
3896                           "\xd7\x2c\xac\x95\x74\xc8\xcb\xbc"
3897                           "\x2f\x80\x1e\x23\xe5\x6f\xd3\x44"
3898                           "\xb0\x7f\x22\x15\x4b\xeb\xa0\xf0"
3899                           "\x8c\xe8\x89\x1e\x64\x3e\xd9\x95"
3900                           "\xc9\x4d\x9a\x69\xc9\xf1\xb5\xf4"
3901                           "\x99\x02\x7a\x78\x57\x2a\xee\xbd"
3902                           "\x74\xd2\x0c\xc3\x98\x81\xc2\x13"
3903                           "\xee\x77\x0b\x10\x10\xe4\xbe\xa7"
3904                           "\x18\x84\x69\x77\xae\x11\x9f\x7a"
3905                           "\x02\x3a\xb5\x8c\xca\x0a\xd7\x52"
3906                           "\xaf\xe6\x56\xbb\x3c\x17\x25\x6a"
3907                           "\x9f\x6e\x9b\xf1\x9f\xdd\x5a\x38"
3908                           "\xfc\x82\xbb\xe8\x72\xc5\x53\x9e"
3909                           "\xdb\x60\x9e\xf4\xf7\x9c\x20\x3e"
3910                           "\xbb\x14\x0f\x2e\x58\x3c\xb2\xad"
3911                           "\x15\xb4\xaa\x5b\x65\x50\x16\xa8"
3912                           "\x44\x92\x77\xdb\xd4\x77\xef\x2c"
3913                           "\x8d\x6c\x01\x7d\xb7\x38\xb1\x8d"
3914                           "\xeb\x4a\x42\x7d\x19\x23\xce\x3f"
3915                           "\xf2\x62\x73\x57\x79\xa4\x18\xf2"
3916                           "\x0a\x28\x2d\xf9\x20\x14\x7b\xea"
3917                           "\xbe\x42\x1e\xe5\x31\x9d\x05\x68",
3918                 .ilen   = 512,
3919                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
3920                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3921                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3922                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3923                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3924                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3925                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3926                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3927                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3928                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3929                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3930                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3931                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3932                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3933                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3934                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3935                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3936                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3937                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3938                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3939                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3940                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3941                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3942                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3943                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3944                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3945                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3946                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3947                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3948                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3949                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3950                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
3951                           "\x00\x01\x02\x03\x04\x05\x06\x07"
3952                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
3953                           "\x10\x11\x12\x13\x14\x15\x16\x17"
3954                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
3955                           "\x20\x21\x22\x23\x24\x25\x26\x27"
3956                           "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
3957                           "\x30\x31\x32\x33\x34\x35\x36\x37"
3958                           "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
3959                           "\x40\x41\x42\x43\x44\x45\x46\x47"
3960                           "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
3961                           "\x50\x51\x52\x53\x54\x55\x56\x57"
3962                           "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
3963                           "\x60\x61\x62\x63\x64\x65\x66\x67"
3964                           "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
3965                           "\x70\x71\x72\x73\x74\x75\x76\x77"
3966                           "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
3967                           "\x80\x81\x82\x83\x84\x85\x86\x87"
3968                           "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
3969                           "\x90\x91\x92\x93\x94\x95\x96\x97"
3970                           "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
3971                           "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
3972                           "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
3973                           "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
3974                           "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
3975                           "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
3976                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
3977                           "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
3978                           "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
3979                           "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
3980                           "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
3981                           "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
3982                           "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
3983                 .rlen   = 512,
3984         }
3985 };
3986
3987
3988 static struct cipher_testvec aes_ctr_enc_tv_template[] = {
3989         { /* From RFC 3686 */
3990                 .key    = "\xae\x68\x52\xf8\x12\x10\x67\xcc"
3991                           "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e"
3992                           "\x00\x00\x00\x30",
3993                 .klen   = 20,
3994                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
3995                 .input  = "Single block msg",
3996                 .ilen   = 16,
3997                 .result = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79"
3998                           "\x2d\x61\x75\xa3\x26\x13\x11\xb8",
3999                 .rlen   = 16,
4000         }, {
4001                 .key    = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7"
4002                           "\x43\xd6\xce\x1f\x32\x53\x91\x63"
4003                           "\x00\x6c\xb6\xdb",
4004                 .klen   = 20,
4005                 .iv     = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b",
4006                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
4007                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4008                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4009                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4010                 .ilen   = 32,
4011                 .result = "\x51\x04\xa1\x06\x16\x8a\x72\xd9"
4012                           "\x79\x0d\x41\xee\x8e\xda\xd3\x88"
4013                           "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8"
4014                           "\xfc\xe6\x30\xdf\x91\x41\xbe\x28",
4015                 .rlen   = 32,
4016         }, {
4017                 .key    = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79"
4018                           "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed"
4019                           "\x86\x3d\x06\xcc\xfd\xb7\x85\x15"
4020                           "\x00\x00\x00\x48",
4021                 .klen   = 28,
4022                 .iv     = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb",
4023                 .input  = "Single block msg",
4024                 .ilen   = 16,
4025                 .result = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8"
4026                           "\x4e\x79\x35\xa0\x03\xcb\xe9\x28",
4027                 .rlen   = 16,
4028         }, {
4029                 .key    = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c"
4030                           "\x19\xe7\x34\x08\x19\xe0\xf6\x9c"
4031                           "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a"
4032                           "\x00\x96\xb0\x3b",
4033                 .klen   = 28,
4034                 .iv     = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d",
4035                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
4036                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4037                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4038                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4039                 .ilen   = 32,
4040                 .result = "\x45\x32\x43\xfc\x60\x9b\x23\x32"
4041                           "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f"
4042                           "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c"
4043                           "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00",
4044                 .rlen   = 32,
4045         }, {
4046                 .key    = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f"
4047                           "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c"
4048                           "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3"
4049                           "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04"
4050                           "\x00\x00\x00\x60",
4051                 .klen   = 36,
4052                 .iv     = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2",
4053                 .input  = "Single block msg",
4054                 .ilen   = 16,
4055                 .result = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7"
4056                           "\x56\x08\x63\xdc\x71\xe3\xe0\xc0",
4057                 .rlen   = 16,
4058         }, {
4059                 .key    = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb"
4060                           "\x07\x96\x36\x58\x79\xef\xf8\x86"
4061                           "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74"
4062                           "\x4b\x50\x59\x0c\x87\xa2\x38\x84"
4063                           "\x00\xfa\xac\x24",
4064                 .klen   = 36,
4065                 .iv     = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75",
4066                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
4067                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4068                           "\x10\x11\x12\x13\x14\x15\x16\x17"
4069                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
4070                 .ilen   = 32,
4071                 .result = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c"
4072                           "\x49\xee\x00\x0b\x80\x4e\xb2\xa9"
4073                           "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a"
4074                           "\x55\x30\x83\x1d\x93\x44\xaf\x1c",
4075                 .rlen   = 32,
4076         }, {
4077         // generated using Crypto++
4078                 .key = "\x00\x01\x02\x03\x04\x05\x06\x07"
4079                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4080                         "\x10\x11\x12\x13\x14\x15\x16\x17"
4081                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4082                         "\x00\x00\x00\x00",
4083                 .klen = 32 + 4,
4084                 .iv = "\x00\x00\x00\x00\x00\x00\x00\x00",
4085                 .input =
4086                         "\x00\x01\x02\x03\x04\x05\x06\x07"
4087                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
4088                         "\x10\x11\x12\x13\x14\x15\x16\x17"
4089                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
4090                         "\x20\x21\x22\x23\x24\x25\x26\x27"
4091                         "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
4092                         "\x30\x31\x32\x33\x34\x35\x36\x37"
4093                         "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
4094                         "\x40\x41\x42\x43\x44\x45\x46\x47"
4095                         "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
4096                         "\x50\x51\x52\x53\x54\x55\x56\x57"
4097                         "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
4098                         "\x60\x61\x62\x63\x64\x65\x66\x67"
4099                         "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
4100                         "\x70\x71\x72\x73\x74\x75\x76\x77"
4101                         "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
4102                         "\x80\x81\x82\x83\x84\x85\x86\x87"
4103                         "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
4104                         "\x90\x91\x92\x93\x94\x95\x96\x97"
4105                         "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
4106                         "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
4107                         "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
4108                         "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
4109                         "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
4110                         "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
4111                         "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
4112                         "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
4113                         "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
4114                         "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
4115                         "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
4116                         "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
4117                         "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
4118                         "\x00\x03\x06\x09\x0c\x0f\x12\x15"
4119                         "\x18\x1b\x1e\x21\x24\x27\x2a\x2d"
4120                         "\x30\x33\x36\x39\x3c\x3f\x42\x45"
4121                         "\x48\x4b\x4e\x51\x54\x57\x5a\x5d"
4122                         "\x60\x63\x66\x69\x6c\x6f\x72\x75"
4123                         "\x78\x7b\x7e\x81\x84\x87\x8a\x8d"
4124                         "\x90\x93\x96\x99\x9c\x9f\xa2\xa5"
4125                         "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd"
4126                         "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5"
4127                         "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed"
4128                         "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05"
4129                         "\x08\x0b\x0e\x11\x14\x17\x1a\x1d"
4130                         "\x20\x23\x26\x29\x2c\x2f\x32\x35"
4131                         "\x38\x3b\x3e\x41\x44\x47\x4a\x4d"
4132                         "\x50\x53\x56\x59\x5c\x5f\x62\x65"
4133                         "\x68\x6b\x6e\x71\x74\x77\x7a\x7d"
4134                         "\x80\x83\x86\x89\x8c\x8f\x92\x95"
4135                         "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad"
4136                         "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5"
4137                         "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd"
4138                         "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5"
4139                         "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d"
4140                         "\x10\x13\x16\x19\x1c\x1f\x22\x25"
4141                         "\x28\x2b\x2e\x31\x34\x37\x3a\x3d"
4142                         "\x40\x43\x46\x49\x4c\x4f\x52\x55"
4143                         "\x58\x5b\x5e\x61\x64\x67\x6a\x6d"
4144                         "\x70\x73\x76\x79\x7c\x7f\x82\x85"
4145                         "\x88\x8b\x8e\x91\x94\x97\x9a\x9d"
4146                         "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5"
4147                         "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd"
4148                         "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5"
4149                         "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd"
4150                         "\x00\x05\x0a\x0f\x14\x19\x1e\x23"
4151                         "\x28\x2d\x32\x37\x3c\x41\x46\x4b"
4152                         "\x50\x55\x5a\x5f\x64\x69\x6e\x73"
4153                         "\x78\x7d\x82\x87\x8c\x91\x96\x9b"
4154                         "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3"
4155                         "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb"
4156                         "\xf0\xf5\xfa\xff\x04\x09\x0e\x13"
4157                         "\x18\x1d\x22\x27\x2c\x31\x36\x3b"
4158                         "\x40\x45\x4a\x4f\x54\x59\x5e\x63"
4159                         "\x68\x6d\x72\x77\x7c\x81\x86\x8b"
4160                         "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3"
4161                         "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb"
4162                         "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03"
4163                         "\x08\x0d\x12\x17\x1c\x21\x26\x2b"
4164                         "\x30\x35\x3a\x3f\x44\x49\x4e\x53"
4165                         "\x58\x5d\x62\x67\x6c\x71\x76\x7b"
4166                         "\x80\x85\x8a\x8f\x94\x99\x9e\xa3"
4167                         "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb"
4168                         "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3"
4169                         "\xf8\xfd\x02\x07\x0c\x11\x16\x1b"
4170                         "\x20\x25\x2a\x2f\x34\x39\x3e\x43"
4171                         "\x48\x4d\x52\x57\x5c\x61\x66\x6b"
4172                         "\x70\x75\x7a\x7f\x84\x89\x8e\x93"
4173                         "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb"
4174                         "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3"
4175                         "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b"
4176                         "\x10\x15\x1a\x1f\x24\x29\x2e\x33"
4177                         "\x38\x3d\x42\x47\x4c\x51\x56\x5b"
4178                         "\x60\x65\x6a\x6f\x74\x79\x7e\x83"
4179                         "\x88\x8d\x92\x97\x9c\xa1\xa6\xab"
4180                         "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3"
4181                         "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb"
4182                         "\x00\x07\x0e\x15\x1c\x23\x2a\x31"
4183                         "\x38\x3f\x46\x4d\x54\x5b\x62\x69"
4184                         "\x70\x77\x7e\x85\x8c\x93\x9a\xa1"
4185                         "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9"
4186                         "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11"
4187                         "\x18\x1f\x26\x2d\x34\x3b\x42\x49"
4188                         "\x50\x57\x5e\x65\x6c\x73\x7a\x81"
4189                         "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9"
4190                         "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1"
4191                         "\xf8\xff\x06\x0d\x14\x1b\x22\x29"
4192                         "\x30\x37\x3e\x45\x4c\x53\x5a\x61"
4193                         "\x68\x6f\x76\x7d\x84\x8b\x92\x99"
4194                         "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1"
4195                         "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09"
4196                         "\x10\x17\x1e\x25\x2c\x33\x3a\x41"
4197                         "\x48\x4f\x56\x5d\x64\x6b\x72\x79"
4198                         "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1"
4199                         "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9"
4200                         "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21"
4201                         "\x28\x2f\x36\x3d\x44\x4b\x52\x59"
4202                         "\x60\x67\x6e\x75\x7c\x83\x8a\x91"
4203                         "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9"
4204                         "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01"
4205                         "\x08\x0f\x16\x1d\x24\x2b\x32\x39"
4206                         "\x40\x47\x4e\x55\x5c\x63\x6a\x71"
4207                         "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9"
4208                         "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1"
4209                         "\xe8\xef\xf6\xfd\x04\x0b\x12\x19"
4210                         "\x20\x27\x2e\x35\x3c\x43\x4a\x51"
4211                         "\x58\x5f\x66\x6d\x74\x7b\x82\x89"
4212                         "\x90\x97\x9e\xa5\xac\xb3\xba\xc1"
4213                         "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9"
4214                         "\x00\x09\x12\x1b\x24\x2d\x36\x3f"
4215                         "\x48\x51\x5a\x63\x6c\x75\x7e\x87"
4216                         "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf"
4217                         "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17"
4218                         "\x20\x29\x32\x3b\x44\x4d\x56\x5f"
4219                         "\x68\x71\x7a\x83\x8c\x95\x9e\xa7"
4220                         "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef"
4221                         "\xf8\x01\x0a\x13\x1c\x25\x2e\x37"
4222                         "\x40\x49\x52\x5b\x64\x6d\x76\x7f"
4223                         "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7"
4224                         "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f"
4225                         "\x18\x21\x2a\x33\x3c\x45\x4e\x57"
4226                         "\x60\x69\x72\x7b\x84\x8d\x96\x9f"
4227                         "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7"
4228                         "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f"
4229                         "\x38\x41\x4a\x53\x5c\x65\x6e\x77"
4230                         "\x80\x89\x92\x9b\xa4\xad\xb6\xbf"
4231                         "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07"
4232                         "\x10\x19\x22\x2b\x34\x3d\x46\x4f"
4233                         "\x58\x61\x6a\x73\x7c\x85\x8e\x97"
4234                         "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf"
4235                         "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27"
4236                         "\x30\x39\x42\x4b\x54\x5d\x66\x6f"
4237                         "\x78\x81\x8a\x93\x9c\xa5\xae\xb7"
4238                         "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff"
4239                         "\x08\x11\x1a\x23\x2c\x35\x3e\x47"
4240                         "\x50\x59\x62\x6b\x74\x7d\x86\x8f"
4241                         "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7"
4242                         "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f"
4243                         "\x28\x31\x3a\x43\x4c\x55\x5e\x67"
4244                         "\x70\x79\x82\x8b\x94\x9d\xa6\xaf"
4245                         "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7"
4246                         "\x00\x0b\x16\x21\x2c\x37\x42\x4d"
4247                         "\x58\x63\x6e\x79\x84\x8f\x9a\xa5"
4248                         "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd"
4249                         "\x08\x13\x1e\x29\x34\x3f\x4a\x55"
4250                         "\x60\x6b\x76\x81\x8c\x97\xa2\xad"
4251                         "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05"
4252                         "\x10\x1b\x26\x31\x3c\x47\x52\x5d"
4253                         "\x68\x73\x7e\x89\x94\x9f\xaa\xb5"
4254                         "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d"
4255                         "\x18\x23\x2e\x39\x44\x4f\x5a\x65"
4256                         "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd"
4257                         "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15"
4258                         "\x20\x2b\x36\x41\x4c\x57\x62\x6d"
4259                         "\x78\x83\x8e\x99\xa4\xaf\xba\xc5"
4260                         "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d"
4261                         "\x28\x33\x3e\x49\x54\x5f\x6a\x75"
4262                         "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd"
4263                         "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25"
4264                         "\x30\x3b\x46\x51\x5c\x67\x72\x7d"
4265                         "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5"
4266                         "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d"
4267                         "\x38\x43\x4e\x59\x64\x6f\x7a\x85"
4268                         "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd"
4269                         "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35"
4270                         "\x40\x4b\x56\x61\x6c\x77\x82\x8d"
4271                         "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5"
4272                         "\xf0\xfb\x06\x11\x1c\x27\x32\x3d"
4273                         "\x48\x53\x5e\x69\x74\x7f\x8a\x95"
4274                         "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed"
4275                         "\xf8\x03\x0e\x19\x24\x2f\x3a\x45"
4276                         "\x50\x5b\x66\x71\x7c\x87\x92\x9d"
4277                         "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5"
4278                         "\x00\x0d\x1a\x27\x34\x41\x4e\x5b"
4279                         "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3"
4280                         "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b"
4281                         "\x38\x45\x52\x5f\x6c\x79\x86\x93"
4282                         "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb"
4283                         "\x08\x15\x22\x2f\x3c\x49\x56\x63"
4284                         "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb"
4285                         "\xd8\xe5\xf2\xff\x0c\x19\x26\x33"
4286                         "\x40\x4d\x5a\x67\x74\x81\x8e\x9b"
4287                         "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03"
4288                         "\x10\x1d\x2a\x37\x44\x51\x5e\x6b"
4289                         "\x78\x85\x92\x9f\xac\xb9\xc6\xd3"
4290                         "\xe0\xed\xfa\x07\x14\x21\x2e\x3b"
4291                         "\x48\x55\x62\x6f\x7c\x89\x96\xa3"
4292                         "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b"
4293                         "\x18\x25\x32\x3f\x4c\x59\x66\x73"
4294                         "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb"
4295                         "\xe8\xf5\x02\x0f\x1c\x29\x36\x43"
4296                         "\x50\x5d\x6a\x77\x84\x91\x9e\xab"
4297                         "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13"
4298                         "\x20\x2d\x3a\x47\x54\x61\x6e\x7b"
4299                         "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3"
4300                         "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b"
4301                         "\x58\x65\x72\x7f\x8c\x99\xa6\xb3"
4302                         "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b"
4303                         "\x28\x35\x42\x4f\x5c\x69\x76\x83"
4304                         "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb"
4305                         "\xf8\x05\x12\x1f\x2c\x39\x46\x53"
4306                         "\x60\x6d\x7a\x87\x94\xa1\xae\xbb"
4307                         "\xc8\xd5\xe2\xef\xfc\x09\x16\x23"
4308                         "\x30\x3d\x4a\x57\x64\x71\x7e\x8b"
4309                         "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3"
4310                         "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69"
4311                         "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1"
4312                         "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59"
4313                         "\x68\x77\x86\x95\xa4\xb3\xc2\xd1"
4314                         "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49"
4315                         "\x58\x67\x76\x85\x94\xa3\xb2\xc1"
4316                         "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39"
4317                         "\x48\x57\x66\x75\x84\x93\xa2\xb1"
4318                         "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29"
4319                         "\x38\x47\x56\x65\x74\x83\x92\xa1"
4320                         "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19"
4321                         "\x28\x37\x46\x55\x64\x73\x82\x91"
4322                         "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09"
4323                         "\x18\x27\x36\x45\x54\x63\x72\x81"
4324                         "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9"
4325                         "\x08\x17\x26\x35\x44\x53\x62\x71"
4326                         "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9"
4327                         "\xf8\x07\x16\x25\x34\x43\x52\x61"
4328                         "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9"
4329                         "\xe8\xf7\x06\x15\x24\x33\x42\x51"
4330                         "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9"
4331                         "\xd8\xe7\xf6\x05\x14\x23\x32\x41"
4332                         "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9"
4333                         "\xc8\xd7\xe6\xf5\x04\x13\x22\x31"
4334                         "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9"
4335                         "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21"
4336                         "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99"
4337                         "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11"
4338                         "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89"
4339                         "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01"
4340                         "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79"
4341                         "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1"
4342                         "\x00\x11\x22\x33\x44\x55\x66\x77"
4343                         "\x88\x99\xaa\xbb\xcc\xdd\xee\xff"
4344                         "\x10\x21\x32\x43\x54\x65\x76\x87"
4345                         "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f"
4346                         "\x20\x31\x42\x53\x64\x75\x86\x97"
4347                         "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f"
4348                         "\x30\x41\x52\x63\x74\x85\x96\xa7"
4349                         "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f"
4350                         "\x40\x51\x62\x73\x84\x95\xa6\xb7"
4351                         "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f"
4352                         "\x50\x61\x72\x83\x94\xa5\xb6\xc7"
4353                         "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f"
4354                         "\x60\x71\x82\x93\xa4\xb5\xc6\xd7"
4355                         "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f"
4356                         "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7"
4357                         "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f"
4358                         "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7"
4359                         "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f"
4360                         "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07"
4361                         "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f"
4362                         "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17"
4363                         "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f"
4364                         "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27"
4365                         "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf"
4366                         "\xc0\xd1\xe2\xf3\x04\x15\x26\x37"
4367                         "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf"
4368                         "\xd0\xe1\xf2\x03\x14\x25\x36\x47"
4369                         "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf"
4370                         "\xe0\xf1\x02\x13\x24\x35\x46\x57"
4371                         "\x68\x79\x8a\x9b\xac\xbd\xce\xdf"
4372                         "\xf0\x01\x12\x23\x34\x45\x56\x67"
4373                         "\x78\x89\x9a\xab\xbc\xcd\xde\xef"
4374                         "\x00\x13\x26\x39\x4c\x5f\x72\x85"
4375                         "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d"
4376                         "\x30\x43\x56\x69\x7c\x8f\xa2\xb5"
4377                         "\xc8\xdb\xee\x01\x14\x27\x3a\x4d"
4378                         "\x60\x73\x86\x99\xac\xbf\xd2\xe5"
4379                         "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d"
4380                         "\x90\xa3\xb6\xc9\xdc\xef\x02\x15"
4381                         "\x28\x3b\x4e\x61\x74\x87\x9a\xad"
4382                         "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45"
4383                         "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd"
4384                         "\xf0\x03\x16\x29\x3c\x4f\x62\x75"
4385                         "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d"
4386                         "\x20\x33\x46\x59\x6c\x7f\x92\xa5"
4387                         "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d"
4388                         "\x50\x63\x76\x89\x9c\xaf\xc2\xd5"
4389                         "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d"
4390                         "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05"
4391                         "\x18\x2b\x3e\x51\x64\x77\x8a\x9d"
4392                         "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35"
4393                         "\x48\x5b\x6e\x81\x94\xa7\xba\xcd"
4394                         "\xe0\xf3\x06\x19\x2c\x3f\x52\x65"
4395                         "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd"
4396                         "\x10\x23\x36\x49\x5c\x6f\x82\x95"
4397                         "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d"
4398                         "\x40\x53\x66\x79\x8c\x9f\xb2\xc5"
4399                         "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d"
4400                         "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5"
4401                         "\x08\x1b\x2e\x41\x54\x67\x7a\x8d"
4402                         "\xa0\xb3\xc6\xd9\xec\xff\x12\x25"
4403                         "\x38\x4b\x5e\x71\x84\x97\xaa\xbd"
4404                         "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55"
4405                         "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed"
4406                         "\x00\x15\x2a\x3f\x54\x69\x7e\x93"
4407                         "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b"
4408                         "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3"
4409                         "\xf8\x0d\x22\x37\x4c\x61\x76\x8b"
4410                         "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33"
4411                         "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb"
4412                         "\xf0\x05\x1a\x2f\x44\x59\x6e\x83"
4413                         "\x98\xad\xc2\xd7\xec\x01\x16\x2b"
4414                         "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3"
4415                         "\xe8\xfd\x12\x27\x3c\x51\x66\x7b"
4416                         "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23"
4417                         "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb"
4418                         "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73"
4419                         "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b"
4420                         "\x30\x45\x5a\x6f\x84\x99\xae\xc3"
4421                         "\xd8\xed\x02\x17\x2c\x41\x56\x6b"
4422                         "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13"
4423                         "\x28\x3d\x52\x67\x7c\x91\xa6\xbb"
4424                         "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63"
4425                         "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b"
4426                         "\x20\x35\x4a\x5f\x74\x89\x9e\xb3"
4427                         "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b"
4428                         "\x70\x85\x9a\xaf\xc4\xd9\xee\x03"
4429                         "\x18\x2d\x42\x57\x6c\x81\x96\xab"
4430                         "\xc0\xd5\xea\xff\x14\x29\x3e\x53"
4431                         "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb"
4432                         "\x10\x25\x3a\x4f\x64\x79\x8e\xa3"
4433                         "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b"
4434                         "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3"
4435                         "\x08\x1d\x32\x47\x5c\x71\x86\x9b"
4436                         "\xb0\xc5\xda\xef\x04\x19\x2e\x43"
4437                         "\x58\x6d\x82\x97\xac\xc1\xd6\xeb"
4438                         "\x00\x17\x2e\x45\x5c\x73\x8a\xa1"
4439                         "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59"
4440                         "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11"
4441                         "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9"
4442                         "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81"
4443                         "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39"
4444                         "\x50\x67\x7e\x95\xac\xc3\xda\xf1"
4445                         "\x08\x1f\x36\x4d\x64\x7b\x92\xa9"
4446                         "\xc0\xd7\xee\x05\x1c\x33\x4a\x61"
4447                         "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19"
4448                         "\x30\x47\x5e\x75\x8c\xa3\xba\xd1"
4449                         "\xe8\xff\x16\x2d\x44\x5b\x72\x89"
4450                         "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41"
4451                         "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9"
4452                         "\x10\x27\x3e\x55\x6c\x83\x9a\xb1"
4453                         "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69"
4454                         "\x80\x97\xae\xc5\xdc\xf3\x0a\x21"
4455                         "\x38\x4f\x66\x7d\x94\xab\xc2\xd9"
4456                         "\xf0\x07\x1e\x35\x4c\x63\x7a\x91"
4457                         "\xa8\xbf\xd6\xed\x04\x1b\x32\x49"
4458                         "\x60\x77\x8e\xa5\xbc\xd3\xea\x01"
4459                         "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9"
4460                         "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71"
4461                         "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29"
4462                         "\x40\x57\x6e\x85\x9c\xb3\xca\xe1"
4463                         "\xf8\x0f\x26\x3d\x54\x6b\x82\x99"
4464                         "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51"
4465                         "\x68\x7f\x96\xad\xc4\xdb\xf2\x09"
4466                         "\x20\x37\x4e\x65\x7c\x93\xaa\xc1"
4467                         "\xd8\xef\x06\x1d\x34\x4b\x62\x79"
4468                         "\x90\xa7\xbe\xd5\xec\x03\x1a\x31"
4469                         "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9"
4470                         "\x00\x19\x32\x4b\x64\x7d\x96\xaf"
4471                         "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77"
4472                         "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f"
4473                         "\x58\x71\x8a\xa3\xbc\xd5\xee\x07"
4474                         "\x20\x39\x52\x6b\x84\x9d\xb6\xcf"
4475                         "\xe8\x01\x1a\x33\x4c\x65\x7e\x97"
4476                         "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f"
4477                         "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27"
4478                         "\x40\x59\x72\x8b\xa4\xbd\xd6\xef"
4479                         "\x08\x21\x3a\x53\x6c\x85\x9e\xb7"
4480                         "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f"
4481                         "\x98\xb1\xca\xe3\xfc\x15\x2e\x47"
4482                         "\x60\x79\x92\xab\xc4\xdd\xf6\x0f"
4483                         "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7"
4484                         "\xf0\x09\x22\x3b\x54\x6d\x86\x9f"
4485                         "\xb8\xd1\xea\x03\x1c\x35\x4e\x67"
4486                         "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f"
4487                         "\x48\x61\x7a\x93\xac\xc5\xde\xf7"
4488                         "\x10\x29\x42\x5b\x74\x8d\xa6\xbf"
4489                         "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87"
4490                         "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f"
4491                         "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17"
4492                         "\x30\x49\x62\x7b\x94\xad\xc6\xdf"
4493                         "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7"
4494                         "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f"
4495                         "\x88\xa1\xba\xd3\xec\x05\x1e\x37"
4496                         "\x50\x69\x82\x9b\xb4\xcd\xe6\xff"
4497                         "\x18\x31\x4a\x63\x7c\x95\xae\xc7"
4498                         "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f"
4499                         "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57"
4500                         "\x70\x89\xa2\xbb\xd4\xed\x06\x1f"
4501                         "\x38\x51\x6a\x83\x9c\xb5\xce\xe7"
4502                         "\x00\x1b\x36\x51\x6c\x87\xa2\xbd"
4503                         "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95"
4504                         "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d"
4505                         "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45"
4506                         "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d"
4507                         "\x38\x53\x6e\x89\xa4\xbf\xda\xf5"
4508                         "\x10\x2b\x46\x61\x7c\x97\xb2\xcd"
4509                         "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5"
4510                         "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d"
4511                         "\x98\xb3\xce\xe9\x04\x1f\x3a\x55"
4512                         "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d"
4513                         "\x48\x63\x7e\x99\xb4\xcf\xea\x05"
4514                         "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd"
4515                         "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5"
4516                         "\xd0\xeb\x06\x21\x3c\x57\x72\x8d"
4517                         "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65"
4518                         "\x80\x9b\xb6\xd1\xec\x07\x22\x3d"
4519                         "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15"
4520                         "\x30\x4b\x66\x81\x9c\xb7\xd2\xed"
4521                         "\x08\x23\x3e\x59\x74\x8f\xaa\xc5"
4522                         "\xe0\xfb\x16\x31\x4c\x67\x82\x9d"
4523                         "\xb8\xd3\xee\x09\x24\x3f\x5a\x75"
4524                         "\x90\xab\xc6\xe1\xfc\x17\x32\x4d"
4525                         "\x68\x83\x9e\xb9\xd4\xef\x0a\x25"
4526                         "\x40\x5b\x76\x91\xac\xc7\xe2\xfd"
4527                         "\x18\x33\x4e\x69\x84\x9f\xba\xd5"
4528                         "\xf0\x0b\x26\x41\x5c\x77\x92\xad"
4529                         "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85"
4530                         "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d"
4531                         "\x78\x93\xae\xc9\xe4\xff\x1a\x35"
4532                         "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d"
4533                         "\x28\x43\x5e\x79\x94\xaf\xca\xe5"
4534                         "\x00\x1d\x3a\x57\x74\x91\xae\xcb"
4535                         "\xe8\x05\x22\x3f\x5c\x79\x96\xb3"
4536                         "\xd0\xed\x0a\x27\x44\x61\x7e\x9b"
4537                         "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83"
4538                         "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b"
4539                         "\x88\xa5\xc2\xdf\xfc\x19\x36\x53"
4540                         "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b"
4541                         "\x58\x75\x92\xaf\xcc\xe9\x06\x23"
4542                         "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b"
4543                         "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3"
4544                         "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb"
4545                         "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3"
4546                         "\xe0\xfd\x1a\x37\x54\x71\x8e\xab"
4547                         "\xc8\xe5\x02\x1f\x3c\x59\x76\x93"
4548                         "\xb0\xcd\xea\x07\x24\x41\x5e\x7b"
4549                         "\x98\xb5\xd2\xef\x0c\x29\x46\x63"
4550                         "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b"
4551                         "\x68\x85\xa2\xbf\xdc\xf9\x16\x33"
4552                         "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b"
4553                         "\x38\x55\x72\x8f\xac\xc9\xe6\x03"
4554                         "\x20\x3d\x5a\x77\x94\xb1\xce\xeb"
4555                         "\x08\x25\x42\x5f\x7c\x99\xb6\xd3"
4556                         "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb"
4557                         "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3"
4558                         "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b"
4559                         "\xa8\xc5\xe2\xff\x1c\x39\x56\x73"
4560                         "\x90\xad\xca\xe7\x04\x21\x3e\x5b"
4561                         "\x78\x95\xb2\xcf\xec\x09\x26\x43"
4562                         "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b"
4563                         "\x48\x65\x82\x9f\xbc\xd9\xf6\x13"
4564                         "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb"
4565                         "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3"
4566                         "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9"
4567                         "\xf8\x17\x36\x55\x74\x93\xb2\xd1"
4568                         "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9"
4569                         "\xe8\x07\x26\x45\x64\x83\xa2\xc1"
4570                         "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9"
4571                         "\xd8\xf7\x16\x35\x54\x73\x92\xb1"
4572                         "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9"
4573                         "\xc8\xe7\x06\x25\x44\x63\x82\xa1"
4574                         "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99"
4575                         "\xb8\xd7\xf6\x15\x34\x53\x72\x91"
4576                         "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89"
4577                         "\xa8\xc7\xe6\x05\x24\x43\x62\x81"
4578                         "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79"
4579                         "\x98\xb7\xd6\xf5\x14\x33\x52\x71"
4580                         "\x90\xaf\xce\xed\x0c\x2b\x4a\x69"
4581                         "\x88\xa7\xc6\xe5\x04\x23\x42\x61"
4582                         "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59"
4583                         "\x78\x97\xb6\xd5\xf4\x13\x32\x51"
4584                         "\x70\x8f\xae\xcd\xec\x0b\x2a\x49"
4585                         "\x68\x87\xa6\xc5\xe4\x03\x22\x41"
4586                         "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39"
4587                         "\x58\x77\x96\xb5\xd4\xf3\x12\x31"
4588                         "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29"
4589                         "\x48\x67\x86\xa5\xc4\xe3\x02\x21"
4590                         "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19"
4591                         "\x38\x57\x76\x95\xb4\xd3\xf2\x11"
4592                         "\x30\x4f\x6e\x8d\xac\xcb\xea\x09"
4593                         "\x28\x47\x66\x85\xa4\xc3\xe2\x01"
4594                         "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9"
4595                         "\x18\x37\x56\x75\x94\xb3\xd2\xf1"
4596                         "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9"
4597                         "\x08\x27\x46\x65\x84\xa3\xc2\xe1"
4598                         "\x00\x21\x42\x63",
4599                 .ilen = 4100,
4600                 .result =
4601                         "\xf0\x5c\x74\xad\x4e\xbc\x99\xe2"
4602                         "\xae\xff\x91\x3a\x44\xcf\x38\x32"
4603                         "\x1e\xad\xa7\xcd\xa1\x39\x95\xaa"
4604                         "\x10\xb1\xb3\x2e\x04\x31\x8f\x86"
4605                         "\xf2\x62\x74\x70\x0c\xa4\x46\x08"
4606                         "\xa8\xb7\x99\xa8\xe9\xd2\x73\x79"
4607                         "\x7e\x6e\xd4\x8f\x1e\xc7\x8e\x31"
4608                         "\x0b\xfa\x4b\xce\xfd\xf3\x57\x71"
4609                         "\xe9\x46\x03\xa5\x3d\x34\x00\xe2"
4610                         "\x18\xff\x75\x6d\x06\x2d\x00\xab"
4611                         "\xb9\x3e\x6c\x59\xc5\x84\x06\xb5"
4612                         "\x8b\xd0\x89\x9c\x4a\x79\x16\xc6"
4613                         "\x3d\x74\x54\xfa\x44\xcd\x23\x26"
4614                         "\x5c\xcf\x7e\x28\x92\x32\xbf\xdf"
4615                         "\xa7\x20\x3c\x74\x58\x2a\x9a\xde"
4616                         "\x61\x00\x1c\x4f\xff\x59\xc4\x22"
4617                         "\xac\x3c\xd0\xe8\x6c\xf9\x97\x1b"
4618                         "\x58\x9b\xad\x71\xe8\xa9\xb5\x0d"
4619                         "\xee\x2f\x04\x1f\x7f\xbc\x99\xee"
4620                         "\x84\xff\x42\x60\xdc\x3a\x18\xa5"
4621                         "\x81\xf9\xef\xdc\x7a\x0f\x65\x41"
4622                         "\x2f\xa3\xd3\xf9\xc2\xcb\xc0\x4d"
4623                         "\x8f\xd3\x76\x96\xad\x49\x6d\x38"
4624                         "\x3d\x39\x0b\x6c\x80\xb7\x54\x69"
4625                         "\xf0\x2c\x90\x02\x29\x0d\x1c\x12"
4626                         "\xad\x55\xc3\x8b\x68\xd9\xcc\xb3"
4627                         "\xb2\x64\x33\x90\x5e\xca\x4b\xe2"
4628                         "\xfb\x75\xdc\x63\xf7\x9f\x82\x74"
4629                         "\xf0\xc9\xaa\x7f\xe9\x2a\x9b\x33"
4630                         "\xbc\x88\x00\x7f\xca\xb2\x1f\x14"
4631                         "\xdb\xc5\x8e\x7b\x11\x3c\x3e\x08"
4632                         "\xf3\x83\xe8\xe0\x94\x86\x2e\x92"
4633                         "\x78\x6b\x01\xc9\xc7\x83\xba\x21"
4634                         "\x6a\x25\x15\x33\x4e\x45\x08\xec"
4635                         "\x35\xdb\xe0\x6e\x31\x51\x79\xa9"
4636                         "\x42\x44\x65\xc1\xa0\xf1\xf9\x2a"
4637                         "\x70\xd5\xb6\xc6\xc1\x8c\x39\xfc"
4638                         "\x25\xa6\x55\xd9\xdd\x2d\x4c\xec"
4639                         "\x49\xc6\xeb\x0e\xa8\x25\x2a\x16"
4640                         "\x1b\x66\x84\xda\xe2\x92\xe5\xc0"
4641                         "\xc8\x53\x07\xaf\x80\x84\xec\xfd"
4642                         "\xcd\xd1\x6e\xcd\x6f\x6a\xf5\x36"
4643                         "\xc5\x15\xe5\x25\x7d\x77\xd1\x1a"
4644                         "\x93\x36\xa9\xcf\x7c\xa4\x54\x4a"
4645                         "\x06\x51\x48\x4e\xf6\x59\x87\xd2"
4646                         "\x04\x02\xef\xd3\x44\xde\x76\x31"
4647                         "\xb3\x34\x17\x1b\x9d\x66\x11\x9f"
4648                         "\x1e\xcc\x17\xe9\xc7\x3c\x1b\xe7"
4649                         "\xcb\x50\x08\xfc\xdc\x2b\x24\xdb"
4650                         "\x65\x83\xd0\x3b\xe3\x30\xea\x94"
4651                         "\x6c\xe7\xe8\x35\x32\xc7\xdb\x64"
4652                         "\xb4\x01\xab\x36\x2c\x77\x13\xaf"
4653                         "\xf8\x2b\x88\x3f\x54\x39\xc4\x44"
4654                         "\xfe\xef\x6f\x68\x34\xbe\x0f\x05"
4655                         "\x16\x6d\xf6\x0a\x30\xe7\xe3\xed"
4656                         "\xc4\xde\x3c\x1b\x13\xd8\xdb\xfe"
4657                         "\x41\x62\xe5\x28\xd4\x8d\xa3\xc7"
4658                         "\x93\x97\xc6\x48\x45\x1d\x9f\x83"
4659                         "\xdf\x4b\x40\x3e\x42\x25\x87\x80"
4660                         "\x4c\x7d\xa8\xd4\x98\x23\x95\x75"
4661                         "\x41\x8c\xda\x41\x9b\xd4\xa7\x06"
4662                         "\xb5\xf1\x71\x09\x53\xbe\xca\xbf"
4663                         "\x32\x03\xed\xf0\x50\x1c\x56\x39"
4664                         "\x5b\xa4\x75\x18\xf7\x9b\x58\xef"
4665                         "\x53\xfc\x2a\x38\x23\x15\x75\xcd"
4666                         "\x45\xe5\x5a\x82\x55\xba\x21\xfa"
4667                         "\xd4\xbd\xc6\x94\x7c\xc5\x80\x12"
4668                         "\xf7\x4b\x32\xc4\x9a\x82\xd8\x28"
4669                         "\x8f\xd9\xc2\x0f\x60\x03\xbe\x5e"
4670                         "\x21\xd6\x5f\x58\xbf\x5c\xb1\x32"
4671                         "\x82\x8d\xa9\xe5\xf2\x66\x1a\xc0"
4672                         "\xa0\xbc\x58\x2f\x71\xf5\x2f\xed"
4673                         "\xd1\x26\xb9\xd8\x49\x5a\x07\x19"
4674                         "\x01\x7c\x59\xb0\xf8\xa4\xb7\xd3"
4675                         "\x7b\x1a\x8c\x38\xf4\x50\xa4\x59"
4676                         "\xb0\xcc\x41\x0b\x88\x7f\xe5\x31"
4677                         "\xb3\x42\xba\xa2\x7e\xd4\x32\x71"
4678                         "\x45\x87\x48\xa9\xc2\xf2\x89\xb3"
4679                         "\xe4\xa7\x7e\x52\x15\x61\xfa\xfe"
4680                         "\xc9\xdd\x81\xeb\x13\xab\xab\xc3"
4681                         "\x98\x59\xd8\x16\x3d\x14\x7a\x1c"
4682                         "\x3c\x41\x9a\x16\x16\x9b\xd2\xd2"
4683                         "\x69\x3a\x29\x23\xac\x86\x32\xa5"
4684                         "\x48\x9c\x9e\xf3\x47\x77\x81\x70"
4685                         "\x24\xe8\x85\xd2\xf5\xb5\xfa\xff"
4686                         "\x59\x6a\xd3\x50\x59\x43\x59\xde"
4687                         "\xd9\xf1\x55\xa5\x0c\xc3\x1a\x1a"
4688                         "\x18\x34\x0d\x1a\x63\x33\xed\x10"
4689                         "\xe0\x1d\x2a\x18\xd2\xc0\x54\xa8"
4690                         "\xca\xb5\x9a\xd3\xdd\xca\x45\x84"
4691                         "\x50\xe7\x0f\xfe\xa4\x99\x5a\xbe"
4692                         "\x43\x2d\x9a\xcb\x92\x3f\x5a\x1d"
4693                         "\x85\xd8\xc9\xdf\x68\xc9\x12\x80"
4694                         "\x56\x0c\xdc\x00\xdc\x3a\x7d\x9d"
4695                         "\xa3\xa2\xe8\x4d\xbf\xf9\x70\xa0"
4696                         "\xa4\x13\x4f\x6b\xaf\x0a\x89\x7f"
4697                         "\xda\xf0\xbf\x9b\xc8\x1d\xe5\xf8"
4698                         "\x2e\x8b\x07\xb5\x73\x1b\xcc\xa2"
4699                         "\xa6\xad\x30\xbc\x78\x3c\x5b\x10"
4700                         "\xfa\x5e\x62\x2d\x9e\x64\xb3\x33"
4701                         "\xce\xf9\x1f\x86\xe7\x8b\xa2\xb8"
4702                         "\xe8\x99\x57\x8c\x11\xed\x66\xd9"
4703                         "\x3c\x72\xb9\xc3\xe6\x4e\x17\x3a"
4704                         "\x6a\xcb\x42\x24\x06\xed\x3e\x4e"
4705                         "\xa3\xe8\x6a\x94\xda\x0d\x4e\xd5"
4706                         "\x14\x19\xcf\xb6\x26\xd8\x2e\xcc"
4707                         "\x64\x76\x38\x49\x4d\xfe\x30\x6d"
4708                         "\xe4\xc8\x8c\x7b\xc4\xe0\x35\xba"
4709                         "\x22\x6e\x76\xe1\x1a\xf2\x53\xc3"
4710                         "\x28\xa2\x82\x1f\x61\x69\xad\xc1"
4711                         "\x7b\x28\x4b\x1e\x6c\x85\x95\x9b"
4712                         "\x51\xb5\x17\x7f\x12\x69\x8c\x24"
4713                         "\xd5\xc7\x5a\x5a\x11\x54\xff\x5a"
4714                         "\xf7\x16\xc3\x91\xa6\xf0\xdc\x0a"
4715                         "\xb6\xa7\x4a\x0d\x7a\x58\xfe\xa5"
4716                         "\xf5\xcb\x8f\x7b\x0e\xea\x57\xe7"
4717                         "\xbd\x79\xd6\x1c\x88\x23\x6c\xf2"
4718                         "\x4d\x29\x77\x53\x35\x6a\x00\x8d"
4719                         "\xcd\xa3\x58\xbe\x77\x99\x18\xf8"
4720                         "\xe6\xe1\x8f\xe9\x37\x8f\xe3\xe2"
4721                         "\x5a\x8a\x93\x25\xaf\xf3\x78\x80"
4722                         "\xbe\xa6\x1b\xc6\xac\x8b\x1c\x91"
4723                         "\x58\xe1\x9f\x89\x35\x9d\x1d\x21"
4724                         "\x29\x9f\xf4\x99\x02\x27\x0f\xa8"
4725                         "\x4f\x79\x94\x2b\x33\x2c\xda\xa2"
4726                         "\x26\x39\x83\x94\xef\x27\xd8\x53"
4727                         "\x8f\x66\x0d\xe4\x41\x7d\x34\xcd"
4728                         "\x43\x7c\x95\x0a\x53\xef\x66\xda"
4729                         "\x7e\x9b\xf3\x93\xaf\xd0\x73\x71"
4730                         "\xba\x40\x9b\x74\xf8\xd7\xd7\x41"
4731                         "\x6d\xaf\x72\x9c\x8d\x21\x87\x3c"
4732                         "\xfd\x0a\x90\xa9\x47\x96\x9e\xd3"
4733                         "\x88\xee\x73\xcf\x66\x2f\x52\x56"
4734                         "\x6d\xa9\x80\x4c\xe2\x6f\x62\x88"
4735                         "\x3f\x0e\x54\x17\x48\x80\x5d\xd3"
4736                         "\xc3\xda\x25\x3d\xa1\xc8\xcb\x9f"
4737                         "\x9b\x70\xb3\xa1\xeb\x04\x52\xa1"
4738                         "\xf2\x22\x0f\xfc\xc8\x18\xfa\xf9"
4739                         "\x85\x9c\xf1\xac\xeb\x0c\x02\x46"
4740                         "\x75\xd2\xf5\x2c\xe3\xd2\x59\x94"
4741                         "\x12\xf3\x3c\xfc\xd7\x92\xfa\x36"
4742                         "\xba\x61\x34\x38\x7c\xda\x48\x3e"
4743                         "\x08\xc9\x39\x23\x5e\x02\x2c\x1a"
4744                         "\x18\x7e\xb4\xd9\xfd\x9e\x40\x02"
4745                         "\xb1\x33\x37\x32\xe7\xde\xd6\xd0"
4746                         "\x7c\x58\x65\x4b\xf8\x34\x27\x9c"
4747                         "\x44\xb4\xbd\xe9\xe9\x4c\x78\x7d"
4748                         "\x4b\x9f\xce\xb1\xcd\x47\xa5\x37"
4749                         "\xe5\x6d\xbd\xb9\x43\x94\x0a\xd4"
4750                         "\xd6\xf9\x04\x5f\xb5\x66\x6c\x1a"
4751                         "\x35\x12\xe3\x36\x28\x27\x36\x58"
4752                         "\x01\x2b\x79\xe4\xba\x6d\x10\x7d"
4753                         "\x65\xdf\x84\x95\xf4\xd5\xb6\x8f"
4754                         "\x2b\x9f\x96\x00\x86\x60\xf0\x21"
4755                         "\x76\xa8\x6a\x8c\x28\x1c\xb3\x6b"
4756                         "\x97\xd7\xb6\x53\x2a\xcc\xab\x40"
4757                         "\x9d\x62\x79\x58\x52\xe6\x65\xb7"
4758                         "\xab\x55\x67\x9c\x89\x7c\x03\xb0"
4759                         "\x73\x59\xc5\x81\xf5\x18\x17\x5c"
4760                         "\x89\xf3\x78\x35\x44\x62\x78\x72"
4761                         "\xd0\x96\xeb\x31\xe7\x87\x77\x14"
4762                         "\x99\x51\xf2\x59\x26\x9e\xb5\xa6"
4763                         "\x45\xfe\x6e\xbd\x07\x4c\x94\x5a"
4764                         "\xa5\x7d\xfc\xf1\x2b\x77\xe2\xfe"
4765                         "\x17\xd4\x84\xa0\xac\xb5\xc7\xda"
4766                         "\xa9\x1a\xb6\xf3\x74\x11\xb4\x9d"
4767                         "\xfb\x79\x2e\x04\x2d\x50\x28\x83"
4768                         "\xbf\xc6\x52\xd3\x34\xd6\xe8\x7a"
4769                         "\xb6\xea\xe7\xa8\x6c\x15\x1e\x2c"
4770                         "\x57\xbc\x48\x4e\x5f\x5c\xb6\x92"
4771                         "\xd2\x49\x77\x81\x6d\x90\x70\xae"
4772                         "\x98\xa1\x03\x0d\x6b\xb9\x77\x14"
4773                         "\xf1\x4e\x23\xd3\xf8\x68\xbd\xc2"
4774                         "\xfe\x04\xb7\x5c\xc5\x17\x60\x8f"
4775                         "\x65\x54\xa4\x7a\x42\xdc\x18\x0d"
4776                         "\xb5\xcf\x0f\xd3\xc7\x91\x66\x1b"
4777                         "\x45\x42\x27\x75\x50\xe5\xee\xb8"
4778                         "\x7f\x33\x2c\xba\x4a\x92\x4d\x2c"
4779                         "\x3c\xe3\x0d\x80\x01\xba\x0d\x29"
4780                         "\xd8\x3c\xe9\x13\x16\x57\xe6\xea"
4781                         "\x94\x52\xe7\x00\x4d\x30\xb0\x0f"
4782                         "\x35\xb8\xb8\xa7\xb1\xb5\x3b\x44"
4783                         "\xe1\x2f\xfd\x88\xed\x43\xe7\x52"
4784                         "\x10\x93\xb3\x8a\x30\x6b\x0a\xf7"
4785                         "\x23\xc6\x50\x9d\x4a\xb0\xde\xc3"
4786                         "\xdc\x9b\x2f\x01\x56\x36\x09\xc5"
4787                         "\x2f\x6b\xfe\xf1\xd8\x27\x45\x03"
4788                         "\x30\x5e\x5c\x5b\xb4\x62\x0e\x1a"
4789                         "\xa9\x21\x2b\x92\x94\x87\x62\x57"
4790                         "\x4c\x10\x74\x1a\xf1\x0a\xc5\x84"
4791                         "\x3b\x9e\x72\x02\xd7\xcc\x09\x56"
4792                         "\xbd\x54\xc1\xf0\xc3\xe3\xb3\xf8"
4793                         "\xd2\x0d\x61\xcb\xef\xce\x0d\x05"
4794                         "\xb0\x98\xd9\x8e\x4f\xf9\xbc\x93"
4795                         "\xa6\xea\xc8\xcf\x10\x53\x4b\xf1"
4796                         "\xec\xfc\x89\xf9\x64\xb0\x22\xbf"
4797                         "\x9e\x55\x46\x9f\x7c\x50\x8e\x84"
4798                         "\x54\x20\x98\xd7\x6c\x40\x1e\xdb"
4799                         "\x69\x34\x78\x61\x24\x21\x9c\x8a"
4800                         "\xb3\x62\x31\x8b\x6e\xf5\x2a\x35"
4801                         "\x86\x13\xb1\x6c\x64\x2e\x41\xa5"
4802                         "\x05\xf2\x42\xba\xd2\x3a\x0d\x8e"
4803                         "\x8a\x59\x94\x3c\xcf\x36\x27\x82"
4804                         "\xc2\x45\xee\x58\xcd\x88\xb4\xec"
4805                         "\xde\xb2\x96\x0a\xaf\x38\x6f\x88"
4806                         "\xd7\xd8\xe1\xdf\xb9\x96\xa9\x0a"
4807                         "\xb1\x95\x28\x86\x20\xe9\x17\x49"
4808                         "\xa2\x29\x38\xaa\xa5\xe9\x6e\xf1"
4809                         "\x19\x27\xc0\xd5\x2a\x22\xc3\x0b"
4810                         "\xdb\x7c\x73\x10\xb9\xba\x89\x76"
4811                         "\x54\xae\x7d\x71\xb3\x93\xf6\x32"
4812                         "\xe6\x47\x43\x55\xac\xa0\x0d\xc2"
4813                         "\x93\x27\x4a\x8e\x0e\x74\x15\xc7"
4814                         "\x0b\x85\xd9\x0c\xa9\x30\x7a\x3e"
4815                         "\xea\x8f\x85\x6d\x3a\x12\x4f\x72"
4816                         "\x69\x58\x7a\x80\xbb\xb5\x97\xf3"
4817                         "\xcf\x70\xd2\x5d\xdd\x4d\x21\x79"
4818                         "\x54\x4d\xe4\x05\xe8\xbd\xc2\x62"
4819                         "\xb1\x3b\x77\x1c\xd6\x5c\xf3\xa0"
4820                         "\x79\x00\xa8\x6c\x29\xd9\x18\x24"
4821                         "\x36\xa2\x46\xc0\x96\x65\x7f\xbd"
4822                         "\x2a\xed\x36\x16\x0c\xaa\x9f\xf4"
4823                         "\xc5\xb4\xe2\x12\xed\x69\xed\x4f"
4824                         "\x26\x2c\x39\x52\x89\x98\xe7\x2c"
4825                         "\x99\xa4\x9e\xa3\x9b\x99\x46\x7a"
4826                         "\x3a\xdc\xa8\x59\xa3\xdb\xc3\x3b"
4827                         "\x95\x0d\x3b\x09\x6e\xee\x83\x5d"
4828                         "\x32\x4d\xed\xab\xfa\x98\x14\x4e"
4829                         "\xc3\x15\x45\x53\x61\xc4\x93\xbd"
4830                         "\x90\xf4\x99\x95\x4c\xe6\x76\x92"
4831                         "\x29\x90\x46\x30\x92\x69\x7d\x13"
4832                         "\xf2\xa5\xcd\x69\x49\x44\xb2\x0f"
4833                         "\x63\x40\x36\x5f\x09\xe2\x78\xf8"
4834                         "\x91\xe3\xe2\xfa\x10\xf7\xc8\x24"
4835                         "\xa8\x89\x32\x5c\x37\x25\x1d\xb2"
4836                         "\xea\x17\x8a\x0a\xa9\x64\xc3\x7c"
4837                         "\x3c\x7c\xbd\xc6\x79\x34\xe7\xe2"
4838                         "\x85\x8e\xbf\xf8\xde\x92\xa0\xae"
4839                         "\x20\xc4\xf6\xbb\x1f\x38\x19\x0e"
4840                         "\xe8\x79\x9c\xa1\x23\xe9\x54\x7e"
4841                         "\x37\x2f\xe2\x94\x32\xaf\xa0\x23"
4842                         "\x49\xe4\xc0\xb3\xac\x00\x8f\x36"
4843                         "\x05\xc4\xa6\x96\xec\x05\x98\x4f"
4844                         "\x96\x67\x57\x1f\x20\x86\x1b\x2d"
4845                         "\x69\xe4\x29\x93\x66\x5f\xaf\x6b"
4846                         "\x88\x26\x2c\x67\x02\x4b\x52\xd0"
4847                         "\x83\x7a\x43\x1f\xc0\x71\x15\x25"
4848                         "\x77\x65\x08\x60\x11\x76\x4c\x8d"
4849                         "\xed\xa9\x27\xc6\xb1\x2a\x2c\x6a"
4850                         "\x4a\x97\xf5\xc6\xb7\x70\x42\xd3"
4851                         "\x03\xd1\x24\x95\xec\x6d\xab\x38"
4852                         "\x72\xce\xe2\x8b\x33\xd7\x51\x09"
4853                         "\xdc\x45\xe0\x09\x96\x32\xf3\xc4"
4854                         "\x84\xdc\x73\x73\x2d\x1b\x11\x98"
4855                         "\xc5\x0e\x69\x28\x94\xc7\xb5\x4d"
4856                         "\xc8\x8a\xd0\xaa\x13\x2e\x18\x74"
4857                         "\xdd\xd1\x1e\xf3\x90\xe8\xfc\x9a"
4858                         "\x72\x4a\x0e\xd1\xe4\xfb\x0d\x96"
4859                         "\xd1\x0c\x79\x85\x1b\x1c\xfe\xe1"
4860                         "\x62\x8f\x7a\x73\x32\xab\xc8\x18"
4861                         "\x69\xe3\x34\x30\xdf\x13\xa6\xe5"
4862                         "\xe8\x0e\x67\x7f\x81\x11\xb4\x60"
4863                         "\xc7\xbd\x79\x65\x50\xdc\xc4\x5b"
4864                         "\xde\x39\xa4\x01\x72\x63\xf3\xd1"
4865                         "\x64\x4e\xdf\xfc\x27\x92\x37\x0d"
4866                         "\x57\xcd\x11\x4f\x11\x04\x8e\x1d"
4867                         "\x16\xf7\xcd\x92\x9a\x99\x30\x14"
4868                         "\xf1\x7c\x67\x1b\x1f\x41\x0b\xe8"
4869                         "\x32\xe8\xb8\xc1\x4f\x54\x86\x4f"
4870                         "\xe5\x79\x81\x73\xcd\x43\x59\x68"
4871                         "\x73\x02\x3b\x78\x21\x72\x43\x00"
4872                         "\x49\x17\xf7\x00\xaf\x68\x24\x53"
4873                         "\x05\x0a\xc3\x33\xe0\x33\x3f\x69"
4874                         "\xd2\x84\x2f\x0b\xed\xde\x04\xf4"
4875                         "\x11\x94\x13\x69\x51\x09\x28\xde"
4876                         "\x57\x5c\xef\xdc\x9a\x49\x1c\x17"
4877                         "\x97\xf3\x96\xc1\x7f\x5d\x2e\x7d"
4878                         "\x55\xb8\xb3\x02\x09\xb3\x1f\xe7"
4879                         "\xc9\x8d\xa3\x36\x34\x8a\x77\x13"
4880                         "\x30\x63\x4c\xa5\xcd\xc3\xe0\x7e"
4881                         "\x05\xa1\x7b\x0c\xcb\x74\x47\x31"
4882                         "\x62\x03\x43\xf1\x87\xb4\xb0\x85"
4883                         "\x87\x8e\x4b\x25\xc7\xcf\xae\x4b"
4884                         "\x36\x46\x3e\x62\xbc\x6f\xeb\x5f"
4885                         "\x73\xac\xe6\x07\xee\xc1\xa1\xd6"
4886                         "\xc4\xab\xc9\xd6\x89\x45\xe1\xf1"
4887                         "\x04\x4e\x1a\x6f\xbb\x4f\x3a\xa3"
4888                         "\xa0\xcb\xa3\x0a\xd8\x71\x35\x55"
4889                         "\xe4\xbc\x2e\x04\x06\xe6\xff\x5b"
4890                         "\x1c\xc0\x11\x7c\xc5\x17\xf3\x38"
4891                         "\xcf\xe9\xba\x0f\x0e\xef\x02\xc2"
4892                         "\x8d\xc6\xbc\x4b\x67\x20\x95\xd7"
4893                         "\x2c\x45\x5b\x86\x44\x8c\x6f\x2e"
4894                         "\x7e\x9f\x1c\x77\xba\x6b\x0e\xa3"
4895                         "\x69\xdc\xab\x24\x57\x60\x47\xc1"
4896                         "\xd1\xa5\x9d\x23\xe6\xb1\x37\xfe"
4897                         "\x93\xd2\x4c\x46\xf9\x0c\xc6\xfb"
4898                         "\xd6\x9d\x99\x69\xab\x7a\x07\x0c"
4899                         "\x65\xe7\xc4\x08\x96\xe2\xa5\x01"
4900                         "\x3f\x46\x07\x05\x7e\xe8\x9a\x90"
4901                         "\x50\xdc\xe9\x7a\xea\xa1\x39\x6e"
4902                         "\x66\xe4\x6f\xa5\x5f\xb2\xd9\x5b"
4903                         "\xf5\xdb\x2a\x32\xf0\x11\x6f\x7c"
4904                         "\x26\x10\x8f\x3d\x80\xe9\x58\xf7"
4905                         "\xe0\xa8\x57\xf8\xdb\x0e\xce\x99"
4906                         "\x63\x19\x3d\xd5\xec\x1b\x77\x69"
4907                         "\x98\xf6\xe4\x5f\x67\x17\x4b\x09"
4908                         "\x85\x62\x82\x70\x18\xe2\x9a\x78"
4909                         "\xe2\x62\xbd\xb4\xf1\x42\xc6\xfb"
4910                         "\x08\xd0\xbd\xeb\x4e\x09\xf2\xc8"
4911                         "\x1e\xdc\x3d\x32\x21\x56\x9c\x4f"
4912                         "\x35\xf3\x61\x06\x72\x84\xc4\x32"
4913                         "\xf2\xf1\xfa\x0b\x2f\xc3\xdb\x02"
4914                         "\x04\xc2\xde\x57\x64\x60\x8d\xcf"
4915                         "\xcb\x86\x5d\x97\x3e\xb1\x9c\x01"
4916                         "\xd6\x28\x8f\x99\xbc\x46\xeb\x05"
4917                         "\xaf\x7e\xb8\x21\x2a\x56\x85\x1c"
4918                         "\xb3\x71\xa0\xde\xca\x96\xf1\x78"
4919                         "\x49\xa2\x99\x81\x80\x5c\x01\xf5"
4920                         "\xa0\xa2\x56\x63\xe2\x70\x07\xa5"
4921                         "\x95\xd6\x85\xeb\x36\x9e\xa9\x51"
4922                         "\x66\x56\x5f\x1d\x02\x19\xe2\xf6"
4923                         "\x4f\x73\x38\x09\x75\x64\x48\xe0"
4924                         "\xf1\x7e\x0e\xe8\x9d\xf9\xed\x94"
4925                         "\xfe\x16\x26\x62\x49\x74\xf4\xb0"
4926                         "\xd4\xa9\x6c\xb0\xfd\x53\xe9\x81"
4927                         "\xe0\x7a\xbf\xcf\xb5\xc4\x01\x81"
4928                         "\x79\x99\x77\x01\x3b\xe9\xa2\xb6"
4929                         "\xe6\x6a\x8a\x9e\x56\x1c\x8d\x1e"
4930                         "\x8f\x06\x55\x2c\x6c\xdc\x92\x87"
4931                         "\x64\x3b\x4b\x19\xa1\x13\x64\x1d"
4932                         "\x4a\xe9\xc0\x00\xb8\x95\xef\x6b"
4933                         "\x1a\x86\x6d\x37\x52\x02\xc2\xe0"
4934                         "\xc8\xbb\x42\x0c\x02\x21\x4a\xc9"
4935                         "\xef\xa0\x54\xe4\x5e\x16\x53\x81"
4936                         "\x70\x62\x10\xaf\xde\xb8\xb5\xd3"
4937                         "\xe8\x5e\x6c\xc3\x8a\x3e\x18\x07"
4938                         "\xf2\x2f\x7d\xa7\xe1\x3d\x4e\xb4"
4939                         "\x26\xa7\xa3\x93\x86\xb2\x04\x1e"
4940                         "\x53\x5d\x86\xd6\xde\x65\xca\xe3"
4941                         "\x4e\xc1\xcf\xef\xc8\x70\x1b\x83"
4942                         "\x13\xdd\x18\x8b\x0d\x76\xd2\xf6"
4943                         "\x37\x7a\x93\x7a\x50\x11\x9f\x96"
4944                         "\x86\x25\xfd\xac\xdc\xbe\x18\x93"
4945                         "\x19\x6b\xec\x58\x4f\xb9\x75\xa7"
4946                         "\xdd\x3f\x2f\xec\xc8\x5a\x84\xab"
4947                         "\xd5\xe4\x8a\x07\xf6\x4d\x23\xd6"
4948                         "\x03\xfb\x03\x6a\xea\x66\xbf\xd4"
4949                         "\xb1\x34\xfb\x78\xe9\x55\xdc\x7c"
4950                         "\x3d\x9c\xe5\x9a\xac\xc3\x7a\x80"
4951                         "\x24\x6d\xa0\xef\x25\x7c\xb7\xea"
4952                         "\xce\x4d\x5f\x18\x60\xce\x87\x22"
4953                         "\x66\x2f\xd5\xdd\xdd\x02\x21\x75"
4954                         "\x82\xa0\x1f\x58\xc6\xd3\x62\xf7"
4955                         "\x32\xd8\xaf\x1e\x07\x77\x51\x96"
4956                         "\xd5\x6b\x1e\x7e\x80\x02\xe8\x67"
4957                         "\xea\x17\x0b\x10\xd2\x3f\x28\x25"
4958                         "\x4f\x05\x77\x02\x14\x69\xf0\x2c"
4959                         "\xbe\x0c\xf1\x74\x30\xd1\xb9\x9b"
4960                         "\xfc\x8c\xbb\x04\x16\xd9\xba\xc3"
4961                         "\xbc\x91\x8a\xc4\x30\xa4\xb0\x12"
4962                         "\x4c\x21\x87\xcb\xc9\x1d\x16\x96"
4963                         "\x07\x6f\x23\x54\xb9\x6f\x79\xe5"
4964                         "\x64\xc0\x64\xda\xb1\xae\xdd\x60"
4965                         "\x6c\x1a\x9d\xd3\x04\x8e\x45\xb0"
4966                         "\x92\x61\xd0\x48\x81\xed\x5e\x1d"
4967                         "\xa0\xc9\xa4\x33\xc7\x13\x51\x5d"
4968                         "\x7f\x83\x73\xb6\x70\x18\x65\x3e"
4969                         "\x2f\x0e\x7a\x12\x39\x98\xab\xd8"
4970                         "\x7e\x6f\xa3\xd1\xba\x56\xad\xbd"
4971                         "\xf0\x03\x01\x1c\x85\x35\x9f\xeb"
4972                         "\x19\x63\xa1\xaf\xfe\x2d\x35\x50"
4973                         "\x39\xa0\x65\x7c\x95\x7e\x6b\xfe"
4974                         "\xc1\xac\x07\x7c\x98\x4f\xbe\x57"
4975                         "\xa7\x22\xec\xe2\x7e\x29\x09\x53"
4976                         "\xe8\xbf\xb4\x7e\x3f\x8f\xfc\x14"
4977                         "\xce\x54\xf9\x18\x58\xb5\xff\x44"
4978                         "\x05\x9d\xce\x1b\xb6\x82\x23\xc8"
4979                         "\x2e\xbc\x69\xbb\x4a\x29\x0f\x65"
4980                         "\x94\xf0\x63\x06\x0e\xef\x8c\xbd"
4981                         "\xff\xfd\xb0\x21\x6e\x57\x05\x75"
4982                         "\xda\xd5\xc4\xeb\x8d\x32\xf7\x50"
4983                         "\xd3\x6f\x22\xed\x5f\x8e\xa2\x5b"
4984                         "\x80\x8c\xc8\x78\x40\x24\x4b\x89"
4985                         "\x30\xce\x7a\x97\x0e\xc4\xaf\xef"
4986                         "\x9b\xb4\xcd\x66\x74\x14\x04\x2b"
4987                         "\xf7\xce\x0b\x1c\x6e\xc2\x78\x8c"
4988                         "\xca\xc5\xd0\x1c\x95\x4a\x91\x2d"
4989                         "\xa7\x20\xeb\x86\x52\xb7\x67\xd8"
4990                         "\x0c\xd6\x04\x14\xde\x51\x74\x75"
4991                         "\xe7\x11\xb4\x87\xa3\x3d\x2d\xad"
4992                         "\x4f\xef\xa0\x0f\x70\x00\x6d\x13"
4993                         "\x19\x1d\x41\x50\xe9\xd8\xf0\x32"
4994                         "\x71\xbc\xd3\x11\xf2\xac\xbe\xaf"
4995                         "\x75\x46\x65\x4e\x07\x34\x37\xa3"
4996                         "\x89\xfe\x75\xd4\x70\x4c\xc6\x3f"
4997                         "\x69\x24\x0e\x38\x67\x43\x8c\xde"
4998                         "\x06\xb5\xb8\xe7\xc4\xf0\x41\x8f"
4999                         "\xf0\xbd\x2f\x0b\xb9\x18\xf8\xde"
5000                         "\x64\xb1\xdb\xee\x00\x50\x77\xe1"
5001                         "\xc7\xff\xa6\xfa\xdd\x70\xf4\xe3"
5002                         "\x93\xe9\x77\x35\x3d\x4b\x2f\x2b"
5003                         "\x6d\x55\xf0\xfc\x88\x54\x4e\x89"
5004                         "\xc1\x8a\x23\x31\x2d\x14\x2a\xb8"
5005                         "\x1b\x15\xdd\x9e\x6e\x7b\xda\x05"
5006                         "\x91\x7d\x62\x64\x96\x72\xde\xfc"
5007                         "\xc1\xec\xf0\x23\x51\x6f\xdb\x5b"
5008                         "\x1d\x08\x57\xce\x09\xb8\xf6\xcd"
5009                         "\x8d\x95\xf2\x20\xbf\x0f\x20\x57"
5010                         "\x98\x81\x84\x4f\x15\x5c\x76\xe7"
5011                         "\x3e\x0a\x3a\x6c\xc4\x8a\xbe\x78"
5012                         "\x74\x77\xc3\x09\x4b\x5d\x48\xe4"
5013                         "\xc8\xcb\x0b\xea\x17\x28\xcf\xcf"
5014                         "\x31\x32\x44\xa4\xe5\x0e\x1a\x98"
5015                         "\x94\xc4\xf0\xff\xae\x3e\x44\xe8"
5016                         "\xa5\xb3\xb5\x37\x2f\xe8\xaf\x6f"
5017                         "\x28\xc1\x37\x5f\x31\xd2\xb9\x33"
5018                         "\xb1\xb2\x52\x94\x75\x2c\x29\x59"
5019                         "\x06\xc2\x25\xe8\x71\x65\x4e\xed"
5020                         "\xc0\x9c\xb1\xbb\x25\xdc\x6c\xe7"
5021                         "\x4b\xa5\x7a\x54\x7a\x60\xff\x7a"
5022                         "\xe0\x50\x40\x96\x35\x63\xe4\x0b"
5023                         "\x76\xbd\xa4\x65\x00\x1b\x57\x88"
5024                         "\xae\xed\x39\x88\x42\x11\x3c\xed"
5025                         "\x85\x67\x7d\xb9\x68\x82\xe9\x43"
5026                         "\x3c\x47\x53\xfa\xe8\xf8\x9f\x1f"
5027                         "\x9f\xef\x0f\xf7\x30\xd9\x30\x0e"
5028                         "\xb9\x9f\x69\x18\x2f\x7e\xf8\xf8"
5029                         "\xf8\x8c\x0f\xd4\x02\x4d\xea\xcd"
5030                         "\x0a\x9c\x6f\x71\x6d\x5a\x4c\x60"
5031                         "\xce\x20\x56\x32\xc6\xc5\x99\x1f"
5032                         "\x09\xe6\x4e\x18\x1a\x15\x13\xa8"
5033                         "\x7d\xb1\x6b\xc0\xb2\x6d\xf8\x26"
5034                         "\x66\xf8\x3d\x18\x74\x70\x66\x7a"
5035                         "\x34\x17\xde\xba\x47\xf1\x06\x18"
5036                         "\xcb\xaf\xeb\x4a\x1e\x8f\xa7\x77"
5037                         "\xe0\x3b\x78\x62\x66\xc9\x10\xea"
5038                         "\x1f\xb7\x29\x0a\x45\xa1\x1d\x1e"
5039                         "\x1d\xe2\x65\x61\x50\x9c\xd7\x05"
5040                         "\xf2\x0b\x5b\x12\x61\x02\xc8\xe5"
5041                         "\x63\x4f\x20\x0c\x07\x17\x33\x5e"
5042                         "\x03\x9a\x53\x0f\x2e\x55\xfe\x50"
5043                         "\x43\x7d\xd0\xb6\x7e\x5a\xda\xae"
5044                         "\x58\xef\x15\xa9\x83\xd9\x46\xb1"
5045                         "\x42\xaa\xf5\x02\x6c\xce\x92\x06"
5046                         "\x1b\xdb\x66\x45\x91\x79\xc2\x2d"
5047                         "\xe6\x53\xd3\x14\xfd\xbb\x44\x63"
5048                         "\xc6\xd7\x3d\x7a\x0c\x75\x78\x9d"
5049                         "\x5c\xa6\x39\xb3\xe5\x63\xca\x8b"
5050                         "\xfe\xd3\xef\x60\x83\xf6\x8e\x70"
5051                         "\xb6\x67\xc7\x77\xed\x23\xef\x4c"
5052                         "\xf0\xed\x2d\x07\x59\x6f\xc1\x01"
5053                         "\x34\x37\x08\xab\xd9\x1f\x09\xb1"
5054                         "\xce\x5b\x17\xff\x74\xf8\x9c\xd5"
5055                         "\x2c\x56\x39\x79\x0f\x69\x44\x75"
5056                         "\x58\x27\x01\xc4\xbf\xa7\xa1\x1d"
5057                         "\x90\x17\x77\x86\x5a\x3f\xd9\xd1"
5058                         "\x0e\xa0\x10\xf8\xec\x1e\xa5\x7f"
5059                         "\x5e\x36\xd1\xe3\x04\x2c\x70\xf7"
5060                         "\x8e\xc0\x98\x2f\x6c\x94\x2b\x41"
5061                         "\xb7\x60\x00\xb7\x2e\xb8\x02\x8d"
5062                         "\xb8\xb0\xd3\x86\xba\x1d\xd7\x90"
5063                         "\xd6\xb6\xe1\xfc\xd7\xd8\x28\x06"
5064                         "\x63\x9b\xce\x61\x24\x79\xc0\x70"
5065                         "\x52\xd0\xb6\xd4\x28\x95\x24\x87"
5066                         "\x03\x1f\xb7\x9a\xda\xa3\xfb\x52"
5067                         "\x5b\x68\xe7\x4c\x8c\x24\xe1\x42"
5068                         "\xf7\xd5\xfd\xad\x06\x32\x9f\xba"
5069                         "\xc1\xfc\xdd\xc6\xfc\xfc\xb3\x38"
5070                         "\x74\x56\x58\x40\x02\x37\x52\x2c"
5071                         "\x55\xcc\xb3\x9e\x7a\xe9\xd4\x38"
5072                         "\x41\x5e\x0c\x35\xe2\x11\xd1\x13"
5073                         "\xf8\xb7\x8d\x72\x6b\x22\x2a\xb0"
5074                         "\xdb\x08\xba\x35\xb9\x3f\xc8\xd3"
5075                         "\x24\x90\xec\x58\xd2\x09\xc7\x2d"
5076                         "\xed\x38\x80\x36\x72\x43\x27\x49"
5077                         "\x4a\x80\x8a\xa2\xe8\xd3\xda\x30"
5078                         "\x7d\xb6\x82\x37\x86\x92\x86\x3e"
5079                         "\x08\xb2\x28\x5a\x55\x44\x24\x7d"
5080                         "\x40\x48\x8a\xb6\x89\x58\x08\xa0"
5081                         "\xd6\x6d\x3a\x17\xbf\xf6\x54\xa2"
5082                         "\xf5\xd3\x8c\x0f\x78\x12\x57\x8b"
5083                         "\xd5\xc2\xfd\x58\x5b\x7f\x38\xe3"
5084                         "\xcc\xb7\x7c\x48\xb3\x20\xe8\x81"
5085                         "\x14\x32\x45\x05\xe0\xdb\x9f\x75"
5086                         "\x85\xb4\x6a\xfc\x95\xe3\x54\x22"
5087                         "\x12\xee\x30\xfe\xd8\x30\xef\x34"
5088                         "\x50\xab\x46\x30\x98\x2f\xb7\xc0"
5089                         "\x15\xa2\x83\xb6\xf2\x06\x21\xa2"
5090                         "\xc3\x26\x37\x14\xd1\x4d\xb5\x10"
5091                         "\x52\x76\x4d\x6a\xee\xb5\x2b\x15"
5092                         "\xb7\xf9\x51\xe8\x2a\xaf\xc7\xfa"
5093                         "\x77\xaf\xb0\x05\x4d\xd1\x68\x8e"
5094                         "\x74\x05\x9f\x9d\x93\xa5\x3e\x7f"
5095                         "\x4e\x5f\x9d\xcb\x09\xc7\x83\xe3"
5096                         "\x02\x9d\x27\x1f\xef\x85\x05\x8d"
5097                         "\xec\x55\x88\x0f\x0d\x7c\x4c\xe8"
5098                         "\xa1\x75\xa0\xd8\x06\x47\x14\xef"
5099                         "\xaa\x61\xcf\x26\x15\xad\xd8\xa3"
5100                         "\xaa\x75\xf2\x78\x4a\x5a\x61\xdf"
5101                         "\x8b\xc7\x04\xbc\xb2\x32\xd2\x7e"
5102                         "\x42\xee\xb4\x2f\x51\xff\x7b\x2e"
5103                         "\xd3\x02\xe8\xdc\x5d\x0d\x50\xdc"
5104                         "\xae\xb7\x46\xf9\xa8\xe6\xd0\x16"
5105                         "\xcc\xe6\x2c\x81\xc7\xad\xe9\xf0"
5106                         "\x05\x72\x6d\x3d\x0a\x7a\xa9\x02"
5107                         "\xac\x82\x93\x6e\xb6\x1c\x28\xfc"
5108                         "\x44\x12\xfb\x73\x77\xd4\x13\x39"
5109                         "\x29\x88\x8a\xf3\x5c\xa6\x36\xa0"
5110                         "\x2a\xed\x7e\xb1\x1d\xd6\x4c\x6b"
5111                         "\x41\x01\x18\x5d\x5d\x07\x97\xa6"
5112                         "\x4b\xef\x31\x18\xea\xac\xb1\x84"
5113                         "\x21\xed\xda\x86",
5114                 .rlen = 4100,
5115                 .np     = 2,
5116                 .tap    = { 4064, 36 },
5117         },
5118 };
5119
5120 static struct cipher_testvec aes_ctr_dec_tv_template[] = {
5121         { /* From RFC 3686 */
5122                 .key    = "\xae\x68\x52\xf8\x12\x10\x67\xcc"
5123                           "\x4b\xf7\xa5\x76\x55\x77\xf3\x9e"
5124                           "\x00\x00\x00\x30",
5125                 .klen   = 20,
5126                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
5127                 .input  = "\xe4\x09\x5d\x4f\xb7\xa7\xb3\x79"
5128                           "\x2d\x61\x75\xa3\x26\x13\x11\xb8",
5129                 .ilen   = 16,
5130                 .result = "Single block msg",
5131                 .rlen   = 16,
5132         }, {
5133                 .key    = "\x7e\x24\x06\x78\x17\xfa\xe0\xd7"
5134                           "\x43\xd6\xce\x1f\x32\x53\x91\x63"
5135                           "\x00\x6c\xb6\xdb",
5136                 .klen   = 20,
5137                 .iv     = "\xc0\x54\x3b\x59\xda\x48\xd9\x0b",
5138                 .input  = "\x51\x04\xa1\x06\x16\x8a\x72\xd9"
5139                           "\x79\x0d\x41\xee\x8e\xda\xd3\x88"
5140                           "\xeb\x2e\x1e\xfc\x46\xda\x57\xc8"
5141                           "\xfc\xe6\x30\xdf\x91\x41\xbe\x28",
5142                 .ilen   = 32,
5143                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5144                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5145                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5146                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5147                 .rlen   = 32,
5148         }, {
5149                 .key    = "\x16\xaf\x5b\x14\x5f\xc9\xf5\x79"
5150                           "\xc1\x75\xf9\x3e\x3b\xfb\x0e\xed"
5151                           "\x86\x3d\x06\xcc\xfd\xb7\x85\x15"
5152                           "\x00\x00\x00\x48",
5153                 .klen   = 28,
5154                 .iv     = "\x36\x73\x3c\x14\x7d\x6d\x93\xcb",
5155                 .input  = "\x4b\x55\x38\x4f\xe2\x59\xc9\xc8"
5156                           "\x4e\x79\x35\xa0\x03\xcb\xe9\x28",
5157                 .ilen   = 16,
5158                 .result = "Single block msg",
5159                 .rlen   = 16,
5160         }, {
5161                 .key    = "\x7c\x5c\xb2\x40\x1b\x3d\xc3\x3c"
5162                           "\x19\xe7\x34\x08\x19\xe0\xf6\x9c"
5163                           "\x67\x8c\x3d\xb8\xe6\xf6\xa9\x1a"
5164                           "\x00\x96\xb0\x3b",
5165                 .klen   = 28,
5166                 .iv     = "\x02\x0c\x6e\xad\xc2\xcb\x50\x0d",
5167                 .input  = "\x45\x32\x43\xfc\x60\x9b\x23\x32"
5168                           "\x7e\xdf\xaa\xfa\x71\x31\xcd\x9f"
5169                           "\x84\x90\x70\x1c\x5a\xd4\xa7\x9c"
5170                           "\xfc\x1f\xe0\xff\x42\xf4\xfb\x00",
5171                 .ilen   = 32,
5172                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5173                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5174                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5175                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5176                 .rlen   = 32,
5177         }, {
5178                 .key    = "\x77\x6b\xef\xf2\x85\x1d\xb0\x6f"
5179                           "\x4c\x8a\x05\x42\xc8\x69\x6f\x6c"
5180                           "\x6a\x81\xaf\x1e\xec\x96\xb4\xd3"
5181                           "\x7f\xc1\xd6\x89\xe6\xc1\xc1\x04"
5182                           "\x00\x00\x00\x60",
5183                 .klen   = 36,
5184                 .iv     = "\xdb\x56\x72\xc9\x7a\xa8\xf0\xb2",
5185                 .input  = "\x14\x5a\xd0\x1d\xbf\x82\x4e\xc7"
5186                           "\x56\x08\x63\xdc\x71\xe3\xe0\xc0",
5187                 .ilen   = 16,
5188                 .result = "Single block msg",
5189                 .rlen   = 16,
5190         }, {
5191                 .key    = "\xf6\xd6\x6d\x6b\xd5\x2d\x59\xbb"
5192                           "\x07\x96\x36\x58\x79\xef\xf8\x86"
5193                           "\xc6\x6d\xd5\x1a\x5b\x6a\x99\x74"
5194                           "\x4b\x50\x59\x0c\x87\xa2\x38\x84"
5195                           "\x00\xfa\xac\x24",
5196                 .klen   = 36,
5197                 .iv     = "\xc1\x58\x5e\xf1\x5a\x43\xd8\x75",
5198                 .input  = "\xf0\x5e\x23\x1b\x38\x94\x61\x2c"
5199                           "\x49\xee\x00\x0b\x80\x4e\xb2\xa9"
5200                           "\xb8\x30\x6b\x50\x8f\x83\x9d\x6a"
5201                           "\x55\x30\x83\x1d\x93\x44\xaf\x1c",
5202                 .ilen   = 32,
5203                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
5204                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5205                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5206                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
5207                 .rlen   = 32,
5208         },
5209 };
5210
5211 static struct aead_testvec aes_gcm_enc_tv_template[] = {
5212         { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */
5213                 .key    = zeroed_string,
5214                 .klen   = 16,
5215                 .result = "\x58\xe2\xfc\xce\xfa\x7e\x30\x61"
5216                           "\x36\x7f\x1d\x57\xa4\xe7\x45\x5a",
5217                 .rlen   = 16,
5218         }, {
5219                 .key    = zeroed_string,
5220                 .klen   = 16,
5221                 .input  = zeroed_string,
5222                 .ilen   = 16,
5223                 .result = "\x03\x88\xda\xce\x60\xb6\xa3\x92"
5224                           "\xf3\x28\xc2\xb9\x71\xb2\xfe\x78"
5225                           "\xab\x6e\x47\xd4\x2c\xec\x13\xbd"
5226                           "\xf5\x3a\x67\xb2\x12\x57\xbd\xdf",
5227                 .rlen   = 32,
5228         }, {
5229                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5230                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5231                 .klen   = 16,
5232                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5233                           "\xde\xca\xf8\x88",
5234                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5235                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5236                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5237                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5238                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5239                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5240                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5241                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5242                 .ilen   = 64,
5243                 .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5244                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5245                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5246                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5247                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5248                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5249                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5250                           "\x3d\x58\xe0\x91\x47\x3f\x59\x85"
5251                           "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6"
5252                           "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4",
5253                 .rlen   = 80,
5254         }, {
5255                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5256                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5257                 .klen   = 16,
5258                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5259                           "\xde\xca\xf8\x88",
5260                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5261                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5262                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5263                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5264                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5265                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5266                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5267                           "\xba\x63\x7b\x39",
5268                 .ilen   = 60,
5269                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5270                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5271                           "\xab\xad\xda\xd2",
5272                 .alen   = 20,
5273                 .result = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5274                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5275                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5276                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5277                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5278                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5279                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5280                           "\x3d\x58\xe0\x91"
5281                           "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb"
5282                           "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47",
5283                 .rlen   = 76,
5284         }, {
5285                 .key    = zeroed_string,
5286                 .klen   = 24,
5287                 .result = "\xcd\x33\xb2\x8a\xc7\x73\xf7\x4b"
5288                           "\xa0\x0e\xd1\xf3\x12\x57\x24\x35",
5289                 .rlen   = 16,
5290         }, {
5291                 .key    = zeroed_string,
5292                 .klen   = 24,
5293                 .input  = zeroed_string,
5294                 .ilen   = 16,
5295                 .result = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41"
5296                           "\x1c\x26\x7e\x43\x84\xb0\xf6\x00"
5297                           "\x2f\xf5\x8d\x80\x03\x39\x27\xab"
5298                           "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb",
5299                 .rlen   = 32,
5300         }, {
5301                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5302                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5303                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5304                 .klen   = 24,
5305                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5306                           "\xde\xca\xf8\x88",
5307                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5308                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5309                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5310                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5311                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5312                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5313                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5314                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5315                 .ilen   = 64,
5316                 .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5317                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5318                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5319                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5320                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5321                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5322                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5323                           "\xcc\xda\x27\x10\xac\xad\xe2\x56"
5324                           "\x99\x24\xa7\xc8\x58\x73\x36\xbf"
5325                           "\xb1\x18\x02\x4d\xb8\x67\x4a\x14",
5326                 .rlen   = 80,
5327         }, {
5328                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5329                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5330                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5331                 .klen   = 24,
5332                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5333                           "\xde\xca\xf8\x88",
5334                 .input  = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5335                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5336                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5337                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5338                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5339                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5340                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5341                           "\xba\x63\x7b\x39",
5342                 .ilen   = 60,
5343                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5344                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5345                           "\xab\xad\xda\xd2",
5346                 .alen   = 20,
5347                 .result = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5348                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5349                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5350                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5351                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5352                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5353                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5354                           "\xcc\xda\x27\x10"
5355                           "\x25\x19\x49\x8e\x80\xf1\x47\x8f"
5356                           "\x37\xba\x55\xbd\x6d\x27\x61\x8c",
5357                 .rlen   = 76,
5358                 .np     = 2,
5359                 .tap    = { 32, 28 },
5360                 .anp    = 2,
5361                 .atap   = { 8, 12 }
5362         }, {
5363                 .key    = zeroed_string,
5364                 .klen   = 32,
5365                 .result = "\x53\x0f\x8a\xfb\xc7\x45\x36\xb9"
5366                           "\xa9\x63\xb4\xf1\xc4\xcb\x73\x8b",
5367                 .rlen   = 16,
5368         }
5369 };
5370
5371 static struct aead_testvec aes_gcm_dec_tv_template[] = {
5372         { /* From McGrew & Viega - http://citeseer.ist.psu.edu/656989.html */
5373                 .key    = zeroed_string,
5374                 .klen   = 32,
5375                 .input  = "\xce\xa7\x40\x3d\x4d\x60\x6b\x6e"
5376                           "\x07\x4e\xc5\xd3\xba\xf3\x9d\x18"
5377                           "\xd0\xd1\xc8\xa7\x99\x99\x6b\xf0"
5378                           "\x26\x5b\x98\xb5\xd4\x8a\xb9\x19",
5379                 .ilen   = 32,
5380                 .result  = zeroed_string,
5381                 .rlen   = 16,
5382         }, {
5383                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5384                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5385                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5386                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5387                 .klen   = 32,
5388                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5389                           "\xde\xca\xf8\x88",
5390                 .input  = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
5391                           "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d"
5392                           "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9"
5393                           "\x75\x98\xa2\xbd\x25\x55\xd1\xaa"
5394                           "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d"
5395                           "\xa7\xb0\x8b\x10\x56\x82\x88\x38"
5396                           "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a"
5397                           "\xbc\xc9\xf6\x62\x89\x80\x15\xad"
5398                           "\xb0\x94\xda\xc5\xd9\x34\x71\xbd"
5399                           "\xec\x1a\x50\x22\x70\xe3\xcc\x6c",
5400                 .ilen   = 80,
5401                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5402                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5403                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5404                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5405                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5406                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5407                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5408                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5409                 .rlen   = 64,
5410         }, {
5411                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5412                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5413                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5414                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5415                 .klen   = 32,
5416                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5417                           "\xde\xca\xf8\x88",
5418                 .input  = "\x52\x2d\xc1\xf0\x99\x56\x7d\x07"
5419                           "\xf4\x7f\x37\xa3\x2a\x84\x42\x7d"
5420                           "\x64\x3a\x8c\xdc\xbf\xe5\xc0\xc9"
5421                           "\x75\x98\xa2\xbd\x25\x55\xd1\xaa"
5422                           "\x8c\xb0\x8e\x48\x59\x0d\xbb\x3d"
5423                           "\xa7\xb0\x8b\x10\x56\x82\x88\x38"
5424                           "\xc5\xf6\x1e\x63\x93\xba\x7a\x0a"
5425                           "\xbc\xc9\xf6\x62"
5426                           "\x76\xfc\x6e\xce\x0f\x4e\x17\x68"
5427                           "\xcd\xdf\x88\x53\xbb\x2d\x55\x1b",
5428                 .ilen   = 76,
5429                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5430                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5431                           "\xab\xad\xda\xd2",
5432                 .alen   = 20,
5433                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5434                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5435                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5436                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5437                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5438                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5439                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5440                           "\xba\x63\x7b\x39",
5441                 .rlen   = 60,
5442                 .np     = 2,
5443                 .tap    = { 48, 28 },
5444                 .anp    = 3,
5445                 .atap   = { 8, 8, 4 }
5446         }, {
5447                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5448                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5449                 .klen   = 16,
5450                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5451                           "\xde\xca\xf8\x88",
5452                 .input  = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5453                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5454                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5455                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5456                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5457                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5458                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5459                           "\x3d\x58\xe0\x91\x47\x3f\x59\x85"
5460                           "\x4d\x5c\x2a\xf3\x27\xcd\x64\xa6"
5461                           "\x2c\xf3\x5a\xbd\x2b\xa6\xfa\xb4",
5462                 .ilen   = 80,
5463                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5464                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5465                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5466                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5467                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5468                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5469                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5470                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5471                 .rlen   = 64,
5472         }, {
5473                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5474                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08",
5475                 .klen   = 16,
5476                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5477                           "\xde\xca\xf8\x88",
5478                 .input  = "\x42\x83\x1e\xc2\x21\x77\x74\x24"
5479                           "\x4b\x72\x21\xb7\x84\xd0\xd4\x9c"
5480                           "\xe3\xaa\x21\x2f\x2c\x02\xa4\xe0"
5481                           "\x35\xc1\x7e\x23\x29\xac\xa1\x2e"
5482                           "\x21\xd5\x14\xb2\x54\x66\x93\x1c"
5483                           "\x7d\x8f\x6a\x5a\xac\x84\xaa\x05"
5484                           "\x1b\xa3\x0b\x39\x6a\x0a\xac\x97"
5485                           "\x3d\x58\xe0\x91"
5486                           "\x5b\xc9\x4f\xbc\x32\x21\xa5\xdb"
5487                           "\x94\xfa\xe9\x5a\xe7\x12\x1a\x47",
5488                 .ilen   = 76,
5489                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5490                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5491                           "\xab\xad\xda\xd2",
5492                 .alen   = 20,
5493                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5494                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5495                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5496                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5497                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5498                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5499                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5500                           "\xba\x63\x7b\x39",
5501                 .rlen   = 60,
5502         }, {
5503                 .key    = zeroed_string,
5504                 .klen   = 24,
5505                 .input  = "\x98\xe7\x24\x7c\x07\xf0\xfe\x41"
5506                           "\x1c\x26\x7e\x43\x84\xb0\xf6\x00"
5507                           "\x2f\xf5\x8d\x80\x03\x39\x27\xab"
5508                           "\x8e\xf4\xd4\x58\x75\x14\xf0\xfb",
5509                 .ilen   = 32,
5510                 .result  = zeroed_string,
5511                 .rlen   = 16,
5512         }, {
5513                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5514                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5515                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5516                 .klen   = 24,
5517                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5518                           "\xde\xca\xf8\x88",
5519                 .input  = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5520                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5521                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5522                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5523                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5524                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5525                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5526                           "\xcc\xda\x27\x10\xac\xad\xe2\x56"
5527                           "\x99\x24\xa7\xc8\x58\x73\x36\xbf"
5528                           "\xb1\x18\x02\x4d\xb8\x67\x4a\x14",
5529                 .ilen   = 80,
5530                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5531                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5532                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5533                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5534                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5535                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5536                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5537                           "\xba\x63\x7b\x39\x1a\xaf\xd2\x55",
5538                 .rlen   = 64,
5539         }, {
5540                 .key    = "\xfe\xff\xe9\x92\x86\x65\x73\x1c"
5541                           "\x6d\x6a\x8f\x94\x67\x30\x83\x08"
5542                           "\xfe\xff\xe9\x92\x86\x65\x73\x1c",
5543                 .klen   = 24,
5544                 .iv     = "\xca\xfe\xba\xbe\xfa\xce\xdb\xad"
5545                           "\xde\xca\xf8\x88",
5546                 .input  = "\x39\x80\xca\x0b\x3c\x00\xe8\x41"
5547                           "\xeb\x06\xfa\xc4\x87\x2a\x27\x57"
5548                           "\x85\x9e\x1c\xea\xa6\xef\xd9\x84"
5549                           "\x62\x85\x93\xb4\x0c\xa1\xe1\x9c"
5550                           "\x7d\x77\x3d\x00\xc1\x44\xc5\x25"
5551                           "\xac\x61\x9d\x18\xc8\x4a\x3f\x47"
5552                           "\x18\xe2\x44\x8b\x2f\xe3\x24\xd9"
5553                           "\xcc\xda\x27\x10"
5554                           "\x25\x19\x49\x8e\x80\xf1\x47\x8f"
5555                           "\x37\xba\x55\xbd\x6d\x27\x61\x8c",
5556                 .ilen   = 76,
5557                 .assoc  = "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5558                           "\xfe\xed\xfa\xce\xde\xad\xbe\xef"
5559                           "\xab\xad\xda\xd2",
5560                 .alen   = 20,
5561                 .result = "\xd9\x31\x32\x25\xf8\x84\x06\xe5"
5562                           "\xa5\x59\x09\xc5\xaf\xf5\x26\x9a"
5563                           "\x86\xa7\xa9\x53\x15\x34\xf7\xda"
5564                           "\x2e\x4c\x30\x3d\x8a\x31\x8a\x72"
5565                           "\x1c\x3c\x0c\x95\x95\x68\x09\x53"
5566                           "\x2f\xcf\x0e\x24\x49\xa6\xb5\x25"
5567                           "\xb1\x6a\xed\xf5\xaa\x0d\xe6\x57"
5568                           "\xba\x63\x7b\x39",
5569                 .rlen   = 60,
5570         }
5571 };
5572
5573 static struct aead_testvec aes_ccm_enc_tv_template[] = {
5574         { /* From RFC 3610 */
5575                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5576                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5577                 .klen   = 16,
5578                 .iv     = "\x01\x00\x00\x00\x03\x02\x01\x00"
5579                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5580                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
5581                 .alen   = 8,
5582                 .input  = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5583                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5584                           "\x18\x19\x1a\x1b\x1c\x1d\x1e",
5585                 .ilen   = 23,
5586                 .result = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2"
5587                           "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80"
5588                           "\x6d\x5f\x6b\x61\xda\xc3\x84\x17"
5589                           "\xe8\xd1\x2c\xfd\xf9\x26\xe0",
5590                 .rlen   = 31,
5591         }, {
5592                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5593                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5594                 .klen   = 16,
5595                 .iv     = "\x01\x00\x00\x00\x07\x06\x05\x04"
5596                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5597                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
5598                           "\x08\x09\x0a\x0b",
5599                 .alen   = 12,
5600                 .input  = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5601                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5602                           "\x1c\x1d\x1e\x1f",
5603                 .ilen   = 20,
5604                 .result = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb"
5605                           "\x9d\x4e\x13\x12\x53\x65\x8a\xd8"
5606                           "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07"
5607                           "\x7d\x9c\x2d\x93",
5608                 .rlen   = 28,
5609         }, {
5610                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5611                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5612                 .klen   = 16,
5613                 .iv     = "\x01\x00\x00\x00\x0b\x0a\x09\x08"
5614                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5615                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
5616                 .alen   = 8,
5617                 .input  = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5618                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5619                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
5620                           "\x20",
5621                 .ilen   = 25,
5622                 .result = "\x82\x53\x1a\x60\xcc\x24\x94\x5a"
5623                           "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d"
5624                           "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1"
5625                           "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1"
5626                           "\x7e\x5f\x4e",
5627                 .rlen   = 35,
5628         }, {
5629                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5630                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5631                 .klen   = 16,
5632                 .iv     = "\x01\x00\x00\x00\x0c\x0b\x0a\x09"
5633                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5634                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
5635                           "\x08\x09\x0a\x0b",
5636                 .alen   = 12,
5637                 .input  = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5638                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5639                           "\x1c\x1d\x1e",
5640                 .ilen   = 19,
5641                 .result = "\x07\x34\x25\x94\x15\x77\x85\x15"
5642                           "\x2b\x07\x40\x98\x33\x0a\xbb\x14"
5643                           "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b"
5644                           "\x4d\x99\x99\x88\xdd",
5645                 .rlen   = 29,
5646         }, {
5647                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5648                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5649                 .klen   = 16,
5650                 .iv     = "\x01\x00\x33\x56\x8e\xf7\xb2\x63"
5651                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5652                 .assoc  = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb",
5653                 .alen   = 8,
5654                 .input  = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a"
5655                           "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf"
5656                           "\xb7\x9c\x70\x28\x94\x9c\xd0\xec",
5657                 .ilen   = 24,
5658                 .result = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa"
5659                           "\xa0\x72\x6c\x55\xd3\x78\x06\x12"
5660                           "\x98\xc8\x5c\x92\x81\x4a\xbc\x33"
5661                           "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a",
5662                 .rlen   = 32,
5663         }, {
5664                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5665                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5666                 .klen   = 16,
5667                 .iv     = "\x01\x00\xd5\x60\x91\x2d\x3f\x70"
5668                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5669                 .assoc  = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81"
5670                           "\x20\xea\x60\xc0",
5671                 .alen   = 12,
5672                 .input  = "\x64\x35\xac\xba\xfb\x11\xa8\x2e"
5673                           "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9"
5674                           "\x3a\x80\x3b\xa8\x7f",
5675                 .ilen   = 21,
5676                 .result = "\x00\x97\x69\xec\xab\xdf\x48\x62"
5677                           "\x55\x94\xc5\x92\x51\xe6\x03\x57"
5678                           "\x22\x67\x5e\x04\xc8\x47\x09\x9e"
5679                           "\x5a\xe0\x70\x45\x51",
5680                 .rlen   = 29,
5681         }, {
5682                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5683                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5684                 .klen   = 16,
5685                 .iv     = "\x01\x00\x42\xff\xf8\xf1\x95\x1c"
5686                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5687                 .assoc  = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8",
5688                 .alen   = 8,
5689                 .input  = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01"
5690                           "\x8e\x5e\x67\x01\xc9\x17\x87\x65"
5691                           "\x98\x09\xd6\x7d\xbe\xdd\x18",
5692                 .ilen   = 23,
5693                 .result = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6"
5694                           "\xdb\x38\x6a\x99\xac\x1a\xef\x23"
5695                           "\xad\xe0\xb5\x29\x39\xcb\x6a\x63"
5696                           "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6"
5697                           "\xba",
5698                 .rlen   = 33,
5699         },
5700 };
5701
5702 static struct aead_testvec aes_ccm_dec_tv_template[] = {
5703         { /* From RFC 3610 */
5704                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5705                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5706                 .klen   = 16,
5707                 .iv     = "\x01\x00\x00\x00\x03\x02\x01\x00"
5708                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5709                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
5710                 .alen   = 8,
5711                 .input  = "\x58\x8c\x97\x9a\x61\xc6\x63\xd2"
5712                           "\xf0\x66\xd0\xc2\xc0\xf9\x89\x80"
5713                           "\x6d\x5f\x6b\x61\xda\xc3\x84\x17"
5714                           "\xe8\xd1\x2c\xfd\xf9\x26\xe0",
5715                 .ilen   = 31,
5716                 .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5717                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5718                           "\x18\x19\x1a\x1b\x1c\x1d\x1e",
5719                 .rlen   = 23,
5720         }, {
5721                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5722                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5723                 .klen   = 16,
5724                 .iv     = "\x01\x00\x00\x00\x07\x06\x05\x04"
5725                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5726                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
5727                           "\x08\x09\x0a\x0b",
5728                 .alen   = 12,
5729                 .input  = "\xdc\xf1\xfb\x7b\x5d\x9e\x23\xfb"
5730                           "\x9d\x4e\x13\x12\x53\x65\x8a\xd8"
5731                           "\x6e\xbd\xca\x3e\x51\xe8\x3f\x07"
5732                           "\x7d\x9c\x2d\x93",
5733                 .ilen   = 28,
5734                 .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5735                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5736                           "\x1c\x1d\x1e\x1f",
5737                 .rlen   = 20,
5738         }, {
5739                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5740                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5741                 .klen   = 16,
5742                 .iv     = "\x01\x00\x00\x00\x0b\x0a\x09\x08"
5743                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5744                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07",
5745                 .alen   = 8,
5746                 .input  = "\x82\x53\x1a\x60\xcc\x24\x94\x5a"
5747                           "\x4b\x82\x79\x18\x1a\xb5\xc8\x4d"
5748                           "\xf2\x1c\xe7\xf9\xb7\x3f\x42\xe1"
5749                           "\x97\xea\x9c\x07\xe5\x6b\x5e\xb1"
5750                           "\x7e\x5f\x4e",
5751                 .ilen   = 35,
5752                 .result = "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
5753                           "\x10\x11\x12\x13\x14\x15\x16\x17"
5754                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
5755                           "\x20",
5756                 .rlen   = 25,
5757         }, {
5758                 .key    = "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
5759                           "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf",
5760                 .klen   = 16,
5761                 .iv     = "\x01\x00\x00\x00\x0c\x0b\x0a\x09"
5762                           "\xa0\xa1\xa2\xa3\xa4\xa5\x00\x00",
5763                 .assoc  = "\x00\x01\x02\x03\x04\x05\x06\x07"
5764                           "\x08\x09\x0a\x0b",
5765                 .alen   = 12,
5766                 .input  = "\x07\x34\x25\x94\x15\x77\x85\x15"
5767                           "\x2b\x07\x40\x98\x33\x0a\xbb\x14"
5768                           "\x1b\x94\x7b\x56\x6a\xa9\x40\x6b"
5769                           "\x4d\x99\x99\x88\xdd",
5770                 .ilen   = 29,
5771                 .result = "\x0c\x0d\x0e\x0f\x10\x11\x12\x13"
5772                           "\x14\x15\x16\x17\x18\x19\x1a\x1b"
5773                           "\x1c\x1d\x1e",
5774                 .rlen   = 19,
5775         }, {
5776                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5777                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5778                 .klen   = 16,
5779                 .iv     = "\x01\x00\x33\x56\x8e\xf7\xb2\x63"
5780                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5781                 .assoc  = "\x63\x01\x8f\x76\xdc\x8a\x1b\xcb",
5782                 .alen   = 8,
5783                 .input  = "\x4c\xcb\x1e\x7c\xa9\x81\xbe\xfa"
5784                           "\xa0\x72\x6c\x55\xd3\x78\x06\x12"
5785                           "\x98\xc8\x5c\x92\x81\x4a\xbc\x33"
5786                           "\xc5\x2e\xe8\x1d\x7d\x77\xc0\x8a",
5787                 .ilen   = 32,
5788                 .result = "\x90\x20\xea\x6f\x91\xbd\xd8\x5a"
5789                           "\xfa\x00\x39\xba\x4b\xaf\xf9\xbf"
5790                           "\xb7\x9c\x70\x28\x94\x9c\xd0\xec",
5791                 .rlen   = 24,
5792         }, {
5793                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5794                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5795                 .klen   = 16,
5796                 .iv     = "\x01\x00\xd5\x60\x91\x2d\x3f\x70"
5797                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5798                 .assoc  = "\xcd\x90\x44\xd2\xb7\x1f\xdb\x81"
5799                           "\x20\xea\x60\xc0",
5800                 .alen   = 12,
5801                 .input  = "\x00\x97\x69\xec\xab\xdf\x48\x62"
5802                           "\x55\x94\xc5\x92\x51\xe6\x03\x57"
5803                           "\x22\x67\x5e\x04\xc8\x47\x09\x9e"
5804                           "\x5a\xe0\x70\x45\x51",
5805                 .ilen   = 29,
5806                 .result = "\x64\x35\xac\xba\xfb\x11\xa8\x2e"
5807                           "\x2f\x07\x1d\x7c\xa4\xa5\xeb\xd9"
5808                           "\x3a\x80\x3b\xa8\x7f",
5809                 .rlen   = 21,
5810         }, {
5811                 .key    = "\xd7\x82\x8d\x13\xb2\xb0\xbd\xc3"
5812                           "\x25\xa7\x62\x36\xdf\x93\xcc\x6b",
5813                 .klen   = 16,
5814                 .iv     = "\x01\x00\x42\xff\xf8\xf1\x95\x1c"
5815                           "\x3c\x96\x96\x76\x6c\xfa\x00\x00",
5816                 .assoc  = "\xd8\x5b\xc7\xe6\x9f\x94\x4f\xb8",
5817                 .alen   = 8,
5818                 .input  = "\xbc\x21\x8d\xaa\x94\x74\x27\xb6"
5819                           "\xdb\x38\x6a\x99\xac\x1a\xef\x23"
5820                           "\xad\xe0\xb5\x29\x39\xcb\x6a\x63"
5821                           "\x7c\xf9\xbe\xc2\x40\x88\x97\xc6"
5822                           "\xba",
5823                 .ilen   = 33,
5824                 .result = "\x8a\x19\xb9\x50\xbc\xf7\x1a\x01"
5825                           "\x8e\x5e\x67\x01\xc9\x17\x87\x65"
5826                           "\x98\x09\xd6\x7d\xbe\xdd\x18",
5827                 .rlen   = 23,
5828         },
5829 };
5830
5831 /*
5832  * rfc4309 refers to section 8 of rfc3610 for test vectors, but they all
5833  * use a 13-byte nonce, we only support an 11-byte nonce. Similarly, all of
5834  * Special Publication 800-38C's test vectors also use nonce lengths our
5835  * implementation doesn't support. The following are taken from fips cavs
5836  * fax files on hand at Red Hat.
5837  *
5838  * nb: actual key lengths are (klen - 3), the last 3 bytes are actually
5839  * part of the nonce which combine w/the iv, but need to be input this way.
5840  */
5841 static struct aead_testvec aes_ccm_rfc4309_enc_tv_template[] = {
5842         {
5843                 .key    = "\x83\xac\x54\x66\xc2\xeb\xe5\x05"
5844                           "\x2e\x01\xd1\xfc\x5d\x82\x66\x2e"
5845                           "\x96\xac\x59",
5846                 .klen   = 19,
5847                 .iv     = "\x30\x07\xa1\xe2\xa2\xc7\x55\x24",
5848                 .alen   = 0,
5849                 .input  = "\x19\xc8\x81\xf6\xe9\x86\xff\x93"
5850                           "\x0b\x78\x67\xe5\xbb\xb7\xfc\x6e"
5851                           "\x83\x77\xb3\xa6\x0c\x8c\x9f\x9c"
5852                           "\x35\x2e\xad\xe0\x62\xf9\x91\xa1",
5853                 .ilen   = 32,
5854                 .result = "\xab\x6f\xe1\x69\x1d\x19\x99\xa8"
5855                           "\x92\xa0\xc4\x6f\x7e\xe2\x8b\xb1"
5856                           "\x70\xbb\x8c\xa6\x4c\x6e\x97\x8a"
5857                           "\x57\x2b\xbe\x5d\x98\xa6\xb1\x32"
5858                           "\xda\x24\xea\xd9\xa1\x39\x98\xfd"
5859                           "\xa4\xbe\xd9\xf2\x1a\x6d\x22\xa8",
5860                 .rlen   = 48,
5861         }, {
5862                 .key    = "\x1e\x2c\x7e\x01\x41\x9a\xef\xc0"
5863                           "\x0d\x58\x96\x6e\x5c\xa2\x4b\xd3"
5864                           "\x4f\xa3\x19",
5865                 .klen   = 19,
5866                 .iv     = "\xd3\x01\x5a\xd8\x30\x60\x15\x56",
5867                 .assoc  = "\xda\xe6\x28\x9c\x45\x2d\xfd\x63"
5868                           "\x5e\xda\x4c\xb6\xe6\xfc\xf9\xb7"
5869                           "\x0c\x56\xcb\xe4\xe0\x05\x7a\xe1"
5870                           "\x0a\x63\x09\x78\xbc\x2c\x55\xde",
5871                 .alen   = 32,
5872                 .input  = "\x87\xa3\x36\xfd\x96\xb3\x93\x78"
5873                           "\xa9\x28\x63\xba\x12\xa3\x14\x85"
5874                           "\x57\x1e\x06\xc9\x7b\x21\xef\x76"
5875                           "\x7f\x38\x7e\x8e\x29\xa4\x3e\x7e",
5876                 .ilen   = 32,
5877                 .result = "\x8a\x1e\x11\xf0\x02\x6b\xe2\x19"
5878                           "\xfc\x70\xc4\x6d\x8e\xb7\x99\xab"
5879                           "\xc5\x4b\xa2\xac\xd3\xf3\x48\xff"
5880                           "\x3b\xb5\xce\x53\xef\xde\xbb\x02"
5881                           "\xa9\x86\x15\x6c\x13\xfe\xda\x0a"
5882                           "\x22\xb8\x29\x3d\xd8\x39\x9a\x23",
5883                 .rlen   = 48,
5884         }, {
5885                 .key    = "\xf4\x6b\xc2\x75\x62\xfe\xb4\xe1"
5886                           "\xa3\xf0\xff\xdd\x4e\x4b\x12\x75"
5887                           "\x53\x14\x73\x66\x8d\x88\xf6\x80"
5888                           "\xa0\x20\x35",
5889                 .klen   = 27,
5890                 .iv     = "\x26\xf2\x21\x8d\x50\x20\xda\xe2",
5891                 .assoc  = "\x5b\x9e\x13\x67\x02\x5e\xef\xc1"
5892                           "\x6c\xf9\xd7\x1e\x52\x8f\x7a\x47"
5893                           "\xe9\xd4\xcf\x20\x14\x6e\xf0\x2d"
5894                           "\xd8\x9e\x2b\x56\x10\x23\x56\xe7",
5895                 .alen   = 32,
5896                 .ilen   = 0,
5897                 .result = "\x36\xea\x7a\x70\x08\xdc\x6a\xbc"
5898                           "\xad\x0c\x7a\x63\xf6\x61\xfd\x9b",
5899                 .rlen   = 16,
5900         }, {
5901                 .key    = "\x56\xdf\x5c\x8f\x26\x3f\x0e\x42"
5902                           "\xef\x7a\xd3\xce\xfc\x84\x60\x62"
5903                           "\xca\xb4\x40\xaf\x5f\xc9\xc9\x01"
5904                           "\xd6\x3c\x8c",
5905                 .klen   = 27,
5906                 .iv     = "\x86\x84\xb6\xcd\xef\x09\x2e\x94",
5907                 .assoc  = "\x02\x65\x78\x3c\xe9\x21\x30\x91"
5908                           "\xb1\xb9\xda\x76\x9a\x78\x6d\x95"
5909                           "\xf2\x88\x32\xa3\xf2\x50\xcb\x4c"
5910                           "\xe3\x00\x73\x69\x84\x69\x87\x79",
5911                 .alen   = 32,
5912                 .input  = "\x9f\xd2\x02\x4b\x52\x49\x31\x3c"
5913                           "\x43\x69\x3a\x2d\x8e\x70\xad\x7e"
5914                           "\xe0\xe5\x46\x09\x80\x89\x13\xb2"
5915                           "\x8c\x8b\xd9\x3f\x86\xfb\xb5\x6b",
5916                 .ilen   = 32,
5917                 .result = "\x39\xdf\x7c\x3c\x5a\x29\xb9\x62"
5918                           "\x5d\x51\xc2\x16\xd8\xbd\x06\x9f"
5919                           "\x9b\x6a\x09\x70\xc1\x51\x83\xc2"
5920                           "\x66\x88\x1d\x4f\x9a\xda\xe0\x1e"
5921                           "\xc7\x79\x11\x58\xe5\x6b\x20\x40"
5922                           "\x7a\xea\x46\x42\x8b\xe4\x6f\xe1",
5923                 .rlen   = 48,
5924         }, {
5925                 .key    = "\xe0\x8d\x99\x71\x60\xd7\x97\x1a"
5926                           "\xbd\x01\x99\xd5\x8a\xdf\x71\x3a"
5927                           "\xd3\xdf\x24\x4b\x5e\x3d\x4b\x4e"
5928                           "\x30\x7a\xb9\xd8\x53\x0a\x5e\x2b"
5929                           "\x1e\x29\x91",
5930                 .klen   = 35,
5931                 .iv     = "\xad\x8e\xc1\x53\x0a\xcf\x2d\xbe",
5932                 .assoc  = "\x19\xb6\x1f\x57\xc4\xf3\xf0\x8b"
5933                           "\x78\x2b\x94\x02\x29\x0f\x42\x27"
5934                           "\x6b\x75\xcb\x98\x34\x08\x7e\x79"
5935                           "\xe4\x3e\x49\x0d\x84\x8b\x22\x87",
5936                 .alen   = 32,
5937                 .input  = "\xe1\xd9\xd8\x13\xeb\x3a\x75\x3f"
5938                           "\x9d\xbd\x5f\x66\xbe\xdc\xbb\x66"
5939                           "\xbf\x17\x99\x62\x4a\x39\x27\x1f"
5940                           "\x1d\xdc\x24\xae\x19\x2f\x98\x4c",
5941                 .ilen   = 32,
5942                 .result = "\x19\xb8\x61\x33\x45\x2b\x43\x96"
5943                           "\x6f\x51\xd0\x20\x30\x7d\x9b\xc6"
5944                           "\x26\x3d\xf8\xc9\x65\x16\xa8\x9f"
5945                           "\xf0\x62\x17\x34\xf2\x1e\x8d\x75"
5946                           "\x4e\x13\xcc\xc0\xc3\x2a\x54\x2d",
5947                 .rlen   = 40,
5948         }, {
5949                 .key    = "\x7c\xc8\x18\x3b\x8d\x99\xe0\x7c"
5950                           "\x45\x41\xb8\xbd\x5c\xa7\xc2\x32"
5951                           "\x8a\xb8\x02\x59\xa4\xfe\xa9\x2c"
5952                           "\x09\x75\x9a\x9b\x3c\x9b\x27\x39"
5953                           "\xf9\xd9\x4e",
5954                 .klen   = 35,
5955                 .iv     = "\x63\xb5\x3d\x9d\x43\xf6\x1e\x50",
5956                 .assoc  = "\x57\xf5\x6b\x8b\x57\x5c\x3d\x3b"
5957                           "\x13\x02\x01\x0c\x83\x4c\x96\x35"
5958                           "\x8e\xd6\x39\xcf\x7d\x14\x9b\x94"
5959                           "\xb0\x39\x36\xe6\x8f\x57\xe0\x13",
5960                 .alen   = 32,
5961                 .input  = "\x3b\x6c\x29\x36\xb6\xef\x07\xa6"
5962                           "\x83\x72\x07\x4f\xcf\xfa\x66\x89"
5963                           "\x5f\xca\xb1\xba\xd5\x8f\x2c\x27"
5964                           "\x30\xdb\x75\x09\x93\xd4\x65\xe4",
5965                 .ilen   = 32,
5966                 .result = "\xb0\x88\x5a\x33\xaa\xe5\xc7\x1d"
5967                           "\x85\x23\xc7\xc6\x2f\xf4\x1e\x3d"
5968                           "\xcc\x63\x44\x25\x07\x78\x4f\x9e"
5969                           "\x96\xb8\x88\xeb\xbc\x48\x1f\x06"
5970                           "\x39\xaf\x39\xac\xd8\x4a\x80\x39"
5971                           "\x7b\x72\x8a\xf7",
5972                 .rlen   = 44,
5973         }, {
5974                 .key    = "\xab\xd0\xe9\x33\x07\x26\xe5\x83"
5975                           "\x8c\x76\x95\xd4\xb6\xdc\xf3\x46"
5976                           "\xf9\x8f\xad\xe3\x02\x13\x83\x77"
5977                           "\x3f\xb0\xf1\xa1\xa1\x22\x0f\x2b"
5978                           "\x24\xa7\x8b",
5979                 .klen   = 35,
5980                 .iv     = "\x07\xcb\xcc\x0e\xe6\x33\xbf\xf5",
5981                 .assoc  = "\xd4\xdb\x30\x1d\x03\xfe\xfd\x5f"
5982                           "\x87\xd4\x8c\xb6\xb6\xf1\x7a\x5d"
5983                           "\xab\x90\x65\x8d\x8e\xca\x4d\x4f"
5984                           "\x16\x0c\x40\x90\x4b\xc7\x36\x73",
5985                 .alen   = 32,
5986                 .input  = "\xf5\xc6\x7d\x48\xc1\xb7\xe6\x92"
5987                           "\x97\x5a\xca\xc4\xa9\x6d\xf9\x3d"
5988                           "\x6c\xde\xbc\xf1\x90\xea\x6a\xb2"
5989                           "\x35\x86\x36\xaf\x5c\xfe\x4b\x3a",
5990                 .ilen   = 32,
5991                 .result = "\x83\x6f\x40\x87\x72\xcf\xc1\x13"
5992                           "\xef\xbb\x80\x21\x04\x6c\x58\x09"
5993                           "\x07\x1b\xfc\xdf\xc0\x3f\x5b\xc7"
5994                           "\xe0\x79\xa8\x6e\x71\x7c\x3f\xcf"
5995                           "\x5c\xda\xb2\x33\xe5\x13\xe2\x0d"
5996                           "\x74\xd1\xef\xb5\x0f\x3a\xb5\xf8",
5997                 .rlen   = 48,
5998         },
5999 };
6000
6001 static struct aead_testvec aes_ccm_rfc4309_dec_tv_template[] = {
6002         {
6003                 .key    = "\xab\x2f\x8a\x74\xb7\x1c\xd2\xb1"
6004                           "\xff\x80\x2e\x48\x7d\x82\xf8\xb9"
6005                           "\xc6\xfb\x7d",
6006                 .klen   = 19,
6007                 .iv     = "\x80\x0d\x13\xab\xd8\xa6\xb2\xd8",
6008                 .alen   = 0,
6009                 .input  = "\xd5\xe8\x93\x9f\xc7\x89\x2e\x2b",
6010                 .ilen   = 8,
6011                 .result = "\x00",
6012                 .rlen   = 0,
6013                 .novrfy = 1,
6014         }, {
6015                 .key    = "\xab\x2f\x8a\x74\xb7\x1c\xd2\xb1"
6016                           "\xff\x80\x2e\x48\x7d\x82\xf8\xb9"
6017                           "\xaf\x94\x87",
6018                 .klen   = 19,
6019                 .iv     = "\x78\x35\x82\x81\x7f\x88\x94\x68",
6020                 .alen   = 0,
6021                 .input  = "\x41\x3c\xb8\x87\x73\xcb\xf3\xf3",
6022                 .ilen   = 8,
6023                 .result = "\x00",
6024                 .rlen   = 0,
6025         }, {
6026                 .key    = "\x61\x0e\x8c\xae\xe3\x23\xb6\x38"
6027                           "\x76\x1c\xf6\x3a\x67\xa3\x9c\xd8"
6028                           "\xc6\xfb\x7d",
6029                 .klen   = 19,
6030                 .iv     = "\x80\x0d\x13\xab\xd8\xa6\xb2\xd8",
6031                 .assoc  = "\xf3\x94\x87\x78\x35\x82\x81\x7f"
6032                           "\x88\x94\x68\xb1\x78\x6b\x2b\xd6"
6033                           "\x04\x1f\x4e\xed\x78\xd5\x33\x66"
6034                           "\xd8\x94\x99\x91\x81\x54\x62\x57",
6035                 .alen   = 32,
6036                 .input  = "\xf0\x7c\x29\x02\xae\x1c\x2f\x55"
6037                           "\xd0\xd1\x3d\x1a\xa3\x6d\xe4\x0a"
6038                           "\x86\xb0\x87\x6b\x62\x33\x8c\x34"
6039                           "\xce\xab\x57\xcc\x79\x0b\xe0\x6f"
6040                           "\x5c\x3e\x48\x1f\x6c\x46\xf7\x51"
6041                           "\x8b\x84\x83\x2a\xc1\x05\xb8\xc5",
6042                 .ilen   = 48,
6043                 .result = "\x50\x82\x3e\x07\xe2\x1e\xb6\xfb"
6044                           "\x33\xe4\x73\xce\xd2\xfb\x95\x79"
6045                           "\xe8\xb4\xb5\x77\x11\x10\x62\x6f"
6046                           "\x6a\x82\xd1\x13\xec\xf5\xd0\x48",
6047                 .rlen   = 32,
6048                 .novrfy = 1,
6049         }, {
6050                 .key    = "\x61\x0e\x8c\xae\xe3\x23\xb6\x38"
6051                           "\x76\x1c\xf6\x3a\x67\xa3\x9c\xd8"
6052                           "\x05\xe0\xc9",
6053                 .klen   = 19,
6054                 .iv     = "\x0f\xed\x34\xea\x97\xd4\x3b\xdf",
6055                 .assoc  = "\x49\x5c\x50\x1f\x1d\x94\xcc\x81"
6056                           "\xba\xb7\xb6\x03\xaf\xa5\xc1\xa1"
6057                           "\xd8\x5c\x42\x68\xe0\x6c\xda\x89"
6058                           "\x05\xac\x56\xac\x1b\x2a\xd3\x86",
6059                 .alen   = 32,
6060                 .input  = "\x39\xbe\x7d\x15\x62\x77\xf3\x3c"
6061                           "\xad\x83\x52\x6d\x71\x03\x25\x1c"
6062                           "\xed\x81\x3a\x9a\x16\x7d\x19\x80"
6063                           "\x72\x04\x72\xd0\xf6\xff\x05\x0f"
6064                           "\xb7\x14\x30\x00\x32\x9e\xa0\xa6"
6065                           "\x9e\x5a\x18\xa1\xb8\xfe\xdb\xd3",
6066                 .ilen   = 48,
6067                 .result = "\x75\x05\xbe\xc2\xd9\x1e\xde\x60"
6068                           "\x47\x3d\x8c\x7d\xbd\xb5\xd9\xb7"
6069                           "\xf2\xae\x61\x05\x8f\x82\x24\x3f"
6070                           "\x9c\x67\x91\xe1\x38\x4f\xe4\x0c",
6071                 .rlen   = 32,
6072         }, {
6073                 .key    = "\x39\xbb\xa7\xbe\x59\x97\x9e\x73"
6074                           "\xa2\xbc\x6b\x98\xd7\x75\x7f\xe3"
6075                           "\xa4\x48\x93\x39\x26\x71\x4a\xc6"
6076                           "\xee\x49\x83",
6077                 .klen   = 27,
6078                 .iv     = "\xe9\xa9\xff\xe9\x57\xba\xfd\x9e",
6079                 .assoc  = "\x44\xa6\x2c\x05\xe9\xe1\x43\xb1"
6080                           "\x58\x7c\xf2\x5c\x6d\x39\x0a\x64"
6081                           "\xa4\xf0\x13\x05\xd1\x77\x99\x67"
6082                           "\x11\xc4\xc6\xdb\x00\x56\x36\x61",
6083                 .alen   = 32,
6084                 .input  = "\x71\x99\xfa\xf4\x44\x12\x68\x9b",
6085                 .ilen   = 8,
6086                 .result = "\x00",
6087                 .rlen   = 0,
6088         }, {
6089                 .key    = "\x58\x5d\xa0\x96\x65\x1a\x04\xd7"
6090                           "\x96\xe5\xc5\x68\xaa\x95\x35\xe0"
6091                           "\x29\xa0\xba\x9e\x48\x78\xd1\xba"
6092                           "\xee\x49\x83",
6093                 .klen   = 27,
6094                 .iv     = "\xe9\xa9\xff\xe9\x57\xba\xfd\x9e",
6095                 .assoc  = "\x44\xa6\x2c\x05\xe9\xe1\x43\xb1"
6096                           "\x58\x7c\xf2\x5c\x6d\x39\x0a\x64"
6097                           "\xa4\xf0\x13\x05\xd1\x77\x99\x67"
6098                           "\x11\xc4\xc6\xdb\x00\x56\x36\x61",
6099                 .alen   = 32,
6100                 .input  = "\xfb\xe5\x5d\x34\xbe\xe5\xe8\xe7"
6101                           "\x5a\xef\x2f\xbf\x1f\x7f\xd4\xb2"
6102                           "\x66\xca\x61\x1e\x96\x7a\x61\xb3"
6103                           "\x1c\x16\x45\x52\xba\x04\x9c\x9f"
6104                           "\xb1\xd2\x40\xbc\x52\x7c\x6f\xb1",
6105                 .ilen   = 40,
6106                 .result = "\x85\x34\x66\x42\xc8\x92\x0f\x36"
6107                           "\x58\xe0\x6b\x91\x3c\x98\x5c\xbb"
6108                           "\x0a\x85\xcc\x02\xad\x7a\x96\xe9"
6109                           "\x65\x43\xa4\xc3\x0f\xdc\x55\x81",
6110                 .rlen   = 32,
6111         }, {
6112                 .key    = "\x58\x5d\xa0\x96\x65\x1a\x04\xd7"
6113                           "\x96\xe5\xc5\x68\xaa\x95\x35\xe0"
6114                           "\x29\xa0\xba\x9e\x48\x78\xd1\xba"
6115                           "\xd1\xfc\x57",
6116                 .klen   = 27,
6117                 .iv     = "\x9c\xfe\xb8\x9c\xad\x71\xaa\x1f",
6118                 .assoc  = "\x86\x67\xa5\xa9\x14\x5f\x0d\xc6"
6119                           "\xff\x14\xc7\x44\xbf\x6c\x3a\xc3"
6120                           "\xff\xb6\x81\xbd\xe2\xd5\x06\xc7"
6121                           "\x3c\xa1\x52\x13\x03\x8a\x23\x3a",
6122                 .alen   = 32,
6123                 .input  = "\x3f\x66\xb0\x9d\xe5\x4b\x38\x00"
6124                           "\xc6\x0e\x6e\xe5\xd6\x98\xa6\x37"
6125                           "\x8c\x26\x33\xc6\xb2\xa2\x17\xfa"
6126                           "\x64\x19\xc0\x30\xd7\xfc\x14\x6b"
6127                           "\xe3\x33\xc2\x04\xb0\x37\xbe\x3f"
6128                           "\xa9\xb4\x2d\x68\x03\xa3\x44\xef",
6129                 .ilen   = 48,
6130                 .result = "\x02\x87\x4d\x28\x80\x6e\xb2\xed"
6131                           "\x99\x2a\xa8\xca\x04\x25\x45\x90"
6132                           "\x1d\xdd\x5a\xd9\xe4\xdb\x9c\x9c"
6133                           "\x49\xe9\x01\xfe\xa7\x80\x6d\x6b",
6134                 .rlen   = 32,
6135                 .novrfy = 1,
6136         }, {
6137                 .key    = "\xa4\x4b\x54\x29\x0a\xb8\x6d\x01"
6138                           "\x5b\x80\x2a\xcf\x25\xc4\xb7\x5c"
6139                           "\x20\x2c\xad\x30\xc2\x2b\x41\xfb"
6140                           "\x0e\x85\xbc\x33\xad\x0f\x2b\xff"
6141                           "\xee\x49\x83",
6142                 .klen   = 35,
6143                 .iv     = "\xe9\xa9\xff\xe9\x57\xba\xfd\x9e",
6144                 .alen   = 0,
6145                 .input  = "\x1f\xb8\x8f\xa3\xdd\x54\x00\xf2",
6146                 .ilen   = 8,
6147                 .result = "\x00",
6148                 .rlen   = 0,
6149         }, {
6150                 .key    = "\x39\xbb\xa7\xbe\x59\x97\x9e\x73"
6151                           "\xa2\xbc\x6b\x98\xd7\x75\x7f\xe3"
6152                           "\xa4\x48\x93\x39\x26\x71\x4a\xc6"
6153                           "\xae\x8f\x11\x4c\xc2\x9c\x4a\xbb"
6154                           "\x85\x34\x66",
6155                 .klen   = 35,
6156                 .iv     = "\x42\xc8\x92\x0f\x36\x58\xe0\x6b",
6157                 .alen   = 0,
6158                 .input  = "\x48\x01\x5e\x02\x24\x04\x66\x47"
6159                           "\xa1\xea\x6f\xaf\xe8\xfc\xfb\xdd"
6160                           "\xa5\xa9\x87\x8d\x84\xee\x2e\x77"
6161                           "\xbb\x86\xb9\xf5\x5c\x6c\xff\xf6"
6162                           "\x72\xc3\x8e\xf7\x70\xb1\xb2\x07"
6163                           "\xbc\xa8\xa3\xbd\x83\x7c\x1d\x2a",
6164                 .ilen   = 48,
6165                 .result = "\xdc\x56\xf2\x71\xb0\xb1\xa0\x6c"
6166                           "\xf0\x97\x3a\xfb\x6d\xe7\x32\x99"
6167                           "\x3e\xaf\x70\x5e\xb2\x4d\xea\x39"
6168                           "\x89\xd4\x75\x7a\x63\xb1\xda\x93",
6169                 .rlen   = 32,
6170                 .novrfy = 1,
6171         }, {
6172                 .key    = "\x58\x5d\xa0\x96\x65\x1a\x04\xd7"
6173                           "\x96\xe5\xc5\x68\xaa\x95\x35\xe0"
6174                           "\x29\xa0\xba\x9e\x48\x78\xd1\xba"
6175                           "\x0d\x1a\x53\x3b\xb5\xe3\xf8\x8b"
6176                           "\xcf\x76\x3f",
6177                 .klen   = 35,
6178                 .iv     = "\xd9\x95\x75\x8f\x44\x89\x40\x7b",
6179                 .assoc  = "\x8f\x86\x6c\x4d\x1d\xc5\x39\x88"
6180                           "\xc8\xf3\x5c\x52\x10\x63\x6f\x2b"
6181                           "\x8a\x2a\xc5\x6f\x30\x23\x58\x7b"
6182                           "\xfb\x36\x03\x11\xb4\xd9\xf2\xfe",
6183                 .alen   = 32,
6184                 .input  = "\x48\x58\xd6\xf3\xad\x63\x58\xbf"
6185                           "\xae\xc7\x5e\xae\x83\x8f\x7b\xe4"
6186                           "\x78\x5c\x4c\x67\x71\x89\x94\xbf"
6187                           "\x47\xf1\x63\x7e\x1c\x59\xbd\xc5"
6188                           "\x7f\x44\x0a\x0c\x01\x18\x07\x92"
6189                           "\xe1\xd3\x51\xce\x32\x6d\x0c\x5b",
6190                 .ilen   = 48,
6191                 .result = "\xc2\x54\xc8\xde\x78\x87\x77\x40"
6192                           "\x49\x71\xe4\xb7\xe7\xcb\x76\x61"
6193                           "\x0a\x41\xb9\xe9\xc0\x76\x54\xab"
6194                           "\x04\x49\x3b\x19\x93\x57\x25\x5d",
6195                 .rlen   = 32,
6196         },
6197 };
6198
6199 /* Cast5 test vectors from RFC 2144 */
6200 #define CAST5_ENC_TEST_VECTORS  3
6201 #define CAST5_DEC_TEST_VECTORS  3
6202
6203 static struct cipher_testvec cast5_enc_tv_template[] = {
6204         {
6205                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
6206                           "\x23\x45\x67\x89\x34\x56\x78\x9a",
6207                 .klen   = 16,
6208                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6209                 .ilen   = 8,
6210                 .result = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2",
6211                 .rlen   = 8,
6212         }, {
6213                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
6214                           "\x23\x45",
6215                 .klen   = 10,
6216                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6217                 .ilen   = 8,
6218                 .result = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b",
6219                 .rlen   = 8,
6220         }, {
6221                 .key    = "\x01\x23\x45\x67\x12",
6222                 .klen   = 5,
6223                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6224                 .ilen   = 8,
6225                 .result = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e",
6226                 .rlen   = 8,
6227         },
6228 };
6229
6230 static struct cipher_testvec cast5_dec_tv_template[] = {
6231         {
6232                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
6233                           "\x23\x45\x67\x89\x34\x56\x78\x9a",
6234                 .klen   = 16,
6235                 .input  = "\x23\x8b\x4f\xe5\x84\x7e\x44\xb2",
6236                 .ilen   = 8,
6237                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6238                 .rlen   = 8,
6239         }, {
6240                 .key    = "\x01\x23\x45\x67\x12\x34\x56\x78"
6241                           "\x23\x45",
6242                 .klen   = 10,
6243                 .input  = "\xeb\x6a\x71\x1a\x2c\x02\x27\x1b",
6244                 .ilen   = 8,
6245                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6246                 .rlen   = 8,
6247         }, {
6248                 .key    = "\x01\x23\x45\x67\x12",
6249                 .klen   = 5,
6250                 .input  = "\x7a\xc8\x16\xd1\x6e\x9b\x30\x2e",
6251                 .ilen   = 8,
6252                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6253                 .rlen   = 8,
6254         },
6255 };
6256
6257 /*
6258  * ARC4 test vectors from OpenSSL
6259  */
6260 #define ARC4_ENC_TEST_VECTORS   7
6261 #define ARC4_DEC_TEST_VECTORS   7
6262
6263 static struct cipher_testvec arc4_enc_tv_template[] = {
6264         {
6265                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6266                 .klen   = 8,
6267                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6268                 .ilen   = 8,
6269                 .result = "\x75\xb7\x87\x80\x99\xe0\xc5\x96",
6270                 .rlen   = 8,
6271         }, {
6272                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6273                 .klen   = 8,
6274                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
6275                 .ilen   = 8,
6276                 .result = "\x74\x94\xc2\xe7\x10\x4b\x08\x79",
6277                 .rlen   = 8,
6278         }, {
6279                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
6280                 .klen   = 8,
6281                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
6282                 .ilen   = 8,
6283                 .result = "\xde\x18\x89\x41\xa3\x37\x5d\x3a",
6284                 .rlen   = 8,
6285         }, {
6286                 .key    = "\xef\x01\x23\x45",
6287                 .klen   = 4,
6288                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
6289                           "\x00\x00\x00\x00\x00\x00\x00\x00"
6290                           "\x00\x00\x00\x00",
6291                 .ilen   = 20,
6292                 .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6293                           "\xbd\x61\x5a\x11\x62\xe1\xc7\xba"
6294                           "\x36\xb6\x78\x58",
6295                 .rlen   = 20,
6296         }, {
6297                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6298                 .klen   = 8,
6299                 .input  = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6300                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6301                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6302                           "\x12\x34\x56\x78",
6303                 .ilen   = 28,
6304                 .result = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89"
6305                           "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c"
6306                           "\x89\x2e\xbe\x30\x14\x3c\xe2\x87"
6307                           "\x40\x01\x1e\xcf",
6308                 .rlen   = 28,
6309         }, {
6310                 .key    = "\xef\x01\x23\x45",
6311                 .klen   = 4,
6312                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
6313                           "\x00\x00",
6314                 .ilen   = 10,
6315                 .result = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6316                           "\xbd\x61",
6317                 .rlen   = 10,
6318         }, {
6319                 .key    = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
6320                         "\x00\x00\x00\x00\x00\x00\x00\x00",
6321                 .klen   = 16,
6322                 .input  = "\x01\x23\x45\x67\x89\xAB\xCD\xEF",
6323                 .ilen   = 8,
6324                 .result = "\x69\x72\x36\x59\x1B\x52\x42\xB1",
6325                 .rlen   = 8,
6326         },
6327 };
6328
6329 static struct cipher_testvec arc4_dec_tv_template[] = {
6330         {
6331                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6332                 .klen   = 8,
6333                 .input  = "\x75\xb7\x87\x80\x99\xe0\xc5\x96",
6334                 .ilen   = 8,
6335                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6336                 .rlen   = 8,
6337         }, {
6338                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6339                 .klen   = 8,
6340                 .input  = "\x74\x94\xc2\xe7\x10\x4b\x08\x79",
6341                 .ilen   = 8,
6342                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
6343                 .rlen   = 8,
6344         }, {
6345                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
6346                 .klen   = 8,
6347                 .input  = "\xde\x18\x89\x41\xa3\x37\x5d\x3a",
6348                 .ilen   = 8,
6349                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
6350                 .rlen   = 8,
6351         }, {
6352                 .key    = "\xef\x01\x23\x45",
6353                 .klen   = 4,
6354                 .input  = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6355                           "\xbd\x61\x5a\x11\x62\xe1\xc7\xba"
6356                           "\x36\xb6\x78\x58",
6357                 .ilen   = 20,
6358                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00"
6359                           "\x00\x00\x00\x00\x00\x00\x00\x00"
6360                           "\x00\x00\x00\x00",
6361                 .rlen   = 20,
6362         }, {
6363                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef",
6364                 .klen   = 8,
6365                 .input  = "\x66\xa0\x94\x9f\x8a\xf7\xd6\x89"
6366                           "\x1f\x7f\x83\x2b\xa8\x33\xc0\x0c"
6367                           "\x89\x2e\xbe\x30\x14\x3c\xe2\x87"
6368                           "\x40\x01\x1e\xcf",
6369                 .ilen   = 28,
6370                 .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6371                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6372                           "\x12\x34\x56\x78\x9A\xBC\xDE\xF0"
6373                           "\x12\x34\x56\x78",
6374                 .rlen   = 28,
6375         }, {
6376                 .key    = "\xef\x01\x23\x45",
6377                 .klen   = 4,
6378                 .input  = "\xd6\xa1\x41\xa7\xec\x3c\x38\xdf"
6379                           "\xbd\x61",
6380                 .ilen   = 10,
6381                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00"
6382                           "\x00\x00",
6383                 .rlen   = 10,
6384         }, {
6385                 .key    = "\x01\x23\x45\x67\x89\xAB\xCD\xEF"
6386                         "\x00\x00\x00\x00\x00\x00\x00\x00",
6387                 .klen   = 16,
6388                 .input  = "\x69\x72\x36\x59\x1B\x52\x42\xB1",
6389                 .ilen   = 8,
6390                 .result = "\x01\x23\x45\x67\x89\xAB\xCD\xEF",
6391                 .rlen   = 8,
6392         },
6393 };
6394
6395 /*
6396  * TEA test vectors
6397  */
6398 #define TEA_ENC_TEST_VECTORS    4
6399 #define TEA_DEC_TEST_VECTORS    4
6400
6401 static struct cipher_testvec tea_enc_tv_template[] = {
6402         {
6403                 .key    = zeroed_string,
6404                 .klen   = 16,
6405                 .input  = zeroed_string,
6406                 .ilen   = 8,
6407                 .result = "\x0a\x3a\xea\x41\x40\xa9\xba\x94",
6408                 .rlen   = 8,
6409         }, {
6410                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6411                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6412                 .klen   = 16,
6413                 .input  = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6414                 .ilen   = 8,
6415                 .result = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09",
6416                 .rlen   = 8,
6417         }, {
6418                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6419                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6420                 .klen   = 16,
6421                 .input  = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6422                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6423                 .ilen   = 16,
6424                 .result = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e"
6425                           "\xdd\x89\xa1\x25\x04\x21\xdf\x95",
6426                 .rlen   = 16,
6427         }, {
6428                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6429                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6430                 .klen   = 16,
6431                 .input  = "\x54\x65\x61\x20\x69\x73\x20\x67"
6432                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6433                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6434                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6435                 .ilen   = 32,
6436                 .result = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47"
6437                           "\x94\x18\x95\x91\xa9\xfc\x49\xf8"
6438                           "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a"
6439                           "\x07\x89\x73\xc2\x45\x92\xc6\x90",
6440                 .rlen   = 32,
6441         }
6442 };
6443
6444 static struct cipher_testvec tea_dec_tv_template[] = {
6445         {
6446                 .key    = zeroed_string,
6447                 .klen   = 16,
6448                 .input  = "\x0a\x3a\xea\x41\x40\xa9\xba\x94",
6449                 .ilen   = 8,
6450                 .result = zeroed_string,
6451                 .rlen   = 8,
6452         }, {
6453                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6454                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6455                 .klen   = 16,
6456                 .input  = "\x77\x5d\x2a\x6a\xf6\xce\x92\x09",
6457                 .ilen   = 8,
6458                 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6459                 .rlen   = 8,
6460         }, {
6461                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6462                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6463                 .klen   = 16,
6464                 .input  = "\xbe\x7a\xbb\x81\x95\x2d\x1f\x1e"
6465                           "\xdd\x89\xa1\x25\x04\x21\xdf\x95",
6466                 .ilen   = 16,
6467                 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6468                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6469                 .rlen   = 16,
6470         }, {
6471                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6472                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6473                 .klen   = 16,
6474                 .input  = "\xe0\x4d\x5d\x3c\xb7\x8c\x36\x47"
6475                           "\x94\x18\x95\x91\xa9\xfc\x49\xf8"
6476                           "\x44\xd1\x2d\xc2\x99\xb8\x08\x2a"
6477                           "\x07\x89\x73\xc2\x45\x92\xc6\x90",
6478                 .ilen   = 32,
6479                 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
6480                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6481                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6482                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6483                 .rlen   = 32,
6484         }
6485 };
6486
6487 /*
6488  * XTEA test vectors
6489  */
6490 #define XTEA_ENC_TEST_VECTORS   4
6491 #define XTEA_DEC_TEST_VECTORS   4
6492
6493 static struct cipher_testvec xtea_enc_tv_template[] = {
6494         {
6495                 .key    = zeroed_string,
6496                 .klen   = 16,
6497                 .input  = zeroed_string,
6498                 .ilen   = 8,
6499                 .result = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7",
6500                 .rlen   = 8,
6501         }, {
6502                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6503                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6504                 .klen   = 16,
6505                 .input  = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6506                 .ilen   = 8,
6507                 .result = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8",
6508                 .rlen   = 8,
6509         }, {
6510                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6511                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6512                 .klen   = 16,
6513                 .input  = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6514                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6515                 .ilen   = 16,
6516                 .result = "\x3e\xce\xae\x22\x60\x56\xa8\x9d"
6517                           "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a",
6518                 .rlen   = 16,
6519         }, {
6520                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6521                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6522                 .klen   = 16,
6523                 .input  = "\x54\x65\x61\x20\x69\x73\x20\x67"
6524                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6525                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6526                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6527                 .ilen   = 32,
6528                 .result = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a"
6529                           "\x86\xff\x6f\xd0\xe3\x87\x70\x07"
6530                           "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4"
6531                           "\x73\xa2\xfa\xc9\x16\x59\x5d\x81",
6532                 .rlen   = 32,
6533         }
6534 };
6535
6536 static struct cipher_testvec xtea_dec_tv_template[] = {
6537         {
6538                 .key    = zeroed_string,
6539                 .klen   = 16,
6540                 .input  = "\xd8\xd4\xe9\xde\xd9\x1e\x13\xf7",
6541                 .ilen   = 8,
6542                 .result = zeroed_string,
6543                 .rlen   = 8,
6544         }, {
6545                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6546                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6547                 .klen   = 16,
6548                 .input  = "\x94\xeb\xc8\x96\x84\x6a\x49\xa8",
6549                 .ilen   = 8,
6550                 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6551                 .rlen   = 8,
6552         }, {
6553                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6554                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6555                 .klen   = 16,
6556                 .input  = "\x3e\xce\xae\x22\x60\x56\xa8\x9d"
6557                           "\x77\x4d\xd4\xb4\x87\x24\xe3\x9a",
6558                 .ilen   = 16,
6559                 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6560                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6561                 .rlen   = 16,
6562         }, {
6563                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6564                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6565                 .klen   = 16,
6566                 .input  = "\x99\x81\x9f\x5d\x6f\x4b\x31\x3a"
6567                           "\x86\xff\x6f\xd0\xe3\x87\x70\x07"
6568                           "\x4d\xb8\xcf\xf3\x99\x50\xb3\xd4"
6569                           "\x73\xa2\xfa\xc9\x16\x59\x5d\x81",
6570                 .ilen   = 32,
6571                 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
6572                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6573                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6574                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6575                 .rlen   = 32,
6576         }
6577 };
6578
6579 /*
6580  * KHAZAD test vectors.
6581  */
6582 #define KHAZAD_ENC_TEST_VECTORS 5
6583 #define KHAZAD_DEC_TEST_VECTORS 5
6584
6585 static struct cipher_testvec khazad_enc_tv_template[] = {
6586         {
6587                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
6588                           "\x00\x00\x00\x00\x00\x00\x00\x00",
6589                 .klen   = 16,
6590                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
6591                 .ilen   = 8,
6592                 .result = "\x49\xa4\xce\x32\xac\x19\x0e\x3f",
6593                 .rlen   = 8,
6594         }, {
6595                 .key    = "\x38\x38\x38\x38\x38\x38\x38\x38"
6596                           "\x38\x38\x38\x38\x38\x38\x38\x38",
6597                 .klen   = 16,
6598                 .input  = "\x38\x38\x38\x38\x38\x38\x38\x38",
6599                 .ilen   = 8,
6600                 .result = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9",
6601                 .rlen   = 8,
6602         }, {
6603                 .key    = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2"
6604                         "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6605                 .klen   = 16,
6606                 .input  = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6607                 .ilen   = 8,
6608                 .result = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c",
6609                 .rlen   = 8,
6610         }, {
6611                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6612                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6613                 .klen   = 16,
6614                 .input  = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6615                 .ilen   = 8,
6616                 .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6617                 .rlen   = 8,
6618         }, {
6619                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6620                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6621                 .klen   = 16,
6622                 .input  = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6623                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6624                 .ilen   = 16,
6625                 .result = "\x04\x74\xf5\x70\x50\x16\xd3\xb8"
6626                         "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6627                 .rlen   = 16,
6628         },
6629 };
6630
6631 static struct cipher_testvec khazad_dec_tv_template[] = {
6632         {
6633                 .key    = "\x80\x00\x00\x00\x00\x00\x00\x00"
6634                           "\x00\x00\x00\x00\x00\x00\x00\x00",
6635                 .klen   = 16,
6636                 .input  = "\x49\xa4\xce\x32\xac\x19\x0e\x3f",
6637                 .ilen   = 8,
6638                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
6639                 .rlen   = 8,
6640         }, {
6641                 .key    = "\x38\x38\x38\x38\x38\x38\x38\x38"
6642                           "\x38\x38\x38\x38\x38\x38\x38\x38",
6643                 .klen   = 16,
6644                 .input  = "\x7e\x82\x12\xa1\xd9\x5b\xe4\xf9",
6645                 .ilen   = 8,
6646                 .result = "\x38\x38\x38\x38\x38\x38\x38\x38",
6647                 .rlen   = 8,
6648         }, {
6649                 .key    = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2"
6650                         "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6651                 .klen   = 16,
6652                 .input  = "\xaa\xbe\xc1\x95\xc5\x94\x1a\x9c",
6653                 .ilen   = 8,
6654                 .result = "\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2",
6655                 .rlen   = 8,
6656         }, {
6657                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6658                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6659                 .klen   = 16,
6660                 .input  = "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6661                 .ilen   = 8,
6662                 .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6663                 .rlen   = 8,
6664         }, {
6665                 .key    = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6666                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6667                 .klen   = 16,
6668                 .input  = "\x04\x74\xf5\x70\x50\x16\xd3\xb8"
6669                         "\x04\x74\xf5\x70\x50\x16\xd3\xb8",
6670                 .ilen   = 16,
6671                 .result = "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f"
6672                         "\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f",
6673                 .rlen   = 16,
6674         },
6675 };
6676
6677 /*
6678  * Anubis test vectors.
6679  */
6680
6681 #define ANUBIS_ENC_TEST_VECTORS                 5
6682 #define ANUBIS_DEC_TEST_VECTORS                 5
6683 #define ANUBIS_CBC_ENC_TEST_VECTORS             2
6684 #define ANUBIS_CBC_DEC_TEST_VECTORS             2
6685
6686 static struct cipher_testvec anubis_enc_tv_template[] = {
6687         {
6688                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6689                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6690                 .klen   = 16,
6691                 .input  = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6692                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6693                 .ilen   = 16,
6694                 .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6695                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90",
6696                 .rlen   = 16,
6697         }, {
6698
6699                 .key    = "\x03\x03\x03\x03\x03\x03\x03\x03"
6700                           "\x03\x03\x03\x03\x03\x03\x03\x03"
6701                           "\x03\x03\x03\x03",
6702                 .klen   = 20,
6703                 .input  = "\x03\x03\x03\x03\x03\x03\x03\x03"
6704                           "\x03\x03\x03\x03\x03\x03\x03\x03",
6705                 .ilen   = 16,
6706                 .result = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49"
6707                           "\x87\x41\x6f\x82\x0a\x98\x64\xae",
6708                 .rlen   = 16,
6709         }, {
6710                 .key    = "\x24\x24\x24\x24\x24\x24\x24\x24"
6711                           "\x24\x24\x24\x24\x24\x24\x24\x24"
6712                           "\x24\x24\x24\x24\x24\x24\x24\x24"
6713                           "\x24\x24\x24\x24",
6714                 .klen   = 28,
6715                 .input  = "\x24\x24\x24\x24\x24\x24\x24\x24"
6716                           "\x24\x24\x24\x24\x24\x24\x24\x24",
6717                 .ilen   = 16,
6718                 .result = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d"
6719                           "\x06\xd3\x61\x27\xfd\x13\x9e\xde",
6720                 .rlen   = 16,
6721         }, {
6722                 .key    = "\x25\x25\x25\x25\x25\x25\x25\x25"
6723                           "\x25\x25\x25\x25\x25\x25\x25\x25"
6724                           "\x25\x25\x25\x25\x25\x25\x25\x25"
6725                           "\x25\x25\x25\x25\x25\x25\x25\x25",
6726                 .klen   = 32,
6727                 .input  = "\x25\x25\x25\x25\x25\x25\x25\x25"
6728                           "\x25\x25\x25\x25\x25\x25\x25\x25",
6729                 .ilen   = 16,
6730                 .result = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4"
6731                         "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe",
6732                 .rlen   = 16,
6733         }, {
6734                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
6735                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6736                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6737                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6738                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6739                 .klen   = 40,
6740                 .input  = "\x35\x35\x35\x35\x35\x35\x35\x35"
6741                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6742                 .ilen   = 16,
6743                 .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6744                           "\x9e\xc6\x84\x0f\x17\x21\x07\xee",
6745                 .rlen   = 16,
6746         },
6747 };
6748
6749 static struct cipher_testvec anubis_dec_tv_template[] = {
6750         {
6751                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6752                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6753                 .klen   = 16,
6754                 .input  = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6755                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90",
6756                 .ilen   = 16,
6757                 .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6758                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6759                 .rlen   = 16,
6760         }, {
6761
6762                 .key    = "\x03\x03\x03\x03\x03\x03\x03\x03"
6763                           "\x03\x03\x03\x03\x03\x03\x03\x03"
6764                           "\x03\x03\x03\x03",
6765                 .klen   = 20,
6766                 .input  = "\xdb\xf1\x42\xf4\xd1\x8a\xc7\x49"
6767                           "\x87\x41\x6f\x82\x0a\x98\x64\xae",
6768                 .ilen   = 16,
6769                 .result = "\x03\x03\x03\x03\x03\x03\x03\x03"
6770                           "\x03\x03\x03\x03\x03\x03\x03\x03",
6771                 .rlen   = 16,
6772         }, {
6773                 .key    = "\x24\x24\x24\x24\x24\x24\x24\x24"
6774                           "\x24\x24\x24\x24\x24\x24\x24\x24"
6775                           "\x24\x24\x24\x24\x24\x24\x24\x24"
6776                           "\x24\x24\x24\x24",
6777                 .klen   = 28,
6778                 .input  = "\xfd\x1b\x4a\xe3\xbf\xf0\xad\x3d"
6779                           "\x06\xd3\x61\x27\xfd\x13\x9e\xde",
6780                 .ilen   = 16,
6781                 .result = "\x24\x24\x24\x24\x24\x24\x24\x24"
6782                           "\x24\x24\x24\x24\x24\x24\x24\x24",
6783                 .rlen   = 16,
6784         }, {
6785                 .key    = "\x25\x25\x25\x25\x25\x25\x25\x25"
6786                           "\x25\x25\x25\x25\x25\x25\x25\x25"
6787                           "\x25\x25\x25\x25\x25\x25\x25\x25"
6788                           "\x25\x25\x25\x25\x25\x25\x25\x25",
6789                 .klen   = 32,
6790                 .input  = "\x1a\x91\xfb\x2b\xb7\x78\x6b\xc4"
6791                         "\x17\xd9\xff\x40\x3b\x0e\xe5\xfe",
6792                 .ilen   = 16,
6793                 .result = "\x25\x25\x25\x25\x25\x25\x25\x25"
6794                           "\x25\x25\x25\x25\x25\x25\x25\x25",
6795                 .rlen   = 16,
6796         }, {
6797                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
6798                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6799                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6800                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6801                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6802                 .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6803                          "\x9e\xc6\x84\x0f\x17\x21\x07\xee",
6804                 .klen   = 40,
6805                 .ilen   = 16,
6806                 .result = "\x35\x35\x35\x35\x35\x35\x35\x35"
6807                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6808                 .rlen   = 16,
6809         },
6810 };
6811
6812 static struct cipher_testvec anubis_cbc_enc_tv_template[] = {
6813         {
6814                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6815                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6816                 .klen   = 16,
6817                 .input  = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6818                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6819                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6820                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6821                 .ilen   = 32,
6822                 .result = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6823                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90"
6824                           "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66"
6825                           "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe",
6826                 .rlen   = 32,
6827         }, {
6828                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
6829                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6830                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6831                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6832                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6833                 .klen   = 40,
6834                 .input  = "\x35\x35\x35\x35\x35\x35\x35\x35"
6835                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6836                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6837                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6838                 .ilen   = 32,
6839                 .result = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6840                           "\x9e\xc6\x84\x0f\x17\x21\x07\xee"
6841                           "\xa2\xbc\x06\x98\xc6\x4b\xda\x75"
6842                           "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7",
6843                 .rlen   = 32,
6844         },
6845 };
6846
6847 static struct cipher_testvec anubis_cbc_dec_tv_template[] = {
6848         {
6849                 .key    = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6850                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6851                 .klen   = 16,
6852                 .input  = "\x6d\xc5\xda\xa2\x26\x7d\x62\x6f"
6853                           "\x08\xb7\x52\x8e\x6e\x6e\x86\x90"
6854                           "\x86\xd8\xb5\x6f\x98\x5e\x8a\x66"
6855                           "\x4f\x1f\x78\xa1\xbb\x37\xf1\xbe",
6856                 .ilen   = 32,
6857                 .result = "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6858                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6859                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe"
6860                           "\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe",
6861                 .rlen   = 32,
6862         }, {
6863                 .key    = "\x35\x35\x35\x35\x35\x35\x35\x35"
6864                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6865                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6866                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6867                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6868                 .klen   = 40,
6869                 .input = "\xa5\x2c\x85\x6f\x9c\xba\xa0\x97"
6870                           "\x9e\xc6\x84\x0f\x17\x21\x07\xee"
6871                           "\xa2\xbc\x06\x98\xc6\x4b\xda\x75"
6872                           "\x2e\xaa\xbe\x58\xce\x01\x5b\xc7",
6873                 .ilen   = 32,
6874                 .result = "\x35\x35\x35\x35\x35\x35\x35\x35"
6875                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6876                           "\x35\x35\x35\x35\x35\x35\x35\x35"
6877                           "\x35\x35\x35\x35\x35\x35\x35\x35",
6878                 .rlen   = 32,
6879         },
6880 };
6881
6882 /*
6883  * XETA test vectors
6884  */
6885 #define XETA_ENC_TEST_VECTORS   4
6886 #define XETA_DEC_TEST_VECTORS   4
6887
6888 static struct cipher_testvec xeta_enc_tv_template[] = {
6889         {
6890                 .key    = zeroed_string,
6891                 .klen   = 16,
6892                 .input  = zeroed_string,
6893                 .ilen   = 8,
6894                 .result = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45",
6895                 .rlen   = 8,
6896         }, {
6897                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6898                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6899                 .klen   = 16,
6900                 .input  = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6901                 .ilen   = 8,
6902                 .result = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3",
6903                 .rlen   = 8,
6904         }, {
6905                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6906                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6907                 .klen   = 16,
6908                 .input  = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6909                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6910                 .ilen   = 16,
6911                 .result = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea"
6912                           "\x61\x35\xaa\xed\xb5\xcb\x71\x2c",
6913                 .rlen   = 16,
6914         }, {
6915                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6916                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6917                 .klen   = 16,
6918                 .input  = "\x54\x65\x61\x20\x69\x73\x20\x67"
6919                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6920                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6921                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6922                 .ilen   = 32,
6923                 .result = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1"
6924                           "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4"
6925                           "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f"
6926                           "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5",
6927                 .rlen   = 32,
6928         }
6929 };
6930
6931 static struct cipher_testvec xeta_dec_tv_template[] = {
6932         {
6933                 .key    = zeroed_string,
6934                 .klen   = 16,
6935                 .input  = "\xaa\x22\x96\xe5\x6c\x61\xf3\x45",
6936                 .ilen   = 8,
6937                 .result = zeroed_string,
6938                 .rlen   = 8,
6939         }, {
6940                 .key    = "\x2b\x02\x05\x68\x06\x14\x49\x76"
6941                           "\x77\x5d\x0e\x26\x6c\x28\x78\x43",
6942                 .klen   = 16,
6943                 .input  = "\x82\x3e\xeb\x35\xdc\xdd\xd9\xc3",
6944                 .ilen   = 8,
6945                 .result = "\x74\x65\x73\x74\x20\x6d\x65\x2e",
6946                 .rlen   = 8,
6947         }, {
6948                 .key    = "\x09\x65\x43\x11\x66\x44\x39\x25"
6949                           "\x51\x3a\x16\x10\x0a\x08\x12\x6e",
6950                 .klen   = 16,
6951                 .input  = "\xe2\x04\xdb\xf2\x89\x85\x9e\xea"
6952                           "\x61\x35\xaa\xed\xb5\xcb\x71\x2c",
6953                 .ilen   = 16,
6954                 .result = "\x6c\x6f\x6e\x67\x65\x72\x5f\x74"
6955                           "\x65\x73\x74\x5f\x76\x65\x63\x74",
6956                 .rlen   = 16,
6957         }, {
6958                 .key    = "\x4d\x76\x32\x17\x05\x3f\x75\x2c"
6959                           "\x5d\x04\x16\x36\x15\x72\x63\x2f",
6960                 .klen   = 16,
6961                 .input  = "\x0b\x03\xcd\x8a\xbe\x95\xfd\xb1"
6962                           "\xc1\x44\x91\x0b\xa5\xc9\x1b\xb4"
6963                           "\xa9\xda\x1e\x9e\xb1\x3e\x2a\x8f"
6964                           "\xea\xa5\x6a\x85\xd1\xf4\xa8\xa5",
6965                 .ilen   = 32,
6966                 .result = "\x54\x65\x61\x20\x69\x73\x20\x67"
6967                           "\x6f\x6f\x64\x20\x66\x6f\x72\x20"
6968                           "\x79\x6f\x75\x21\x21\x21\x20\x72"
6969                           "\x65\x61\x6c\x6c\x79\x21\x21\x21",
6970                 .rlen   = 32,
6971         }
6972 };
6973
6974 /*
6975  * FCrypt test vectors
6976  */
6977 #define FCRYPT_ENC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_enc_tv_template)
6978 #define FCRYPT_DEC_TEST_VECTORS ARRAY_SIZE(fcrypt_pcbc_dec_tv_template)
6979
6980 static struct cipher_testvec fcrypt_pcbc_enc_tv_template[] = {
6981         { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */
6982                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
6983                 .klen   = 8,
6984                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
6985                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00",
6986                 .ilen   = 8,
6987                 .result = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41",
6988                 .rlen   = 8,
6989         }, {
6990                 .key    = "\x11\x44\x77\xAA\xDD\x00\x33\x66",
6991                 .klen   = 8,
6992                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
6993                 .input  = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0",
6994                 .ilen   = 8,
6995                 .result = "\xD8\xED\x78\x74\x77\xEC\x06\x80",
6996                 .rlen   = 8,
6997         }, { /* From Arla */
6998                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
6999                 .klen   = 8,
7000                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7001                 .input  = "The quick brown fox jumps over the lazy dogs.\0\0",
7002                 .ilen   = 48,
7003                 .result = "\x00\xf0\x0e\x11\x75\xe6\x23\x82"
7004                           "\xee\xac\x98\x62\x44\x51\xe4\x84"
7005                           "\xc3\x59\xd8\xaa\x64\x60\xae\xf7"
7006                           "\xd2\xd9\x13\x79\x72\xa3\x45\x03"
7007                           "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1"
7008                           "\xf8\x91\x3c\xac\x44\x22\x92\xef",
7009                 .rlen   = 48,
7010         }, {
7011                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7012                 .klen   = 8,
7013                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7014                 .input  = "The quick brown fox jumps over the lazy dogs.\0\0",
7015                 .ilen   = 48,
7016                 .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7017                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7018                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7019                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7020                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7021                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7022                 .rlen   = 48,
7023         }, { /* split-page version */
7024                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7025                 .klen   = 8,
7026                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7027                 .input  = "The quick brown fox jumps over the lazy dogs.\0\0",
7028                 .ilen   = 48,
7029                 .result = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7030                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7031                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7032                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7033                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7034                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7035                 .rlen   = 48,
7036                 .np     = 2,
7037                 .tap    = { 20, 28 },
7038         }
7039 };
7040
7041 static struct cipher_testvec fcrypt_pcbc_dec_tv_template[] = {
7042         { /* http://www.openafs.org/pipermail/openafs-devel/2000-December/005320.html */
7043                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00",
7044                 .klen   = 8,
7045                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7046                 .input  = "\x0E\x09\x00\xC7\x3E\xF7\xED\x41",
7047                 .ilen   = 8,
7048                 .result = "\x00\x00\x00\x00\x00\x00\x00\x00",
7049                 .rlen   = 8,
7050         }, {
7051                 .key    = "\x11\x44\x77\xAA\xDD\x00\x33\x66",
7052                 .klen   = 8,
7053                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7054                 .input  = "\xD8\xED\x78\x74\x77\xEC\x06\x80",
7055                 .ilen   = 8,
7056                 .result = "\x12\x34\x56\x78\x9A\xBC\xDE\xF0",
7057                 .rlen   = 8,
7058         }, { /* From Arla */
7059                 .key    = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7060                 .klen   = 8,
7061                 .iv     = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7062                 .input  = "\x00\xf0\x0e\x11\x75\xe6\x23\x82"
7063                           "\xee\xac\x98\x62\x44\x51\xe4\x84"
7064                           "\xc3\x59\xd8\xaa\x64\x60\xae\xf7"
7065                           "\xd2\xd9\x13\x79\x72\xa3\x45\x03"
7066                           "\x23\xb5\x62\xd7\x0c\xf5\x27\xd1"
7067                           "\xf8\x91\x3c\xac\x44\x22\x92\xef",
7068                 .ilen   = 48,
7069                 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
7070                 .rlen   = 48,
7071         }, {
7072                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7073                 .klen   = 8,
7074                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7075                 .input  = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7076                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7077                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7078                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7079                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7080                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7081                 .ilen   = 48,
7082                 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
7083                 .rlen   = 48,
7084         }, { /* split-page version */
7085                 .key    = "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7086                 .klen   = 8,
7087                 .iv     = "\xf0\xe1\xd2\xc3\xb4\xa5\x96\x87",
7088                 .input  = "\xca\x90\xf5\x9d\xcb\xd4\xd2\x3c"
7089                           "\x01\x88\x7f\x3e\x31\x6e\x62\x9d"
7090                           "\xd8\xe0\x57\xa3\x06\x3a\x42\x58"
7091                           "\x2a\x28\xfe\x72\x52\x2f\xdd\xe0"
7092                           "\x19\x89\x09\x1c\x2a\x8e\x8c\x94"
7093                           "\xfc\xc7\x68\xe4\x88\xaa\xde\x0f",
7094                 .ilen   = 48,
7095                 .result = "The quick brown fox jumps over the lazy dogs.\0\0",
7096                 .rlen   = 48,
7097                 .np     = 2,
7098                 .tap    = { 20, 28 },
7099         }
7100 };
7101
7102 /*
7103  * CAMELLIA test vectors.
7104  */
7105 #define CAMELLIA_ENC_TEST_VECTORS 3
7106 #define CAMELLIA_DEC_TEST_VECTORS 3
7107 #define CAMELLIA_CBC_ENC_TEST_VECTORS 2
7108 #define CAMELLIA_CBC_DEC_TEST_VECTORS 2
7109
7110 static struct cipher_testvec camellia_enc_tv_template[] = {
7111         {
7112                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7113                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7114                 .klen   = 16,
7115                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7116                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7117                 .ilen   = 16,
7118                 .result = "\x67\x67\x31\x38\x54\x96\x69\x73"
7119                           "\x08\x57\x06\x56\x48\xea\xbe\x43",
7120                 .rlen   = 16,
7121         }, {
7122                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7123                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7124                           "\x00\x11\x22\x33\x44\x55\x66\x77",
7125                 .klen   = 24,
7126                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7127                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7128                 .ilen   = 16,
7129                 .result = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8"
7130                           "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9",
7131                 .rlen   = 16,
7132         }, {
7133                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7134                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7135                           "\x00\x11\x22\x33\x44\x55\x66\x77"
7136                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
7137                 .klen   = 32,
7138                 .input  = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7139                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7140                 .ilen   = 16,
7141                 .result = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c"
7142                           "\x20\xef\x7c\x91\x9e\x3a\x75\x09",
7143                 .rlen   = 16,
7144         },
7145 };
7146
7147 static struct cipher_testvec camellia_dec_tv_template[] = {
7148         {
7149                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7150                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7151                 .klen   = 16,
7152                 .input  = "\x67\x67\x31\x38\x54\x96\x69\x73"
7153                           "\x08\x57\x06\x56\x48\xea\xbe\x43",
7154                 .ilen   = 16,
7155                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7156                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7157                 .rlen   = 16,
7158         }, {
7159                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7160                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7161                           "\x00\x11\x22\x33\x44\x55\x66\x77",
7162                 .klen   = 24,
7163                 .input  = "\xb4\x99\x34\x01\xb3\xe9\x96\xf8"
7164                           "\x4e\xe5\xce\xe7\xd7\x9b\x09\xb9",
7165                 .ilen   = 16,
7166                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7167                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7168                 .rlen   = 16,
7169         }, {
7170                 .key    = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7171                           "\xfe\xdc\xba\x98\x76\x54\x32\x10"
7172                           "\x00\x11\x22\x33\x44\x55\x66\x77"
7173                           "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
7174                 .klen   = 32,
7175                 .input  = "\x9a\xcc\x23\x7d\xff\x16\xd7\x6c"
7176                           "\x20\xef\x7c\x91\x9e\x3a\x75\x09",
7177                 .ilen   = 16,
7178                 .result = "\x01\x23\x45\x67\x89\xab\xcd\xef"
7179                           "\xfe\xdc\xba\x98\x76\x54\x32\x10",
7180                 .rlen   = 16,
7181         },
7182 };
7183
7184 static struct cipher_testvec camellia_cbc_enc_tv_template[] = {
7185         {
7186                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
7187                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
7188                 .klen   = 16,
7189                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
7190                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
7191                 .input  = "Single block msg",
7192                 .ilen   = 16,
7193                 .result = "\xea\x32\x12\x76\x3b\x50\x10\xe7"
7194                           "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51",
7195                 .rlen   = 16,
7196         }, {
7197                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
7198                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
7199                 .klen   = 16,
7200                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
7201                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
7202                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
7203                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7204                           "\x10\x11\x12\x13\x14\x15\x16\x17"
7205                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
7206                 .ilen   = 32,
7207                 .result = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01"
7208                           "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd"
7209                           "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0"
7210                           "\x15\x78\xe0\x5e\xf2\xcb\x87\x16",
7211                 .rlen   = 32,
7212         },
7213 };
7214
7215 static struct cipher_testvec camellia_cbc_dec_tv_template[] = {
7216         {
7217                 .key    = "\x06\xa9\x21\x40\x36\xb8\xa1\x5b"
7218                           "\x51\x2e\x03\xd5\x34\x12\x00\x06",
7219                 .klen   = 16,
7220                 .iv     = "\x3d\xaf\xba\x42\x9d\x9e\xb4\x30"
7221                           "\xb4\x22\xda\x80\x2c\x9f\xac\x41",
7222                 .input  = "\xea\x32\x12\x76\x3b\x50\x10\xe7"
7223                           "\x18\xf6\xfd\x5d\xf6\x8f\x13\x51",
7224                 .ilen   = 16,
7225                 .result = "Single block msg",
7226                 .rlen   = 16,
7227         }, {
7228                 .key    = "\xc2\x86\x69\x6d\x88\x7c\x9a\xa0"
7229                           "\x61\x1b\xbb\x3e\x20\x25\xa4\x5a",
7230                 .klen   = 16,
7231                 .iv     = "\x56\x2e\x17\x99\x6d\x09\x3d\x28"
7232                           "\xdd\xb3\xba\x69\x5a\x2e\x6f\x58",
7233                 .input = "\xa5\xdf\x6e\x50\xda\x70\x6c\x01"
7234                           "\x4a\xab\xf3\xf2\xd6\xfc\x6c\xfd"
7235                           "\x19\xb4\x3e\x57\x1c\x02\x5e\xa0"
7236                           "\x15\x78\xe0\x5e\xf2\xcb\x87\x16",
7237                 .ilen   = 32,
7238                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
7239                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7240                           "\x10\x11\x12\x13\x14\x15\x16\x17"
7241                           "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
7242                 .rlen   = 32,
7243         },
7244 };
7245
7246 /*
7247  * SEED test vectors
7248  */
7249 #define SEED_ENC_TEST_VECTORS   4
7250 #define SEED_DEC_TEST_VECTORS   4
7251
7252 static struct cipher_testvec seed_enc_tv_template[] = {
7253         {
7254                 .key    = zeroed_string,
7255                 .klen   = 16,
7256                 .input  = "\x00\x01\x02\x03\x04\x05\x06\x07"
7257                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7258                 .ilen   = 16,
7259                 .result = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68"
7260                           "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb",
7261                 .rlen   = 16,
7262         }, {
7263                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
7264                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7265                 .klen   = 16,
7266                 .input  = zeroed_string,
7267                 .ilen   = 16,
7268                 .result = "\xc1\x1f\x22\xf2\x01\x40\x50\x50"
7269                           "\x84\x48\x35\x97\xe4\x37\x0f\x43",
7270                 .rlen   = 16,
7271         }, {
7272                 .key    = "\x47\x06\x48\x08\x51\xe6\x1b\xe8"
7273                           "\x5d\x74\xbf\xb3\xfd\x95\x61\x85",
7274                 .klen   = 16,
7275                 .input  = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9"
7276                           "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d",
7277                 .ilen   = 16,
7278                 .result = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d"
7279                           "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a",
7280                 .rlen   = 16,
7281         }, {
7282                 .key    = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d"
7283                           "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7",
7284                 .klen   = 16,
7285                 .input  = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14"
7286                           "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7",
7287                 .ilen   = 16,
7288                 .result = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9"
7289                           "\x5d\x0b\x36\x18\xf4\x0f\x51\x22",
7290                 .rlen   = 16,
7291         }
7292 };
7293
7294 static struct cipher_testvec seed_dec_tv_template[] = {
7295         {
7296                 .key    = zeroed_string,
7297                 .klen   = 16,
7298                 .input  = "\x5e\xba\xc6\xe0\x05\x4e\x16\x68"
7299                           "\x19\xaf\xf1\xcc\x6d\x34\x6c\xdb",
7300                 .ilen   = 16,
7301                 .result = "\x00\x01\x02\x03\x04\x05\x06\x07"
7302                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7303                 .rlen   = 16,
7304         }, {
7305                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
7306                           "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
7307                 .klen   = 16,
7308                 .input  = "\xc1\x1f\x22\xf2\x01\x40\x50\x50"
7309                           "\x84\x48\x35\x97\xe4\x37\x0f\x43",
7310                 .ilen   = 16,
7311                 .result = zeroed_string,
7312                 .rlen   = 16,
7313         }, {
7314                 .key    = "\x47\x06\x48\x08\x51\xe6\x1b\xe8"
7315                           "\x5d\x74\xbf\xb3\xfd\x95\x61\x85",
7316                 .klen   = 16,
7317                 .input  = "\xee\x54\xd1\x3e\xbc\xae\x70\x6d"
7318                           "\x22\x6b\xc3\x14\x2c\xd4\x0d\x4a",
7319                 .ilen   = 16,
7320                 .result = "\x83\xa2\xf8\xa2\x88\x64\x1f\xb9"
7321                           "\xa4\xe9\xa5\xcc\x2f\x13\x1c\x7d",
7322                 .rlen   = 16,
7323         }, {
7324                 .key    = "\x28\xdb\xc3\xbc\x49\xff\xd8\x7d"
7325                           "\xcf\xa5\x09\xb1\x1d\x42\x2b\xe7",
7326                 .klen   = 16,
7327                 .input  = "\x9b\x9b\x7b\xfc\xd1\x81\x3c\xb9"
7328                           "\x5d\x0b\x36\x18\xf4\x0f\x51\x22",
7329                 .ilen   = 16,
7330                 .result = "\xb4\x1e\x6b\xe2\xeb\xa8\x4a\x14"
7331                           "\x8e\x2e\xed\x84\x59\x3c\x5e\xc7",
7332                 .rlen   = 16,
7333         }
7334 };
7335
7336 #define SALSA20_STREAM_ENC_TEST_VECTORS 5
7337 static struct cipher_testvec salsa20_stream_enc_tv_template[] = {
7338         /*
7339         * Testvectors from verified.test-vectors submitted to ECRYPT.
7340         * They are truncated to size 39, 64, 111, 129 to test a variety
7341         * of input length.
7342         */
7343         { /* Set 3, vector 0 */
7344                 .key    = "\x00\x01\x02\x03\x04\x05\x06\x07"
7345                         "\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F",
7346                 .klen   = 16,
7347                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7348                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
7349                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7350                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7351                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7352                         "\x00\x00\x00\x00\x00\x00\x00",
7353                 .ilen   = 39,
7354                 .result = "\x2D\xD5\xC3\xF7\xBA\x2B\x20\xF7"
7355                          "\x68\x02\x41\x0C\x68\x86\x88\x89"
7356                          "\x5A\xD8\xC1\xBD\x4E\xA6\xC9\xB1"
7357                          "\x40\xFB\x9B\x90\xE2\x10\x49\xBF"
7358                          "\x58\x3F\x52\x79\x70\xEB\xC1",
7359                 .rlen   = 39,
7360         }, { /* Set 5, vector 0 */
7361                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
7362                         "\x00\x00\x00\x00\x00\x00\x00\x00",
7363                 .klen   = 16,
7364                 .iv     = "\x80\x00\x00\x00\x00\x00\x00\x00",
7365                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
7366                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7367                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7368                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7369                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7370                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7371                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7372                         "\x00\x00\x00\x00\x00\x00\x00\x00",
7373                 .ilen   = 64,
7374                 .result = "\xB6\x6C\x1E\x44\x46\xDD\x95\x57"
7375                          "\xE5\x78\xE2\x23\xB0\xB7\x68\x01"
7376                          "\x7B\x23\xB2\x67\xBB\x02\x34\xAE"
7377                          "\x46\x26\xBF\x44\x3F\x21\x97\x76"
7378                          "\x43\x6F\xB1\x9F\xD0\xE8\x86\x6F"
7379                          "\xCD\x0D\xE9\xA9\x53\x8F\x4A\x09"
7380                          "\xCA\x9A\xC0\x73\x2E\x30\xBC\xF9"
7381                          "\x8E\x4F\x13\xE4\xB9\xE2\x01\xD9",
7382                 .rlen   = 64,
7383         }, { /* Set 3, vector 27 */
7384                 .key    = "\x1B\x1C\x1D\x1E\x1F\x20\x21\x22"
7385                         "\x23\x24\x25\x26\x27\x28\x29\x2A"
7386                         "\x2B\x2C\x2D\x2E\x2F\x30\x31\x32"
7387                         "\x33\x34\x35\x36\x37\x38\x39\x3A",
7388                 .klen   = 32,
7389                 .iv     = "\x00\x00\x00\x00\x00\x00\x00\x00",
7390                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
7391                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7392                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7393                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7394                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7395                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7396                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7397                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7398                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7399                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7400                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7401                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7402                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7403                         "\x00\x00\x00\x00\x00\x00\x00",
7404                 .ilen   = 111,
7405                 .result = "\xAE\x39\x50\x8E\xAC\x9A\xEC\xE7"
7406                          "\xBF\x97\xBB\x20\xB9\xDE\xE4\x1F"
7407                          "\x87\xD9\x47\xF8\x28\x91\x35\x98"
7408                          "\xDB\x72\xCC\x23\x29\x48\x56\x5E"
7409                          "\x83\x7E\x0B\xF3\x7D\x5D\x38\x7B"
7410                          "\x2D\x71\x02\xB4\x3B\xB5\xD8\x23"
7411                          "\xB0\x4A\xDF\x3C\xEC\xB6\xD9\x3B"
7412                          "\x9B\xA7\x52\xBE\xC5\xD4\x50\x59"
7413                          "\x15\x14\xB4\x0E\x40\xE6\x53\xD1"
7414                          "\x83\x9C\x5B\xA0\x92\x29\x6B\x5E"
7415                          "\x96\x5B\x1E\x2F\xD3\xAC\xC1\x92"
7416                          "\xB1\x41\x3F\x19\x2F\xC4\x3B\xC6"
7417                          "\x95\x46\x45\x54\xE9\x75\x03\x08"
7418                          "\x44\xAF\xE5\x8A\x81\x12\x09",
7419                 .rlen   = 111,
7420         }, { /* Set 5, vector 27 */
7421                 .key    = "\x00\x00\x00\x00\x00\x00\x00\x00"
7422                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7423                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7424                         "\x00\x00\x00\x00\x00\x00\x00\x00",
7425                 .klen   = 32,
7426                 .iv     = "\x00\x00\x00\x10\x00\x00\x00\x00",
7427                 .input  = "\x00\x00\x00\x00\x00\x00\x00\x00"
7428                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7429                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7430                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7431                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7432                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7433                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7434                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7435                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7436                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7437                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7438                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7439                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7440                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7441                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7442                         "\x00\x00\x00\x00\x00\x00\x00\x00"
7443                         "\x00",
7444                 .ilen   = 129,
7445                 .result = "\xD2\xDB\x1A\x5C\xF1\xC1\xAC\xDB"
7446                          "\xE8\x1A\x7A\x43\x40\xEF\x53\x43"
7447                          "\x5E\x7F\x4B\x1A\x50\x52\x3F\x8D"
7448                          "\x28\x3D\xCF\x85\x1D\x69\x6E\x60"
7449                          "\xF2\xDE\x74\x56\x18\x1B\x84\x10"
7450                          "\xD4\x62\xBA\x60\x50\xF0\x61\xF2"
7451                          "\x1C\x78\x7F\xC1\x24\x34\xAF\x58"
7452                          "\xBF\x2C\x59\xCA\x90\x77\xF3\xB0"
7453                          "\x5B\x4A\xDF\x89\xCE\x2C\x2F\xFC"
7454                          "\x67\xF0\xE3\x45\xE8\xB3\xB3\x75"
7455                          "\xA0\x95\x71\xA1\x29\x39\x94\xCA"
7456                          "\x45\x2F\xBD\xCB\x10\xB6\xBE\x9F"
7457                          "\x8E\xF9\xB2\x01\x0A\x5A\x0A\xB7"
7458                          "\x6B\x9D\x70\x8E\x4B\xD6\x2F\xCD"
7459                          "\x2E\x40\x48\x75\xE9\xE2\x21\x45"
7460                          "\x0B\xC9\xB6\xB5\x66\xBC\x9A\x59"
7461                          "\x5A",
7462                 .rlen   = 129,
7463         }, { /* large test vector generated using Crypto++ */
7464                 .key =  "\x00\x01\x02\x03\x04\x05\x06\x07"
7465                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7466                         "\x10\x11\x12\x13\x14\x15\x16\x17"
7467                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f",
7468                 .klen = 32,
7469                 .iv =   "\x00\x00\x00\x00\x00\x00\x00\x00"
7470                         "\x00\x00\x00\x00\x00\x00\x00\x00",
7471                 .input =
7472                         "\x00\x01\x02\x03\x04\x05\x06\x07"
7473                         "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
7474                         "\x10\x11\x12\x13\x14\x15\x16\x17"
7475                         "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
7476                         "\x20\x21\x22\x23\x24\x25\x26\x27"
7477                         "\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f"
7478                         "\x30\x31\x32\x33\x34\x35\x36\x37"
7479                         "\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f"
7480                         "\x40\x41\x42\x43\x44\x45\x46\x47"
7481                         "\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f"
7482                         "\x50\x51\x52\x53\x54\x55\x56\x57"
7483                         "\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"
7484                         "\x60\x61\x62\x63\x64\x65\x66\x67"
7485                         "\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f"
7486                         "\x70\x71\x72\x73\x74\x75\x76\x77"
7487                         "\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
7488                         "\x80\x81\x82\x83\x84\x85\x86\x87"
7489                         "\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
7490                         "\x90\x91\x92\x93\x94\x95\x96\x97"
7491                         "\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
7492                         "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7"
7493                         "\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
7494                         "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7"
7495                         "\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf"
7496                         "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7"
7497                         "\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
7498                         "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7"
7499                         "\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf"
7500                         "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7"
7501                         "\xe8\xe9\xea\xeb\xec\xed\xee\xef"
7502                         "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7"
7503                         "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
7504                         "\x00\x03\x06\x09\x0c\x0f\x12\x15"
7505                         "\x18\x1b\x1e\x21\x24\x27\x2a\x2d"
7506                         "\x30\x33\x36\x39\x3c\x3f\x42\x45"
7507                         "\x48\x4b\x4e\x51\x54\x57\x5a\x5d"
7508                         "\x60\x63\x66\x69\x6c\x6f\x72\x75"
7509                         "\x78\x7b\x7e\x81\x84\x87\x8a\x8d"
7510                         "\x90\x93\x96\x99\x9c\x9f\xa2\xa5"
7511                         "\xa8\xab\xae\xb1\xb4\xb7\xba\xbd"
7512                         "\xc0\xc3\xc6\xc9\xcc\xcf\xd2\xd5"
7513                         "\xd8\xdb\xde\xe1\xe4\xe7\xea\xed"
7514                         "\xf0\xf3\xf6\xf9\xfc\xff\x02\x05"
7515                         "\x08\x0b\x0e\x11\x14\x17\x1a\x1d"
7516                         "\x20\x23\x26\x29\x2c\x2f\x32\x35"
7517                         "\x38\x3b\x3e\x41\x44\x47\x4a\x4d"
7518                         "\x50\x53\x56\x59\x5c\x5f\x62\x65"
7519                         "\x68\x6b\x6e\x71\x74\x77\x7a\x7d"
7520                         "\x80\x83\x86\x89\x8c\x8f\x92\x95"
7521                         "\x98\x9b\x9e\xa1\xa4\xa7\xaa\xad"
7522                         "\xb0\xb3\xb6\xb9\xbc\xbf\xc2\xc5"
7523                         "\xc8\xcb\xce\xd1\xd4\xd7\xda\xdd"
7524                         "\xe0\xe3\xe6\xe9\xec\xef\xf2\xf5"
7525                         "\xf8\xfb\xfe\x01\x04\x07\x0a\x0d"
7526                         "\x10\x13\x16\x19\x1c\x1f\x22\x25"
7527                         "\x28\x2b\x2e\x31\x34\x37\x3a\x3d"
7528                         "\x40\x43\x46\x49\x4c\x4f\x52\x55"
7529                         "\x58\x5b\x5e\x61\x64\x67\x6a\x6d"
7530                         "\x70\x73\x76\x79\x7c\x7f\x82\x85"
7531                         "\x88\x8b\x8e\x91\x94\x97\x9a\x9d"
7532                         "\xa0\xa3\xa6\xa9\xac\xaf\xb2\xb5"
7533                         "\xb8\xbb\xbe\xc1\xc4\xc7\xca\xcd"
7534                         "\xd0\xd3\xd6\xd9\xdc\xdf\xe2\xe5"
7535                         "\xe8\xeb\xee\xf1\xf4\xf7\xfa\xfd"
7536                         "\x00\x05\x0a\x0f\x14\x19\x1e\x23"
7537                         "\x28\x2d\x32\x37\x3c\x41\x46\x4b"
7538                         "\x50\x55\x5a\x5f\x64\x69\x6e\x73"
7539                         "\x78\x7d\x82\x87\x8c\x91\x96\x9b"
7540                         "\xa0\xa5\xaa\xaf\xb4\xb9\xbe\xc3"
7541                         "\xc8\xcd\xd2\xd7\xdc\xe1\xe6\xeb"
7542                         "\xf0\xf5\xfa\xff\x04\x09\x0e\x13"
7543                         "\x18\x1d\x22\x27\x2c\x31\x36\x3b"
7544                         "\x40\x45\x4a\x4f\x54\x59\x5e\x63"
7545                         "\x68\x6d\x72\x77\x7c\x81\x86\x8b"
7546                         "\x90\x95\x9a\x9f\xa4\xa9\xae\xb3"
7547                         "\xb8\xbd\xc2\xc7\xcc\xd1\xd6\xdb"
7548                         "\xe0\xe5\xea\xef\xf4\xf9\xfe\x03"
7549                         "\x08\x0d\x12\x17\x1c\x21\x26\x2b"
7550                         "\x30\x35\x3a\x3f\x44\x49\x4e\x53"
7551                         "\x58\x5d\x62\x67\x6c\x71\x76\x7b"
7552                         "\x80\x85\x8a\x8f\x94\x99\x9e\xa3"
7553                         "\xa8\xad\xb2\xb7\xbc\xc1\xc6\xcb"
7554                         "\xd0\xd5\xda\xdf\xe4\xe9\xee\xf3"
7555                         "\xf8\xfd\x02\x07\x0c\x11\x16\x1b"
7556                         "\x20\x25\x2a\x2f\x34\x39\x3e\x43"
7557                         "\x48\x4d\x52\x57\x5c\x61\x66\x6b"
7558                         "\x70\x75\x7a\x7f\x84\x89\x8e\x93"
7559                         "\x98\x9d\xa2\xa7\xac\xb1\xb6\xbb"
7560                         "\xc0\xc5\xca\xcf\xd4\xd9\xde\xe3"
7561                         "\xe8\xed\xf2\xf7\xfc\x01\x06\x0b"
7562                         "\x10\x15\x1a\x1f\x24\x29\x2e\x33"
7563                         "\x38\x3d\x42\x47\x4c\x51\x56\x5b"
7564                         "\x60\x65\x6a\x6f\x74\x79\x7e\x83"
7565                         "\x88\x8d\x92\x97\x9c\xa1\xa6\xab"
7566                         "\xb0\xb5\xba\xbf\xc4\xc9\xce\xd3"
7567                         "\xd8\xdd\xe2\xe7\xec\xf1\xf6\xfb"
7568                         "\x00\x07\x0e\x15\x1c\x23\x2a\x31"
7569                         "\x38\x3f\x46\x4d\x54\x5b\x62\x69"
7570                         "\x70\x77\x7e\x85\x8c\x93\x9a\xa1"
7571                         "\xa8\xaf\xb6\xbd\xc4\xcb\xd2\xd9"
7572                         "\xe0\xe7\xee\xf5\xfc\x03\x0a\x11"
7573                         "\x18\x1f\x26\x2d\x34\x3b\x42\x49"
7574                         "\x50\x57\x5e\x65\x6c\x73\x7a\x81"
7575                         "\x88\x8f\x96\x9d\xa4\xab\xb2\xb9"
7576                         "\xc0\xc7\xce\xd5\xdc\xe3\xea\xf1"
7577                         "\xf8\xff\x06\x0d\x14\x1b\x22\x29"
7578                         "\x30\x37\x3e\x45\x4c\x53\x5a\x61"
7579                         "\x68\x6f\x76\x7d\x84\x8b\x92\x99"
7580                         "\xa0\xa7\xae\xb5\xbc\xc3\xca\xd1"
7581                         "\xd8\xdf\xe6\xed\xf4\xfb\x02\x09"
7582                         "\x10\x17\x1e\x25\x2c\x33\x3a\x41"
7583                         "\x48\x4f\x56\x5d\x64\x6b\x72\x79"
7584                         "\x80\x87\x8e\x95\x9c\xa3\xaa\xb1"
7585                         "\xb8\xbf\xc6\xcd\xd4\xdb\xe2\xe9"
7586                         "\xf0\xf7\xfe\x05\x0c\x13\x1a\x21"
7587                         "\x28\x2f\x36\x3d\x44\x4b\x52\x59"
7588                         "\x60\x67\x6e\x75\x7c\x83\x8a\x91"
7589                         "\x98\x9f\xa6\xad\xb4\xbb\xc2\xc9"
7590                         "\xd0\xd7\xde\xe5\xec\xf3\xfa\x01"
7591                         "\x08\x0f\x16\x1d\x24\x2b\x32\x39"
7592                         "\x40\x47\x4e\x55\x5c\x63\x6a\x71"
7593                         "\x78\x7f\x86\x8d\x94\x9b\xa2\xa9"
7594                         "\xb0\xb7\xbe\xc5\xcc\xd3\xda\xe1"
7595                         "\xe8\xef\xf6\xfd\x04\x0b\x12\x19"
7596                         "\x20\x27\x2e\x35\x3c\x43\x4a\x51"
7597                         "\x58\x5f\x66\x6d\x74\x7b\x82\x89"
7598                         "\x90\x97\x9e\xa5\xac\xb3\xba\xc1"
7599                         "\xc8\xcf\xd6\xdd\xe4\xeb\xf2\xf9"
7600                         "\x00\x09\x12\x1b\x24\x2d\x36\x3f"
7601                         "\x48\x51\x5a\x63\x6c\x75\x7e\x87"
7602                         "\x90\x99\xa2\xab\xb4\xbd\xc6\xcf"
7603                         "\xd8\xe1\xea\xf3\xfc\x05\x0e\x17"
7604                         "\x20\x29\x32\x3b\x44\x4d\x56\x5f"
7605                         "\x68\x71\x7a\x83\x8c\x95\x9e\xa7"
7606                         "\xb0\xb9\xc2\xcb\xd4\xdd\xe6\xef"
7607                         "\xf8\x01\x0a\x13\x1c\x25\x2e\x37"
7608                         "\x40\x49\x52\x5b\x64\x6d\x76\x7f"
7609                         "\x88\x91\x9a\xa3\xac\xb5\xbe\xc7"
7610                         "\xd0\xd9\xe2\xeb\xf4\xfd\x06\x0f"
7611                         "\x18\x21\x2a\x33\x3c\x45\x4e\x57"
7612                         "\x60\x69\x72\x7b\x84\x8d\x96\x9f"
7613                         "\xa8\xb1\xba\xc3\xcc\xd5\xde\xe7"
7614                         "\xf0\xf9\x02\x0b\x14\x1d\x26\x2f"
7615                         "\x38\x41\x4a\x53\x5c\x65\x6e\x77"
7616                         "\x80\x89\x92\x9b\xa4\xad\xb6\xbf"
7617                         "\xc8\xd1\xda\xe3\xec\xf5\xfe\x07"
7618                         "\x10\x19\x22\x2b\x34\x3d\x46\x4f"
7619                         "\x58\x61\x6a\x73\x7c\x85\x8e\x97"
7620                         "\xa0\xa9\xb2\xbb\xc4\xcd\xd6\xdf"
7621                         "\xe8\xf1\xfa\x03\x0c\x15\x1e\x27"
7622                         "\x30\x39\x42\x4b\x54\x5d\x66\x6f"
7623                         "\x78\x81\x8a\x93\x9c\xa5\xae\xb7"
7624                         "\xc0\xc9\xd2\xdb\xe4\xed\xf6\xff"
7625                         "\x08\x11\x1a\x23\x2c\x35\x3e\x47"
7626                         "\x50\x59\x62\x6b\x74\x7d\x86\x8f"
7627                         "\x98\xa1\xaa\xb3\xbc\xc5\xce\xd7"
7628                         "\xe0\xe9\xf2\xfb\x04\x0d\x16\x1f"
7629                         "\x28\x31\x3a\x43\x4c\x55\x5e\x67"
7630                         "\x70\x79\x82\x8b\x94\x9d\xa6\xaf"
7631                         "\xb8\xc1\xca\xd3\xdc\xe5\xee\xf7"
7632                         "\x00\x0b\x16\x21\x2c\x37\x42\x4d"
7633                         "\x58\x63\x6e\x79\x84\x8f\x9a\xa5"
7634                         "\xb0\xbb\xc6\xd1\xdc\xe7\xf2\xfd"
7635                         "\x08\x13\x1e\x29\x34\x3f\x4a\x55"
7636                         "\x60\x6b\x76\x81\x8c\x97\xa2\xad"
7637                         "\xb8\xc3\xce\xd9\xe4\xef\xfa\x05"
7638                         "\x10\x1b\x26\x31\x3c\x47\x52\x5d"
7639                         "\x68\x73\x7e\x89\x94\x9f\xaa\xb5"
7640                         "\xc0\xcb\xd6\xe1\xec\xf7\x02\x0d"
7641                         "\x18\x23\x2e\x39\x44\x4f\x5a\x65"
7642                         "\x70\x7b\x86\x91\x9c\xa7\xb2\xbd"
7643                         "\xc8\xd3\xde\xe9\xf4\xff\x0a\x15"
7644                         "\x20\x2b\x36\x41\x4c\x57\x62\x6d"
7645                         "\x78\x83\x8e\x99\xa4\xaf\xba\xc5"
7646                         "\xd0\xdb\xe6\xf1\xfc\x07\x12\x1d"
7647                         "\x28\x33\x3e\x49\x54\x5f\x6a\x75"
7648                         "\x80\x8b\x96\xa1\xac\xb7\xc2\xcd"
7649                         "\xd8\xe3\xee\xf9\x04\x0f\x1a\x25"
7650                         "\x30\x3b\x46\x51\x5c\x67\x72\x7d"
7651                         "\x88\x93\x9e\xa9\xb4\xbf\xca\xd5"
7652                         "\xe0\xeb\xf6\x01\x0c\x17\x22\x2d"
7653                         "\x38\x43\x4e\x59\x64\x6f\x7a\x85"
7654                         "\x90\x9b\xa6\xb1\xbc\xc7\xd2\xdd"
7655                         "\xe8\xf3\xfe\x09\x14\x1f\x2a\x35"
7656                         "\x40\x4b\x56\x61\x6c\x77\x82\x8d"
7657                         "\x98\xa3\xae\xb9\xc4\xcf\xda\xe5"
7658                         "\xf0\xfb\x06\x11\x1c\x27\x32\x3d"
7659                         "\x48\x53\x5e\x69\x74\x7f\x8a\x95"
7660                         "\xa0\xab\xb6\xc1\xcc\xd7\xe2\xed"
7661                         "\xf8\x03\x0e\x19\x24\x2f\x3a\x45"
7662                         "\x50\x5b\x66\x71\x7c\x87\x92\x9d"
7663                         "\xa8\xb3\xbe\xc9\xd4\xdf\xea\xf5"
7664                         "\x00\x0d\x1a\x27\x34\x41\x4e\x5b"
7665                         "\x68\x75\x82\x8f\x9c\xa9\xb6\xc3"
7666                         "\xd0\xdd\xea\xf7\x04\x11\x1e\x2b"
7667                         "\x38\x45\x52\x5f\x6c\x79\x86\x93"
7668                         "\xa0\xad\xba\xc7\xd4\xe1\xee\xfb"
7669                         "\x08\x15\x22\x2f\x3c\x49\x56\x63"
7670                         "\x70\x7d\x8a\x97\xa4\xb1\xbe\xcb"
7671                         "\xd8\xe5\xf2\xff\x0c\x19\x26\x33"
7672                         "\x40\x4d\x5a\x67\x74\x81\x8e\x9b"
7673                         "\xa8\xb5\xc2\xcf\xdc\xe9\xf6\x03"
7674                         "\x10\x1d\x2a\x37\x44\x51\x5e\x6b"
7675                         "\x78\x85\x92\x9f\xac\xb9\xc6\xd3"
7676                         "\xe0\xed\xfa\x07\x14\x21\x2e\x3b"
7677                         "\x48\x55\x62\x6f\x7c\x89\x96\xa3"
7678                         "\xb0\xbd\xca\xd7\xe4\xf1\xfe\x0b"
7679                         "\x18\x25\x32\x3f\x4c\x59\x66\x73"
7680                         "\x80\x8d\x9a\xa7\xb4\xc1\xce\xdb"
7681                         "\xe8\xf5\x02\x0f\x1c\x29\x36\x43"
7682                         "\x50\x5d\x6a\x77\x84\x91\x9e\xab"
7683                         "\xb8\xc5\xd2\xdf\xec\xf9\x06\x13"
7684                         "\x20\x2d\x3a\x47\x54\x61\x6e\x7b"
7685                         "\x88\x95\xa2\xaf\xbc\xc9\xd6\xe3"
7686                         "\xf0\xfd\x0a\x17\x24\x31\x3e\x4b"
7687                         "\x58\x65\x72\x7f\x8c\x99\xa6\xb3"
7688                         "\xc0\xcd\xda\xe7\xf4\x01\x0e\x1b"
7689                         "\x28\x35\x42\x4f\x5c\x69\x76\x83"
7690                         "\x90\x9d\xaa\xb7\xc4\xd1\xde\xeb"
7691                         "\xf8\x05\x12\x1f\x2c\x39\x46\x53"
7692                         "\x60\x6d\x7a\x87\x94\xa1\xae\xbb"
7693                         "\xc8\xd5\xe2\xef\xfc\x09\x16\x23"
7694                         "\x30\x3d\x4a\x57\x64\x71\x7e\x8b"
7695                         "\x98\xa5\xb2\xbf\xcc\xd9\xe6\xf3"
7696                         "\x00\x0f\x1e\x2d\x3c\x4b\x5a\x69"
7697                         "\x78\x87\x96\xa5\xb4\xc3\xd2\xe1"
7698                         "\xf0\xff\x0e\x1d\x2c\x3b\x4a\x59"
7699                         "\x68\x77\x86\x95\xa4\xb3\xc2\xd1"
7700                         "\xe0\xef\xfe\x0d\x1c\x2b\x3a\x49"
7701                         "\x58\x67\x76\x85\x94\xa3\xb2\xc1"
7702                         "\xd0\xdf\xee\xfd\x0c\x1b\x2a\x39"
7703                         "\x48\x57\x66\x75\x84\x93\xa2\xb1"
7704                         "\xc0\xcf\xde\xed\xfc\x0b\x1a\x29"
7705                         "\x38\x47\x56\x65\x74\x83\x92\xa1"
7706                         "\xb0\xbf\xce\xdd\xec\xfb\x0a\x19"
7707                         "\x28\x37\x46\x55\x64\x73\x82\x91"
7708                         "\xa0\xaf\xbe\xcd\xdc\xeb\xfa\x09"
7709                         "\x18\x27\x36\x45\x54\x63\x72\x81"
7710                         "\x90\x9f\xae\xbd\xcc\xdb\xea\xf9"
7711                         "\x08\x17\x26\x35\x44\x53\x62\x71"
7712                         "\x80\x8f\x9e\xad\xbc\xcb\xda\xe9"
7713                         "\xf8\x07\x16\x25\x34\x43\x52\x61"
7714                         "\x70\x7f\x8e\x9d\xac\xbb\xca\xd9"
7715                         "\xe8\xf7\x06\x15\x24\x33\x42\x51"
7716                         "\x60\x6f\x7e\x8d\x9c\xab\xba\xc9"
7717                         "\xd8\xe7\xf6\x05\x14\x23\x32\x41"
7718                         "\x50\x5f\x6e\x7d\x8c\x9b\xaa\xb9"
7719                         "\xc8\xd7\xe6\xf5\x04\x13\x22\x31"
7720                         "\x40\x4f\x5e\x6d\x7c\x8b\x9a\xa9"
7721                         "\xb8\xc7\xd6\xe5\xf4\x03\x12\x21"
7722                         "\x30\x3f\x4e\x5d\x6c\x7b\x8a\x99"
7723                         "\xa8\xb7\xc6\xd5\xe4\xf3\x02\x11"
7724                         "\x20\x2f\x3e\x4d\x5c\x6b\x7a\x89"
7725                         "\x98\xa7\xb6\xc5\xd4\xe3\xf2\x01"
7726                         "\x10\x1f\x2e\x3d\x4c\x5b\x6a\x79"
7727                         "\x88\x97\xa6\xb5\xc4\xd3\xe2\xf1"
7728                         "\x00\x11\x22\x33\x44\x55\x66\x77"
7729                         "\x88\x99\xaa\xbb\xcc\xdd\xee\xff"
7730                         "\x10\x21\x32\x43\x54\x65\x76\x87"
7731                         "\x98\xa9\xba\xcb\xdc\xed\xfe\x0f"
7732                         "\x20\x31\x42\x53\x64\x75\x86\x97"
7733                         "\xa8\xb9\xca\xdb\xec\xfd\x0e\x1f"
7734                         "\x30\x41\x52\x63\x74\x85\x96\xa7"
7735                         "\xb8\xc9\xda\xeb\xfc\x0d\x1e\x2f"
7736                         "\x40\x51\x62\x73\x84\x95\xa6\xb7"
7737                         "\xc8\xd9\xea\xfb\x0c\x1d\x2e\x3f"
7738                         "\x50\x61\x72\x83\x94\xa5\xb6\xc7"
7739                         "\xd8\xe9\xfa\x0b\x1c\x2d\x3e\x4f"
7740                         "\x60\x71\x82\x93\xa4\xb5\xc6\xd7"
7741                         "\xe8\xf9\x0a\x1b\x2c\x3d\x4e\x5f"
7742                         "\x70\x81\x92\xa3\xb4\xc5\xd6\xe7"
7743                         "\xf8\x09\x1a\x2b\x3c\x4d\x5e\x6f"
7744                         "\x80\x91\xa2\xb3\xc4\xd5\xe6\xf7"
7745                         "\x08\x19\x2a\x3b\x4c\x5d\x6e\x7f"
7746                         "\x90\xa1\xb2\xc3\xd4\xe5\xf6\x07"
7747                         "\x18\x29\x3a\x4b\x5c\x6d\x7e\x8f"
7748                         "\xa0\xb1\xc2\xd3\xe4\xf5\x06\x17"
7749                         "\x28\x39\x4a\x5b\x6c\x7d\x8e\x9f"
7750                         "\xb0\xc1\xd2\xe3\xf4\x05\x16\x27"
7751                         "\x38\x49\x5a\x6b\x7c\x8d\x9e\xaf"
7752                         "\xc0\xd1\xe2\xf3\x04\x15\x26\x37"
7753                         "\x48\x59\x6a\x7b\x8c\x9d\xae\xbf"
7754                         "\xd0\xe1\xf2\x03\x14\x25\x36\x47"
7755                         "\x58\x69\x7a\x8b\x9c\xad\xbe\xcf"
7756                         "\xe0\xf1\x02\x13\x24\x35\x46\x57"
7757                         "\x68\x79\x8a\x9b\xac\xbd\xce\xdf"
7758                         "\xf0\x01\x12\x23\x34\x45\x56\x67"
7759                         "\x78\x89\x9a\xab\xbc\xcd\xde\xef"
7760                         "\x00\x13\x26\x39\x4c\x5f\x72\x85"
7761                         "\x98\xab\xbe\xd1\xe4\xf7\x0a\x1d"
7762                         "\x30\x43\x56\x69\x7c\x8f\xa2\xb5"
7763                         "\xc8\xdb\xee\x01\x14\x27\x3a\x4d"
7764                         "\x60\x73\x86\x99\xac\xbf\xd2\xe5"
7765                         "\xf8\x0b\x1e\x31\x44\x57\x6a\x7d"
7766                         "\x90\xa3\xb6\xc9\xdc\xef\x02\x15"
7767                         "\x28\x3b\x4e\x61\x74\x87\x9a\xad"
7768                         "\xc0\xd3\xe6\xf9\x0c\x1f\x32\x45"
7769                         "\x58\x6b\x7e\x91\xa4\xb7\xca\xdd"
7770                         "\xf0\x03\x16\x29\x3c\x4f\x62\x75"
7771                         "\x88\x9b\xae\xc1\xd4\xe7\xfa\x0d"
7772                         "\x20\x33\x46\x59\x6c\x7f\x92\xa5"
7773                         "\xb8\xcb\xde\xf1\x04\x17\x2a\x3d"
7774                         "\x50\x63\x76\x89\x9c\xaf\xc2\xd5"
7775                         "\xe8\xfb\x0e\x21\x34\x47\x5a\x6d"
7776                         "\x80\x93\xa6\xb9\xcc\xdf\xf2\x05"
7777                         "\x18\x2b\x3e\x51\x64\x77\x8a\x9d"
7778                         "\xb0\xc3\xd6\xe9\xfc\x0f\x22\x35"
7779                         "\x48\x5b\x6e\x81\x94\xa7\xba\xcd"
7780                         "\xe0\xf3\x06\x19\x2c\x3f\x52\x65"
7781                         "\x78\x8b\x9e\xb1\xc4\xd7\xea\xfd"
7782                         "\x10\x23\x36\x49\x5c\x6f\x82\x95"
7783                         "\xa8\xbb\xce\xe1\xf4\x07\x1a\x2d"
7784                         "\x40\x53\x66\x79\x8c\x9f\xb2\xc5"
7785                         "\xd8\xeb\xfe\x11\x24\x37\x4a\x5d"
7786                         "\x70\x83\x96\xa9\xbc\xcf\xe2\xf5"
7787                         "\x08\x1b\x2e\x41\x54\x67\x7a\x8d"
7788                         "\xa0\xb3\xc6\xd9\xec\xff\x12\x25"
7789                         "\x38\x4b\x5e\x71\x84\x97\xaa\xbd"
7790                         "\xd0\xe3\xf6\x09\x1c\x2f\x42\x55"
7791                         "\x68\x7b\x8e\xa1\xb4\xc7\xda\xed"
7792                         "\x00\x15\x2a\x3f\x54\x69\x7e\x93"
7793                         "\xa8\xbd\xd2\xe7\xfc\x11\x26\x3b"
7794                         "\x50\x65\x7a\x8f\xa4\xb9\xce\xe3"
7795                         "\xf8\x0d\x22\x37\x4c\x61\x76\x8b"
7796                         "\xa0\xb5\xca\xdf\xf4\x09\x1e\x33"
7797                         "\x48\x5d\x72\x87\x9c\xb1\xc6\xdb"
7798                         "\xf0\x05\x1a\x2f\x44\x59\x6e\x83"
7799                         "\x98\xad\xc2\xd7\xec\x01\x16\x2b"
7800                         "\x40\x55\x6a\x7f\x94\xa9\xbe\xd3"
7801                         "\xe8\xfd\x12\x27\x3c\x51\x66\x7b"
7802                         "\x90\xa5\xba\xcf\xe4\xf9\x0e\x23"
7803                         "\x38\x4d\x62\x77\x8c\xa1\xb6\xcb"
7804                         "\xe0\xf5\x0a\x1f\x34\x49\x5e\x73"
7805                         "\x88\x9d\xb2\xc7\xdc\xf1\x06\x1b"
7806                         "\x30\x45\x5a\x6f\x84\x99\xae\xc3"
7807                         "\xd8\xed\x02\x17\x2c\x41\x56\x6b"
7808                         "\x80\x95\xaa\xbf\xd4\xe9\xfe\x13"
7809                         "\x28\x3d\x52\x67\x7c\x91\xa6\xbb"
7810                         "\xd0\xe5\xfa\x0f\x24\x39\x4e\x63"
7811                         "\x78\x8d\xa2\xb7\xcc\xe1\xf6\x0b"
7812                         "\x20\x35\x4a\x5f\x74\x89\x9e\xb3"
7813                         "\xc8\xdd\xf2\x07\x1c\x31\x46\x5b"
7814                         "\x70\x85\x9a\xaf\xc4\xd9\xee\x03"
7815                         "\x18\x2d\x42\x57\x6c\x81\x96\xab"
7816                         "\xc0\xd5\xea\xff\x14\x29\x3e\x53"
7817                         "\x68\x7d\x92\xa7\xbc\xd1\xe6\xfb"
7818                         "\x10\x25\x3a\x4f\x64\x79\x8e\xa3"
7819                         "\xb8\xcd\xe2\xf7\x0c\x21\x36\x4b"
7820                         "\x60\x75\x8a\x9f\xb4\xc9\xde\xf3"
7821                         "\x08\x1d\x32\x47\x5c\x71\x86\x9b"
7822                         "\xb0\xc5\xda\xef\x04\x19\x2e\x43"
7823                         "\x58\x6d\x82\x97\xac\xc1\xd6\xeb"
7824                         "\x00\x17\x2e\x45\x5c\x73\x8a\xa1"
7825                         "\xb8\xcf\xe6\xfd\x14\x2b\x42\x59"
7826                         "\x70\x87\x9e\xb5\xcc\xe3\xfa\x11"
7827                         "\x28\x3f\x56\x6d\x84\x9b\xb2\xc9"
7828                         "\xe0\xf7\x0e\x25\x3c\x53\x6a\x81"
7829                         "\x98\xaf\xc6\xdd\xf4\x0b\x22\x39"
7830                         "\x50\x67\x7e\x95\xac\xc3\xda\xf1"
7831                         "\x08\x1f\x36\x4d\x64\x7b\x92\xa9"
7832                         "\xc0\xd7\xee\x05\x1c\x33\x4a\x61"
7833                         "\x78\x8f\xa6\xbd\xd4\xeb\x02\x19"
7834                         "\x30\x47\x5e\x75\x8c\xa3\xba\xd1"
7835                         "\xe8\xff\x16\x2d\x44\x5b\x72\x89"
7836                         "\xa0\xb7\xce\xe5\xfc\x13\x2a\x41"
7837                         "\x58\x6f\x86\x9d\xb4\xcb\xe2\xf9"
7838                         "\x10\x27\x3e\x55\x6c\x83\x9a\xb1"
7839                         "\xc8\xdf\xf6\x0d\x24\x3b\x52\x69"
7840                         "\x80\x97\xae\xc5\xdc\xf3\x0a\x21"
7841                         "\x38\x4f\x66\x7d\x94\xab\xc2\xd9"
7842                         "\xf0\x07\x1e\x35\x4c\x63\x7a\x91"
7843                         "\xa8\xbf\xd6\xed\x04\x1b\x32\x49"
7844                         "\x60\x77\x8e\xa5\xbc\xd3\xea\x01"
7845                         "\x18\x2f\x46\x5d\x74\x8b\xa2\xb9"
7846                         "\xd0\xe7\xfe\x15\x2c\x43\x5a\x71"
7847                         "\x88\x9f\xb6\xcd\xe4\xfb\x12\x29"
7848                         "\x40\x57\x6e\x85\x9c\xb3\xca\xe1"
7849                         "\xf8\x0f\x26\x3d\x54\x6b\x82\x99"
7850                         "\xb0\xc7\xde\xf5\x0c\x23\x3a\x51"
7851                         "\x68\x7f\x96\xad\xc4\xdb\xf2\x09"
7852                         "\x20\x37\x4e\x65\x7c\x93\xaa\xc1"
7853                         "\xd8\xef\x06\x1d\x34\x4b\x62\x79"
7854                         "\x90\xa7\xbe\xd5\xec\x03\x1a\x31"
7855                         "\x48\x5f\x76\x8d\xa4\xbb\xd2\xe9"
7856                         "\x00\x19\x32\x4b\x64\x7d\x96\xaf"
7857                         "\xc8\xe1\xfa\x13\x2c\x45\x5e\x77"
7858                         "\x90\xa9\xc2\xdb\xf4\x0d\x26\x3f"
7859                         "\x58\x71\x8a\xa3\xbc\xd5\xee\x07"
7860                         "\x20\x39\x52\x6b\x84\x9d\xb6\xcf"
7861                         "\xe8\x01\x1a\x33\x4c\x65\x7e\x97"
7862                         "\xb0\xc9\xe2\xfb\x14\x2d\x46\x5f"
7863                         "\x78\x91\xaa\xc3\xdc\xf5\x0e\x27"
7864                         "\x40\x59\x72\x8b\xa4\xbd\xd6\xef"
7865                         "\x08\x21\x3a\x53\x6c\x85\x9e\xb7"
7866                         "\xd0\xe9\x02\x1b\x34\x4d\x66\x7f"
7867                         "\x98\xb1\xca\xe3\xfc\x15\x2e\x47"
7868                         "\x60\x79\x92\xab\xc4\xdd\xf6\x0f"
7869                         "\x28\x41\x5a\x73\x8c\xa5\xbe\xd7"
7870                         "\xf0\x09\x22\x3b\x54\x6d\x86\x9f"
7871                         "\xb8\xd1\xea\x03\x1c\x35\x4e\x67"
7872                         "\x80\x99\xb2\xcb\xe4\xfd\x16\x2f"
7873                         "\x48\x61\x7a\x93\xac\xc5\xde\xf7"
7874                         "\x10\x29\x42\x5b\x74\x8d\xa6\xbf"
7875                         "\xd8\xf1\x0a\x23\x3c\x55\x6e\x87"
7876                         "\xa0\xb9\xd2\xeb\x04\x1d\x36\x4f"
7877                         "\x68\x81\x9a\xb3\xcc\xe5\xfe\x17"
7878                         "\x30\x49\x62\x7b\x94\xad\xc6\xdf"
7879                         "\xf8\x11\x2a\x43\x5c\x75\x8e\xa7"
7880                         "\xc0\xd9\xf2\x0b\x24\x3d\x56\x6f"
7881                         "\x88\xa1\xba\xd3\xec\x05\x1e\x37"
7882                         "\x50\x69\x82\x9b\xb4\xcd\xe6\xff"
7883                         "\x18\x31\x4a\x63\x7c\x95\xae\xc7"
7884                         "\xe0\xf9\x12\x2b\x44\x5d\x76\x8f"
7885                         "\xa8\xc1\xda\xf3\x0c\x25\x3e\x57"
7886                         "\x70\x89\xa2\xbb\xd4\xed\x06\x1f"
7887                         "\x38\x51\x6a\x83\x9c\xb5\xce\xe7"
7888                         "\x00\x1b\x36\x51\x6c\x87\xa2\xbd"
7889                         "\xd8\xf3\x0e\x29\x44\x5f\x7a\x95"
7890                         "\xb0\xcb\xe6\x01\x1c\x37\x52\x6d"
7891                         "\x88\xa3\xbe\xd9\xf4\x0f\x2a\x45"
7892                         "\x60\x7b\x96\xb1\xcc\xe7\x02\x1d"
7893                         "\x38\x53\x6e\x89\xa4\xbf\xda\xf5"
7894                         "\x10\x2b\x46\x61\x7c\x97\xb2\xcd"
7895                         "\xe8\x03\x1e\x39\x54\x6f\x8a\xa5"
7896                         "\xc0\xdb\xf6\x11\x2c\x47\x62\x7d"
7897                         "\x98\xb3\xce\xe9\x04\x1f\x3a\x55"
7898                         "\x70\x8b\xa6\xc1\xdc\xf7\x12\x2d"
7899                         "\x48\x63\x7e\x99\xb4\xcf\xea\x05"
7900                         "\x20\x3b\x56\x71\x8c\xa7\xc2\xdd"
7901                         "\xf8\x13\x2e\x49\x64\x7f\x9a\xb5"
7902                         "\xd0\xeb\x06\x21\x3c\x57\x72\x8d"
7903                         "\xa8\xc3\xde\xf9\x14\x2f\x4a\x65"
7904                         "\x80\x9b\xb6\xd1\xec\x07\x22\x3d"
7905                         "\x58\x73\x8e\xa9\xc4\xdf\xfa\x15"
7906                         "\x30\x4b\x66\x81\x9c\xb7\xd2\xed"
7907                         "\x08\x23\x3e\x59\x74\x8f\xaa\xc5"
7908                         "\xe0\xfb\x16\x31\x4c\x67\x82\x9d"
7909                         "\xb8\xd3\xee\x09\x24\x3f\x5a\x75"
7910                         "\x90\xab\xc6\xe1\xfc\x17\x32\x4d"
7911                         "\x68\x83\x9e\xb9\xd4\xef\x0a\x25"
7912                         "\x40\x5b\x76\x91\xac\xc7\xe2\xfd"
7913                         "\x18\x33\x4e\x69\x84\x9f\xba\xd5"
7914                         "\xf0\x0b\x26\x41\x5c\x77\x92\xad"
7915                         "\xc8\xe3\xfe\x19\x34\x4f\x6a\x85"
7916                         "\xa0\xbb\xd6\xf1\x0c\x27\x42\x5d"
7917                         "\x78\x93\xae\xc9\xe4\xff\x1a\x35"
7918                         "\x50\x6b\x86\xa1\xbc\xd7\xf2\x0d"
7919                         "\x28\x43\x5e\x79\x94\xaf\xca\xe5"
7920                         "\x00\x1d\x3a\x57\x74\x91\xae\xcb"
7921                         "\xe8\x05\x22\x3f\x5c\x79\x96\xb3"
7922                         "\xd0\xed\x0a\x27\x44\x61\x7e\x9b"
7923                         "\xb8\xd5\xf2\x0f\x2c\x49\x66\x83"
7924                         "\xa0\xbd\xda\xf7\x14\x31\x4e\x6b"
7925                         "\x88\xa5\xc2\xdf\xfc\x19\x36\x53"
7926                         "\x70\x8d\xaa\xc7\xe4\x01\x1e\x3b"
7927                         "\x58\x75\x92\xaf\xcc\xe9\x06\x23"
7928                         "\x40\x5d\x7a\x97\xb4\xd1\xee\x0b"
7929                         "\x28\x45\x62\x7f\x9c\xb9\xd6\xf3"
7930                         "\x10\x2d\x4a\x67\x84\xa1\xbe\xdb"
7931                         "\xf8\x15\x32\x4f\x6c\x89\xa6\xc3"
7932                         "\xe0\xfd\x1a\x37\x54\x71\x8e\xab"
7933                         "\xc8\xe5\x02\x1f\x3c\x59\x76\x93"
7934                         "\xb0\xcd\xea\x07\x24\x41\x5e\x7b"
7935                         "\x98\xb5\xd2\xef\x0c\x29\x46\x63"
7936                         "\x80\x9d\xba\xd7\xf4\x11\x2e\x4b"
7937                         "\x68\x85\xa2\xbf\xdc\xf9\x16\x33"
7938                         "\x50\x6d\x8a\xa7\xc4\xe1\xfe\x1b"
7939                         "\x38\x55\x72\x8f\xac\xc9\xe6\x03"
7940                         "\x20\x3d\x5a\x77\x94\xb1\xce\xeb"
7941                         "\x08\x25\x42\x5f\x7c\x99\xb6\xd3"
7942                         "\xf0\x0d\x2a\x47\x64\x81\x9e\xbb"
7943                         "\xd8\xf5\x12\x2f\x4c\x69\x86\xa3"
7944                         "\xc0\xdd\xfa\x17\x34\x51\x6e\x8b"
7945                         "\xa8\xc5\xe2\xff\x1c\x39\x56\x73"
7946                         "\x90\xad\xca\xe7\x04\x21\x3e\x5b"
7947                         "\x78\x95\xb2\xcf\xec\x09\x26\x43"
7948                         "\x60\x7d\x9a\xb7\xd4\xf1\x0e\x2b"
7949                         "\x48\x65\x82\x9f\xbc\xd9\xf6\x13"
7950                         "\x30\x4d\x6a\x87\xa4\xc1\xde\xfb"
7951                         "\x18\x35\x52\x6f\x8c\xa9\xc6\xe3"
7952                         "\x00\x1f\x3e\x5d\x7c\x9b\xba\xd9"
7953                         "\xf8\x17\x36\x55\x74\x93\xb2\xd1"
7954                         "\xf0\x0f\x2e\x4d\x6c\x8b\xaa\xc9"
7955                         "\xe8\x07\x26\x45\x64\x83\xa2\xc1"
7956                         "\xe0\xff\x1e\x3d\x5c\x7b\x9a\xb9"
7957                         "\xd8\xf7\x16\x35\x54\x73\x92\xb1"
7958                         "\xd0\xef\x0e\x2d\x4c\x6b\x8a\xa9"
7959                         "\xc8\xe7\x06\x25\x44\x63\x82\xa1"
7960                         "\xc0\xdf\xfe\x1d\x3c\x5b\x7a\x99"
7961                         "\xb8\xd7\xf6\x15\x34\x53\x72\x91"
7962                         "\xb0\xcf\xee\x0d\x2c\x4b\x6a\x89"
7963                         "\xa8\xc7\xe6\x05\x24\x43\x62\x81"
7964                         "\xa0\xbf\xde\xfd\x1c\x3b\x5a\x79"
7965                         "\x98\xb7\xd6\xf5\x14\x33\x52\x71"
7966                         "\x90\xaf\xce\xed\x0c\x2b\x4a\x69"
7967                         "\x88\xa7\xc6\xe5\x04\x23\x42\x61"
7968                         "\x80\x9f\xbe\xdd\xfc\x1b\x3a\x59"
7969                         "\x78\x97\xb6\xd5\xf4\x13\x32\x51"
7970                         "\x70\x8f\xae\xcd\xec\x0b\x2a\x49"
7971                         "\x68\x87\xa6\xc5\xe4\x03\x22\x41"
7972                         "\x60\x7f\x9e\xbd\xdc\xfb\x1a\x39"
7973                         "\x58\x77\x96\xb5\xd4\xf3\x12\x31"
7974                         "\x50\x6f\x8e\xad\xcc\xeb\x0a\x29"
7975                         "\x48\x67\x86\xa5\xc4\xe3\x02\x21"
7976                         "\x40\x5f\x7e\x9d\xbc\xdb\xfa\x19"
7977                         "\x38\x57\x76\x95\xb4\xd3\xf2\x11"
7978                         "\x30\x4f\x6e\x8d\xac\xcb\xea\x09"
7979                         "\x28\x47\x66\x85\xa4\xc3\xe2\x01"
7980                         "\x20\x3f\x5e\x7d\x9c\xbb\xda\xf9"
7981                         "\x18\x37\x56\x75\x94\xb3\xd2\xf1"
7982                         "\x10\x2f\x4e\x6d\x8c\xab\xca\xe9"
7983                         "\x08\x27\x46\x65\x84\xa3\xc2\xe1"
7984                         "\x00\x21\x42\x63",
7985                 .ilen = 4100,
7986                 .result =
7987                         "\xb5\x81\xf5\x64\x18\x73\xe3\xf0"
7988                         "\x4c\x13\xf2\x77\x18\x60\x65\x5e"
7989                         "\x29\x01\xce\x98\x55\x53\xf9\x0c"
7990                         "\x2a\x08\xd5\x09\xb3\x57\x55\x56"
7991                         "\xc5\xe9\x56\x90\xcb\x6a\xa3\xc0"
7992                         "\xff\xc4\x79\xb4\xd2\x97\x5d\xc4"
7993                         "\x43\xd1\xfe\x94\x7b\x88\x06\x5a"
7994                         "\xb2\x9e\x2c\xfc\x44\x03\xb7\x90"
7995                         "\xa0\xc1\xba\x6a\x33\xb8\xc7\xb2"
7996                         "\x9d\xe1\x12\x4f\xc0\x64\xd4\x01"
7997                         "\xfe\x8c\x7a\x66\xf7\xe6\x5a\x91"
7998                         "\xbb\xde\x56\x86\xab\x65\x21\x30"
7999                         "\x00\x84\x65\x24\xa5\x7d\x85\xb4"
8000                         "\xe3\x17\xed\x3a\xb7\x6f\xb4\x0b"
8001                         "\x0b\xaf\x15\xae\x5a\x8f\xf2\x0c"
8002                         "\x2f\x27\xf4\x09\xd8\xd2\x96\xb7"
8003                         "\x71\xf2\xc5\x99\x4d\x7e\x7f\x75"
8004                         "\x77\x89\x30\x8b\x59\xdb\xa2\xb2"
8005                         "\xa0\xf3\x19\x39\x2b\xc5\x7e\x3f"
8006                         "\x4f\xd9\xd3\x56\x28\x97\x44\xdc"
8007                         "\xc0\x8b\x77\x24\xd9\x52\xe7\xc5"
8008                         "\xaf\xf6\x7d\x59\xb2\x44\x05\x1d"
8009                         "\xb1\xb0\x11\xa5\x0f\xec\x33\xe1"
8010                         "\x6d\x1b\x4e\x1f\xff\x57\x91\xb4"
8011                         "\x5b\x9a\x96\xc5\x53\xbc\xae\x20"
8012                         "\x3c\xbb\x14\xe2\xe8\x22\x33\xc1"
8013                         "\x5e\x76\x9e\x46\x99\xf6\x2a\x15"
8014                         "\xc6\x97\x02\xa0\x66\x43\xd1\xa6"
8015                         "\x31\xa6\x9f\xfb\xf4\xd3\x69\xe5"
8016                         "\xcd\x76\x95\xb8\x7a\x82\x7f\x21"
8017                         "\x45\xff\x3f\xce\x55\xf6\x95\x10"
8018                         "\x08\x77\x10\x43\xc6\xf3\x09\xe5"
8019                         "\x68\xe7\x3c\xad\x00\x52\x45\x0d"
8020                         "\xfe\x2d\xc6\xc2\x94\x8c\x12\x1d"
8021                         "\xe6\x25\xae\x98\x12\x8e\x19\x9c"
8022                         "\x81\x68\xb1\x11\xf6\x69\xda\xe3"
8023                         "\x62\x08\x18\x7a\x25\x49\x28\xac"
8024                         "\xba\x71\x12\x0b\xe4\xa2\xe5\xc7"
8025                         "\x5d\x8e\xec\x49\x40\x21\xbf\x5a"
8026                         "\x98\xf3\x02\x68\x55\x03\x7f\x8a"
8027                         "\xe5\x94\x0c\x32\x5c\x07\x82\x63"
8028                         "\xaf\x6f\x91\x40\x84\x8e\x52\x25"
8029                         "\xd0\xb0\x29\x53\x05\xe2\x50\x7a"
8030                         "\x34\xeb\xc9\x46\x20\xa8\x3d\xde"
8031                         "\x7f\x16\x5f\x36\xc5\x2e\xdc\xd1"
8032                         "\x15\x47\xc7\x50\x40\x6d\x91\xc5"
8033                         "\xe7\x93\x95\x1a\xd3\x57\xbc\x52"
8034                         "\x33\xee\x14\x19\x22\x52\x89\xa7"
8035                         "\x4a\x25\x56\x77\x4b\xca\xcf\x0a"
8036                         "\xe1\xf5\x35\x85\x30\x7e\x59\x4a"
8037                         "\xbd\x14\x5b\xdf\xe3\x46\xcb\xac"
8038                         "\x1f\x6c\x96\x0e\xf4\x81\xd1\x99"
8039                         "\xca\x88\x63\x3d\x02\x58\x6b\xa9"
8040                         "\xe5\x9f\xb3\x00\xb2\x54\xc6\x74"
8041                         "\x1c\xbf\x46\xab\x97\xcc\xf8\x54"
8042                         "\x04\x07\x08\x52\xe6\xc0\xda\x93"
8043                         "\x74\x7d\x93\x99\x5d\x78\x68\xa6"
8044                         "\x2e\x6b\xd3\x6a\x69\xcc\x12\x6b"
8045                         "\xd4\xc7\xa5\xc6\xe7\xf6\x03\x04"
8046                         "\x5d\xcd\x61\x5e\x17\x40\xdc\xd1"
8047                         "\x5c\xf5\x08\xdf\x5c\x90\x85\xa4"
8048                         "\xaf\xf6\x78\xbb\x0d\xf1\xf4\xa4"
8049                         "\x54\x26\x72\x9e\x61\xfa\x86\xcf"
8050                         "\xe8\x9e\xa1\xe0\xc7\x48\x23\xae"
8051                         "\x5a\x90\xae\x75\x0a\x74\x18\x89"
8052                         "\x05\xb1\x92\xb2\x7f\xd0\x1b\xa6"
8053                         "\x62\x07\x25\x01\xc7\xc2\x4f\xf9"
8054                         "\xe8\xfe\x63\x95\x80\x07\xb4\x26"
8055                         "\xcc\xd1\x26\xb6\xc4\x3f\x9e\xcb"
8056                         "\x8e\x3b\x2e\x44\x16\xd3\x10\x9a"
8057                         "\x95\x08\xeb\xc8\xcb\xeb\xbf\x6f"
8058                         "\x0b\xcd\x1f\xc8\xca\x86\xaa\xec"
8059                         "\x33\xe6\x69\xf4\x45\x25\x86\x3a"
8060                         "\x22\x94\x4f\x00\x23\x6a\x44\xc2"
8061                         "\x49\x97\x33\xab\x36\x14\x0a\x70"
8062                         "\x24\xc3\xbe\x04\x3b\x79\xa0\xf9"
8063                         "\xb8\xe7\x76\x29\x22\x83\xd7\xf2"
8064                         "\x94\xf4\x41\x49\xba\x5f\x7b\x07"
8065                         "\xb5\xfb\xdb\x03\x1a\x9f\xb6\x4c"
8066                         "\xc2\x2e\x37\x40\x49\xc3\x38\x16"
8067                         "\xe2\x4f\x77\x82\xb0\x68\x4c\x71"
8068                         "\x1d\x57\x61\x9c\xd9\x4e\x54\x99"
8069                         "\x47\x13\x28\x73\x3c\xbb\x00\x90"
8070                         "\xf3\x4d\xc9\x0e\xfd\xe7\xb1\x71"
8071                         "\xd3\x15\x79\xbf\xcc\x26\x2f\xbd"
8072                         "\xad\x6c\x50\x69\x6c\x3e\x6d\x80"
8073                         "\x9a\xea\x78\xaf\x19\xb2\x0d\x4d"
8074                         "\xad\x04\x07\xae\x22\x90\x4a\x93"
8075                         "\x32\x0e\x36\x9b\x1b\x46\xba\x3b"
8076                         "\xb4\xac\xc6\xd1\xa2\x31\x53\x3b"
8077                         "\x2a\x3d\x45\xfe\x03\x61\x10\x85"
8078                         "\x17\x69\xa6\x78\xcc\x6c\x87\x49"
8079                         "\x53\xf9\x80\x10\xde\x80\xa2\x41"
8080                         "\x6a\xc3\x32\x02\xad\x6d\x3c\x56"
8081                         "\x00\x71\x51\x06\xa7\xbd\xfb\xef"
8082                         "\x3c\xb5\x9f\xfc\x48\x7d\x53\x7c"
8083                         "\x66\xb0\x49\x23\xc4\x47\x10\x0e"
8084                         "\xe5\x6c\x74\x13\xe6\xc5\x3f\xaa"
8085                         "\xde\xff\x07\x44\xdd\x56\x1b\xad"
8086                         "\x09\x77\xfb\x5b\x12\xb8\x0d\x38"
8087                         "\x17\x37\x35\x7b\x9b\xbc\xfe\xd4"
8088                         "\x7e\x8b\xda\x7e\x5b\x04\xa7\x22"
8089                         "\xa7\x31\xa1\x20\x86\xc7\x1b\x99"
8090                         "\xdb\xd1\x89\xf4\x94\xa3\x53\x69"
8091                         "\x8d\xe7\xe8\x74\x11\x8d\x74\xd6"
8092                         "\x07\x37\x91\x9f\xfd\x67\x50\x3a"
8093                         "\xc9\xe1\xf4\x36\xd5\xa0\x47\xd1"
8094                         "\xf9\xe5\x39\xa3\x31\xac\x07\x36"
8095                         "\x23\xf8\x66\x18\x14\x28\x34\x0f"
8096                         "\xb8\xd0\xe7\x29\xb3\x04\x4b\x55"
8097                         "\x01\x41\xb2\x75\x8d\xcb\x96\x85"
8098                         "\x3a\xfb\xab\x2b\x9e\xfa\x58\x20"
8099                         "\x44\x1f\xc0\x14\x22\x75\x61\xe8"
8100                         "\xaa\x19\xcf\xf1\x82\x56\xf4\xd7"
8101                         "\x78\x7b\x3d\x5f\xb3\x9e\x0b\x8a"
8102                         "\x57\x50\xdb\x17\x41\x65\x4d\xa3"
8103                         "\x02\xc9\x9c\x9c\x53\xfb\x39\x39"
8104                         "\x9b\x1d\x72\x24\xda\xb7\x39\xbe"
8105                         "\x13\x3b\xfa\x29\xda\x9e\x54\x64"
8106                         "\x6e\xba\xd8\xa1\xcb\xb3\x36\xfa"
8107                         "\xcb\x47\x85\xe9\x61\x38\xbc\xbe"
8108                         "\xc5\x00\x38\x2a\x54\xf7\xc4\xb9"
8109                         "\xb3\xd3\x7b\xa0\xa0\xf8\x72\x7f"
8110                         "\x8c\x8e\x82\x0e\xc6\x1c\x75\x9d"
8111                         "\xca\x8e\x61\x87\xde\xad\x80\xd2"
8112                         "\xf5\xf9\x80\xef\x15\x75\xaf\xf5"
8113                         "\x80\xfb\xff\x6d\x1e\x25\xb7\x40"
8114                         "\x61\x6a\x39\x5a\x6a\xb5\x31\xab"
8115                         "\x97\x8a\x19\x89\x44\x40\xc0\xa6"
8116                         "\xb4\x4e\x30\x32\x7b\x13\xe7\x67"
8117                         "\xa9\x8b\x57\x04\xc2\x01\xa6\xf4"
8118                         "\x28\x99\xad\x2c\x76\xa3\x78\xc2"
8119                         "\x4a\xe6\xca\x5c\x50\x6a\xc1\xb0"
8120                         "\x62\x4b\x10\x8e\x7c\x17\x43\xb3"
8121                         "\x17\x66\x1c\x3e\x8d\x69\xf0\x5a"
8122                         "\x71\xf5\x97\xdc\xd1\x45\xdd\x28"
8123                         "\xf3\x5d\xdf\x53\x7b\x11\xe5\xbc"
8124                         "\x4c\xdb\x1b\x51\x6b\xe9\xfb\x3d"
8125                         "\xc1\xc3\x2c\xb9\x71\xf5\xb6\xb2"
8126                         "\x13\x36\x79\x80\x53\xe8\xd3\xa6"
8127                         "\x0a\xaf\xfd\x56\x97\xf7\x40\x8e"
8128                         "\x45\xce\xf8\xb0\x9e\x5c\x33\x82"
8129                         "\xb0\x44\x56\xfc\x05\x09\xe9\x2a"
8130                         "\xac\x26\x80\x14\x1d\xc8\x3a\x35"
8131                         "\x4c\x82\x97\xfd\x76\xb7\xa9\x0a"
8132                         "\x35\x58\x79\x8e\x0f\x66\xea\xaf"
8133                         "\x51\x6c\x09\xa9\x6e\x9b\xcb\x9a"
8134                         "\x31\x47\xa0\x2f\x7c\x71\xb4\x4a"
8135                         "\x11\xaa\x8c\x66\xc5\x64\xe6\x3a"
8136                         "\x54\xda\x24\x6a\xc4\x41\x65\x46"
8137                         "\x82\xa0\x0a\x0f\x5f\xfb\x25\xd0"
8138                         "\x2c\x91\xa7\xee\xc4\x81\x07\x86"
8139                         "\x75\x5e\x33\x69\x97\xe4\x2c\xa8"
8140                         "\x9d\x9f\x0b\x6a\xbe\xad\x98\xda"
8141                         "\x6d\x94\x41\xda\x2c\x1e\x89\xc4"
8142                         "\xc2\xaf\x1e\x00\x05\x0b\x83\x60"
8143                         "\xbd\x43\xea\x15\x23\x7f\xb9\xac"
8144                         "\xee\x4f\x2c\xaf\x2a\xf3\xdf\xd0"
8145                         "\xf3\x19\x31\xbb\x4a\x74\x84\x17"
8146                         "\x52\x32\x2c\x7d\x61\xe4\xcb\xeb"
8147                         "\x80\x38\x15\x52\xcb\x6f\xea\xe5"
8148                         "\x73\x9c\xd9\x24\x69\xc6\x95\x32"
8149                         "\x21\xc8\x11\xe4\xdc\x36\xd7\x93"
8150                         "\x38\x66\xfb\xb2\x7f\x3a\xb9\xaf"
8151                         "\x31\xdd\x93\x75\x78\x8a\x2c\x94"
8152                         "\x87\x1a\x58\xec\x9e\x7d\x4d\xba"
8153                         "\xe1\xe5\x4d\xfc\xbc\xa4\x2a\x14"
8154                         "\xef\xcc\xa7\xec\xab\x43\x09\x18"
8155                         "\xd3\xab\x68\xd1\x07\x99\x44\x47"
8156                         "\xd6\x83\x85\x3b\x30\xea\xa9\x6b"
8157                         "\x63\xea\xc4\x07\xfb\x43\x2f\xa4"
8158                         "\xaa\xb0\xab\x03\x89\xce\x3f\x8c"
8159                         "\x02\x7c\x86\x54\xbc\x88\xaf\x75"
8160                         "\xd2\xdc\x63\x17\xd3\x26\xf6\x96"
8161                         "\xa9\x3c\xf1\x61\x8c\x11\x18\xcc"
8162                         "\xd6\xea\x5b\xe2\xcd\xf0\xf1\xb2"
8163                         "\xe5\x35\x90\x1f\x85\x4c\x76\x5b"
8164                         "\x66\xce\x44\xa4\x32\x9f\xe6\x7b"
8165                         "\x71\x6e\x9f\x58\x15\x67\x72\x87"
8166                         "\x64\x8e\x3a\x44\x45\xd4\x76\xfa"
8167                         "\xc2\xf6\xef\x85\x05\x18\x7a\x9b"
8168                         "\xba\x41\x54\xac\xf0\xfc\x59\x12"
8169                         "\x3f\xdf\xa0\xe5\x8a\x65\xfd\x3a"
8170                         "\x62\x8d\x83\x2c\x03\xbe\x05\x76"
8171                         "\x2e\x53\x49\x97\x94\x33\xae\x40"
8172                         "\x81\x15\xdb\x6e\xad\xaa\xf5\x4b"
8173                         "\xe3\x98\x70\xdf\xe0\x7c\xcd\xdb"
8174                         "\x02\xd4\x7d\x2f\xc1\xe6\xb4\xf3"
8175                         "\xd7\x0d\x7a\xd9\x23\x9e\x87\x2d"
8176                         "\xce\x87\xad\xcc\x72\x05\x00\x29"
8177                         "\xdc\x73\x7f\x64\xc1\x15\x0e\xc2"
8178                         "\xdf\xa7\x5f\xeb\x41\xa1\xcd\xef"
8179                         "\x5c\x50\x79\x2a\x56\x56\x71\x8c"
8180                         "\xac\xc0\x79\x50\x69\xca\x59\x32"
8181                         "\x65\xf2\x54\xe4\x52\x38\x76\xd1"
8182                         "\x5e\xde\x26\x9e\xfb\x75\x2e\x11"
8183                         "\xb5\x10\xf4\x17\x73\xf5\x89\xc7"
8184                         "\x4f\x43\x5c\x8e\x7c\xb9\x05\x52"
8185                         "\x24\x40\x99\xfe\x9b\x85\x0b\x6c"
8186                         "\x22\x3e\x8b\xae\x86\xa1\xd2\x79"
8187                         "\x05\x68\x6b\xab\xe3\x41\x49\xed"
8188                         "\x15\xa1\x8d\x40\x2d\x61\xdf\x1a"
8189                         "\x59\xc9\x26\x8b\xef\x30\x4c\x88"
8190                         "\x4b\x10\xf8\x8d\xa6\x92\x9f\x4b"
8191                         "\xf3\xc4\x53\x0b\x89\x5d\x28\x92"
8192                         "\xcf\x78\xb2\xc0\x5d\xed\x7e\xfc"
8193                         "\xc0\x12\x23\x5f\x5a\x78\x86\x43"
8194                         "\x6e\x27\xf7\x5a\xa7\x6a\xed\x19"
8195                         "\x04\xf0\xb3\x12\xd1\xbd\x0e\x89"
8196                         "\x6e\xbc\x96\xa8\xd8\x49\x39\x9f"
8197                         "\x7e\x67\xf0\x2e\x3e\x01\xa9\xba"
8198                         "\xec\x8b\x62\x8e\xcb\x4a\x70\x43"
8199                         "\xc7\xc2\xc4\xca\x82\x03\x73\xe9"
8200                         "\x11\xdf\xcf\x54\xea\xc9\xb0\x95"
8201                         "\x51\xc0\x13\x3d\x92\x05\xfa\xf4"
8202                         "\xa9\x34\xc8\xce\x6c\x3d\x54\xcc"
8203                         "\xc4\xaf\xf1\xdc\x11\x44\x26\xa2"
8204                         "\xaf\xf1\x85\x75\x7d\x03\x61\x68"
8205                         "\x4e\x78\xc6\x92\x7d\x86\x7d\x77"
8206                         "\xdc\x71\x72\xdb\xc6\xae\xa1\xcb"
8207                         "\x70\x9a\x0b\x19\xbe\x4a\x6c\x2a"
8208                         "\xe2\xba\x6c\x64\x9a\x13\x28\xdf"
8209                         "\x85\x75\xe6\x43\xf6\x87\x08\x68"
8210                         "\x6e\xba\x6e\x79\x9f\x04\xbc\x23"
8211                         "\x50\xf6\x33\x5c\x1f\x24\x25\xbe"
8212                         "\x33\x47\x80\x45\x56\xa3\xa7\xd7"
8213                         "\x7a\xb1\x34\x0b\x90\x3c\x9c\xad"
8214                         "\x44\x5f\x9e\x0e\x9d\xd4\xbd\x93"
8215                         "\x5e\xfa\x3c\xe0\xb0\xd9\xed\xf3"
8216                         "\xd6\x2e\xff\x24\xd8\x71\x6c\xed"
8217                         "\xaf\x55\xeb\x22\xac\x93\x68\x32"
8218                         "\x05\x5b\x47\xdd\xc6\x4a\xcb\xc7"
8219                         "\x10\xe1\x3c\x92\x1a\xf3\x23\x78"
8220                         "\x2b\xa1\xd2\x80\xf4\x12\xb1\x20"
8221                         "\x8f\xff\x26\x35\xdd\xfb\xc7\x4e"
8222                         "\x78\xf1\x2d\x50\x12\x77\xa8\x60"
8223                         "\x7c\x0f\xf5\x16\x2f\x63\x70\x2a"
8224                         "\xc0\x96\x80\x4e\x0a\xb4\x93\x35"
8225                         "\x5d\x1d\x3f\x56\xf7\x2f\xbb\x90"
8226                         "\x11\x16\x8f\xa2\xec\x47\xbe\xac"
8227                         "\x56\x01\x26\x56\xb1\x8c\xb2\x10"
8228                         "\xf9\x1a\xca\xf5\xd1\xb7\x39\x20"
8229                         "\x63\xf1\x69\x20\x4f\x13\x12\x1f"
8230                         "\x5b\x65\xfc\x98\xf7\xc4\x7a\xbe"
8231                         "\xf7\x26\x4d\x2b\x84\x7b\x42\xad"
8232                         "\xd8\x7a\x0a\xb4\xd8\x74\xbf\xc1"
8233                         "\xf0\x6e\xb4\x29\xa3\xbb\xca\x46"
8234                         "\x67\x70\x6a\x2d\xce\x0e\xa2\x8a"
8235                         "\xa9\x87\xbf\x05\xc4\xc1\x04\xa3"
8236                         "\xab\xd4\x45\x43\x8c\xb6\x02\xb0"
8237                         "\x41\xc8\xfc\x44\x3d\x59\xaa\x2e"
8238                         "\x44\x21\x2a\x8d\x88\x9d\x57\xf4"
8239                         "\xa0\x02\x77\xb8\xa6\xa0\xe6\x75"
8240                         "\x5c\x82\x65\x3e\x03\x5c\x29\x8f"
8241                         "\x38\x55\xab\x33\x26\xef\x9f\x43"
8242                         "\x52\xfd\x68\xaf\x36\xb4\xbb\x9a"
8243                         "\x58\x09\x09\x1b\xc3\x65\x46\x46"
8244                         "\x1d\xa7\x94\x18\x23\x50\x2c\xca"
8245                         "\x2c\x55\x19\x97\x01\x9d\x93\x3b"
8246                         "\x63\x86\xf2\x03\x67\x45\xd2\x72"
8247                         "\x28\x52\x6c\xf4\xe3\x1c\xb5\x11"
8248                         "\x13\xf1\xeb\x21\xc7\xd9\x56\x82"
8249                         "\x2b\x82\x39\xbd\x69\x54\xed\x62"
8250                         "\xc3\xe2\xde\x73\xd4\x6a\x12\xae"
8251                         "\x13\x21\x7f\x4b\x5b\xfc\xbf\xe8"
8252                         "\x2b\xbe\x56\xba\x68\x8b\x9a\xb1"
8253                         "\x6e\xfa\xbf\x7e\x5a\x4b\xf1\xac"
8254                         "\x98\x65\x85\xd1\x93\x53\xd3\x7b"
8255                         "\x09\xdd\x4b\x10\x6d\x84\xb0\x13"
8256                         "\x65\xbd\xcf\x52\x09\xc4\x85\xe2"
8257                         "\x84\x74\x15\x65\xb7\xf7\x51\xaf"
8258                         "\x55\xad\xa4\xd1\x22\x54\x70\x94"
8259                         "\xa0\x1c\x90\x41\xfd\x99\xd7\x5a"
8260                         "\x31\xef\xaa\x25\xd0\x7f\x4f\xea"
8261                         "\x1d\x55\x42\xe5\x49\xb0\xd0\x46"
8262                         "\x62\x36\x43\xb2\x82\x15\x75\x50"
8263                         "\xa4\x72\xeb\x54\x27\x1f\x8a\xe4"
8264                         "\x7d\xe9\x66\xc5\xf1\x53\xa4\xd1"
8265                         "\x0c\xeb\xb8\xf8\xbc\xd4\xe2\xe7"
8266                         "\xe1\xf8\x4b\xcb\xa9\xa1\xaf\x15"
8267                         "\x83\xcb\x72\xd0\x33\x79\x00\x2d"
8268                         "\x9f\xd7\xf1\x2e\x1e\x10\xe4\x45"
8269                         "\xc0\x75\x3a\x39\xea\x68\xf7\x5d"
8270                         "\x1b\x73\x8f\xe9\x8e\x0f\x72\x47"
8271                         "\xae\x35\x0a\x31\x7a\x14\x4d\x4a"
8272                         "\x6f\x47\xf7\x7e\x91\x6e\x74\x8b"
8273                         "\x26\x47\xf9\xc3\xf9\xde\x70\xf5"
8274                         "\x61\xab\xa9\x27\x9f\x82\xe4\x9c"
8275                         "\x89\x91\x3f\x2e\x6a\xfd\xb5\x49"
8276                         "\xe9\xfd\x59\x14\x36\x49\x40\x6d"
8277                         "\x32\xd8\x85\x42\xf3\xa5\xdf\x0c"
8278                         "\xa8\x27\xd7\x54\xe2\x63\x2f\xf2"
8279                         "\x7e\x8b\x8b\xe7\xf1\x9a\x95\x35"
8280                         "\x43\xdc\x3a\xe4\xb6\xf4\xd0\xdf"
8281                         "\x9c\xcb\x94\xf3\x21\xa0\x77\x50"
8282                         "\xe2\xc6\xc4\xc6\x5f\x09\x64\x5b"
8283                         "\x92\x90\xd8\xe1\xd1\xed\x4b\x42"
8284                         "\xd7\x37\xaf\x65\x3d\x11\x39\xb6"
8285                         "\x24\x8a\x60\xae\xd6\x1e\xbf\x0e"
8286                         "\x0d\xd7\xdc\x96\x0e\x65\x75\x4e"
8287                         "\x29\x06\x9d\xa4\x51\x3a\x10\x63"
8288                         "\x8f\x17\x07\xd5\x8e\x3c\xf4\x28"
8289                         "\x00\x5a\x5b\x05\x19\xd8\xc0\x6c"
8290                         "\xe5\x15\xe4\x9c\x9d\x71\x9d\x5e"
8291                         "\x94\x29\x1a\xa7\x80\xfa\x0e\x33"
8292                         "\x03\xdd\xb7\x3e\x9a\xa9\x26\x18"
8293                         "\x37\xa9\x64\x08\x4d\x94\x5a\x88"
8294                         "\xca\x35\xce\x81\x02\xe3\x1f\x1b"
8295                         "\x89\x1a\x77\x85\xe3\x41\x6d\x32"
8296                         "\x42\x19\x23\x7d\xc8\x73\xee\x25"
8297                         "\x85\x0d\xf8\x31\x25\x79\x1b\x6f"
8298                         "\x79\x25\xd2\xd8\xd4\x23\xfd\xf7"
8299                         "\x82\x36\x6a\x0c\x46\x22\x15\xe9"
8300                         "\xff\x72\x41\x91\x91\x7d\x3a\xb7"
8301                         "\xdd\x65\x99\x70\xf6\x8d\x84\xf8"
8302                         "\x67\x15\x20\x11\xd6\xb2\x55\x7b"
8303                         "\xdb\x87\xee\xef\x55\x89\x2a\x59"
8304                         "\x2b\x07\x8f\x43\x8a\x59\x3c\x01"
8305                         "\x8b\x65\x54\xa1\x66\xd5\x38\xbd"
8306                         "\xc6\x30\xa9\xcc\x49\xb6\xa8\x1b"
8307                         "\xb8\xc0\x0e\xe3\x45\x28\xe2\xff"
8308                         "\x41\x9f\x7e\x7c\xd1\xae\x9e\x25"
8309                         "\x3f\x4c\x7c\x7c\xf4\xa8\x26\x4d"
8310                         "\x5c\xfd\x4b\x27\x18\xf9\x61\x76"
8311                         "\x48\xba\x0c\x6b\xa9\x4d\xfc\xf5"
8312                         "\x3b\x35\x7e\x2f\x4a\xa9\xc2\x9a"
8313                         "\xae\xab\x86\x09\x89\xc9\xc2\x40"
8314                         "\x39\x2c\x81\xb3\xb8\x17\x67\xc2"
8315                         "\x0d\x32\x4a\x3a\x67\x81\xd7\x1a"
8316                         "\x34\x52\xc5\xdb\x0a\xf5\x63\x39"
8317                         "\xea\x1f\xe1\x7c\xa1\x9e\xc1\x35"
8318                         "\xe3\xb1\x18\x45\x67\xf9\x22\x38"
8319                         "\x95\xd9\x34\x34\x86\xc6\x41\x94"
8320                         "\x15\xf9\x5b\x41\xa6\x87\x8b\xf8"
8321                         "\xd5\xe1\x1b\xe2\x5b\xf3\x86\x10"
8322                         "\xff\xe6\xae\x69\x76\xbc\x0d\xb4"
8323                         "\x09\x90\x0c\xa2\x65\x0c\xad\x74"
8324                         "\xf5\xd7\xff\xda\xc1\xce\x85\xbe"
8325                         "\x00\xa7\xff\x4d\x2f\x65\xd3\x8c"
8326                         "\x86\x2d\x05\xe8\xed\x3e\x6b\x8b"
8327                         "\x0f\x3d\x83\x8c\xf1\x1d\x5b\x96"
8328                         "\x2e\xb1\x9c\xc2\x98\xe1\x70\xb9"
8329                         "\xba\x5c\x8a\x43\xd6\x34\xa7\x2d"
8330                         "\xc9\x92\xae\xf2\xa5\x7b\x05\x49"
8331                         "\xa7\x33\x34\x86\xca\xe4\x96\x23"
8332                         "\x76\x5b\xf2\xc6\xf1\x51\x28\x42"
8333                         "\x7b\xcc\x76\x8f\xfa\xa2\xad\x31"
8334                         "\xd4\xd6\x7a\x6d\x25\x25\x54\xe4"
8335                         "\x3f\x50\x59\xe1\x5c\x05\xb7\x27"
8336                         "\x48\xbf\x07\xec\x1b\x13\xbe\x2b"
8337                         "\xa1\x57\x2b\xd5\xab\xd7\xd0\x4c"
8338                         "\x1e\xcb\x71\x9b\xc5\x90\x85\xd3"
8339                         "\xde\x59\xec\x71\xeb\x89\xbb\xd0"
8340                         "\x09\x50\xe1\x16\x3f\xfd\x1c\x34"
8341                         "\xc3\x1c\xa1\x10\x77\x53\x98\xef"
8342                         "\xf2\xfd\xa5\x01\x59\xc2\x9b\x26"
8343                         "\xc7\x42\xd9\x49\xda\x58\x2b\x6e"
8344                         "\x9f\x53\x19\x76\x7e\xd9\xc9\x0e"
8345                         "\x68\xc8\x7f\x51\x22\x42\xef\x49"
8346                         "\xa4\x55\xb6\x36\xac\x09\xc7\x31"
8347                         "\x88\x15\x4b\x2e\x8f\x3a\x08\xf7"
8348                         "\xd8\xf7\xa8\xc5\xa9\x33\xa6\x45"
8349                         "\xe4\xc4\x94\x76\xf3\x0d\x8f\x7e"
8350                         "\xc8\xf6\xbc\x23\x0a\xb6\x4c\xd3"
8351                         "\x6a\xcd\x36\xc2\x90\x5c\x5c\x3c"
8352                         "\x65\x7b\xc2\xd6\xcc\xe6\x0d\x87"
8353                         "\x73\x2e\x71\x79\x16\x06\x63\x28"
8354                         "\x09\x15\xd8\x89\x38\x38\x3d\xb5"
8355                         "\x42\x1c\x08\x24\xf7\x2a\xd2\x9d"
8356                         "\xc8\xca\xef\xf9\x27\xd8\x07\x86"
8357                         "\xf7\x43\x0b\x55\x15\x3f\x9f\x83"
8358                         "\xef\xdc\x49\x9d\x2a\xc1\x54\x62"
8359                         "\xbd\x9b\x66\x55\x9f\xb7\x12\xf3"
8360                         "\x1b\x4d\x9d\x2a\x5c\xed\x87\x75"
8361                         "\x87\x26\xec\x61\x2c\xb4\x0f\x89"
8362                         "\xb0\xfb\x2e\x68\x5d\x15\xc7\x8d"
8363                         "\x2e\xc0\xd9\xec\xaf\x4f\xd2\x25"
8364                         "\x29\xe8\xd2\x26\x2b\x67\xe9\xfc"
8365                         "\x2b\xa8\x67\x96\x12\x1f\x5b\x96"
8366                         "\xc6\x14\x53\xaf\x44\xea\xd6\xe2"
8367                         "\x94\x98\xe4\x12\x93\x4c\x92\xe0"
8368                         "\x18\xa5\x8d\x2d\xe4\x71\x3c\x47"
8369                         "\x4c\xf7\xe6\x47\x9e\xc0\x68\xdf"
8370                         "\xd4\xf5\x5a\x74\xb1\x2b\x29\x03"
8371                         "\x19\x07\xaf\x90\x62\x5c\x68\x98"
8372                         "\x48\x16\x11\x02\x9d\xee\xb4\x9b"
8373                         "\xe5\x42\x7f\x08\xfd\x16\x32\x0b"
8374                         "\xd0\xb3\xfa\x2b\xb7\x99\xf9\x29"
8375                         "\xcd\x20\x45\x9f\xb3\x1a\x5d\xa2"
8376                         "\xaf\x4d\xe0\xbd\x42\x0d\xbc\x74"
8377                         "\x99\x9c\x8e\x53\x1a\xb4\x3e\xbd"
8378                         "\xa2\x9a\x2d\xf7\xf8\x39\x0f\x67"
8379                         "\x63\xfc\x6b\xc0\xaf\xb3\x4b\x4f"
8380                         "\x55\xc4\xcf\xa7\xc8\x04\x11\x3e"
8381                         "\x14\x32\xbb\x1b\x38\x77\xd6\x7f"
8382                         "\x54\x4c\xdf\x75\xf3\x07\x2d\x33"
8383                         "\x9b\xa8\x20\xe1\x7b\x12\xb5\xf3"
8384                         "\xef\x2f\xce\x72\xe5\x24\x60\xc1"
8385                         "\x30\xe2\xab\xa1\x8e\x11\x09\xa8"
8386                         "\x21\x33\x44\xfe\x7f\x35\x32\x93"
8387                         "\x39\xa7\xad\x8b\x79\x06\xb2\xcb"
8388                         "\x4e\xa9\x5f\xc7\xba\x74\x29\xec"
8389                         "\x93\xa0\x4e\x54\x93\xc0\xbc\x55"
8390                         "\x64\xf0\x48\xe5\x57\x99\xee\x75"
8391                         "\xd6\x79\x0f\x66\xb7\xc6\x57\x76"
8392                         "\xf7\xb7\xf3\x9c\xc5\x60\xe8\x7f"
8393                         "\x83\x76\xd6\x0e\xaa\xe6\x90\x39"
8394                         "\x1d\xa6\x32\x6a\x34\xe3\x55\xf8"
8395                         "\x58\xa0\x58\x7d\x33\xe0\x22\x39"
8396                         "\x44\x64\x87\x86\x5a\x2f\xa7\x7e"
8397                         "\x0f\x38\xea\xb0\x30\xcc\x61\xa5"
8398                         "\x6a\x32\xae\x1e\xf7\xe9\xd0\xa9"
8399                         "\x0c\x32\x4b\xb5\x49\x28\xab\x85"
8400                         "\x2f\x8e\x01\x36\x38\x52\xd0\xba"
8401                         "\xd6\x02\x78\xf8\x0e\x3e\x9c\x8b"
8402                         "\x6b\x45\x99\x3f\x5c\xfe\x58\xf1"
8403                         "\x5c\x94\x04\xe1\xf5\x18\x6d\x51"
8404                         "\xb2\x5d\x18\x20\xb6\xc2\x9a\x42"
8405                         "\x1d\xb3\xab\x3c\xb6\x3a\x13\x03"
8406                         "\xb2\x46\x82\x4f\xfc\x64\xbc\x4f"
8407                         "\xca\xfa\x9c\xc0\xd5\xa7\xbd\x11"
8408                         "\xb7\xe4\x5a\xf6\x6f\x4d\x4d\x54"
8409                         "\xea\xa4\x98\x66\xd4\x22\x3b\xd3"
8410                         "\x8f\x34\x47\xd9\x7c\xf4\x72\x3b"
8411                         "\x4d\x02\x77\xf6\xd6\xdd\x08\x0a"
8412                         "\x81\xe1\x86\x89\x3e\x56\x10\x3c"
8413                         "\xba\xd7\x81\x8c\x08\xbc\x8b\xe2"
8414                         "\x53\xec\xa7\x89\xee\xc8\x56\xb5"
8415                         "\x36\x2c\xb2\x03\xba\x99\xdd\x7c"
8416                         "\x48\xa0\xb0\xbc\x91\x33\xe9\xa8"
8417                         "\xcb\xcd\xcf\x59\x5f\x1f\x15\xe2"
8418                         "\x56\xf5\x4e\x01\x35\x27\x45\x77"
8419                         "\x47\xc8\xbc\xcb\x7e\x39\xc1\x97"
8420                         "\x28\xd3\x84\xfc\x2c\x3e\xc8\xad"
8421                         "\x9c\xf8\x8a\x61\x9c\x28\xaa\xc5"
8422                         "\x99\x20\x43\x85\x9d\xa5\xe2\x8b"
8423                         "\xb8\xae\xeb\xd0\x32\x0d\x52\x78"
8424                         "\x09\x56\x3f\xc7\xd8\x7e\x26\xfc"
8425                         "\x37\xfb\x6f\x04\xfc\xfa\x92\x10"
8426                         "\xac\xf8\x3e\x21\xdc\x8c\x21\x16"
8427                         "\x7d\x67\x6e\xf6\xcd\xda\xb6\x98"
8428                         "\x23\xab\x23\x3c\xb2\x10\xa0\x53"
8429                         "\x5a\x56\x9f\xc5\xd0\xff\xbb\xe4"
8430                         "\x98\x3c\x69\x1e\xdb\x38\x8f\x7e"
8431                         "\x0f\xd2\x98\x88\x81\x8b\x45\x67"
8432                         "\xea\x33\xf1\xeb\xe9\x97\x55\x2e"
8433                         "\xd9\xaa\xeb\x5a\xec\xda\xe1\x68"
8434                         "\xa8\x9d\x3c\x84\x7c\x05\x3d\x62"
8435                         "\x87\x8f\x03\x21\x28\x95\x0c\x89"
8436                         "\x25\x22\x4a\xb0\x93\xa9\x50\xa2"
8437                         "\x2f\x57\x6e\x18\x42\x19\x54\x0c"
8438                         "\x55\x67\xc6\x11\x49\xf4\x5c\xd2"
8439                         "\xe9\x3d\xdd\x8b\x48\x71\x21\x00"
8440                         "\xc3\x9a\x6c\x85\x74\x28\x83\x4a"
8441                         "\x1b\x31\x05\xe1\x06\x92\xe7\xda"
8442                         "\x85\x73\x78\x45\x20\x7f\xae\x13"
8443                         "\x7c\x33\x06\x22\xf4\x83\xf9\x35"
8444                         "\x3f\x6c\x71\xa8\x4e\x48\xbe\x9b"
8445                         "\xce\x8a\xba\xda\xbe\x28\x08\xf7"
8446                         "\xe2\x14\x8c\x71\xea\x72\xf9\x33"
8447                         "\xf2\x88\x3f\xd7\xbb\x69\x6c\x29"
8448                         "\x19\xdc\x84\xce\x1f\x12\x4f\xc8"
8449                         "\xaf\xa5\x04\xba\x5a\xab\xb0\xd9"
8450                         "\x14\x1f\x6c\x68\x98\x39\x89\x7a"
8451                         "\xd9\xd8\x2f\xdf\xa8\x47\x4a\x25"
8452                         "\xe2\xfb\x33\xf4\x59\x78\xe1\x68"
8453                         "\x85\xcf\xfe\x59\x20\xd4\x05\x1d"
8454                         "\x80\x99\xae\xbc\xca\xae\x0f\x2f"
8455                         "\x65\x43\x34\x8e\x7e\xac\xd3\x93"
8456                         "\x2f\xac\x6d\x14\x3d\x02\x07\x70"
8457                         "\x9d\xa4\xf3\x1b\x5c\x36\xfc\x01"
8458                         "\x73\x34\x85\x0c\x6c\xd6\xf1\xbd"
8459                         "\x3f\xdf\xee\xf5\xd9\xba\x56\xef"
8460                         "\xf4\x9b\x6b\xee\x9f\x5a\x78\x6d"
8461                         "\x32\x19\xf4\xf7\xf8\x4c\x69\x0b"
8462                         "\x4b\xbc\xbb\xb7\xf2\x85\xaf\x70"
8463                         "\x75\x24\x6c\x54\xa7\x0e\x4d\x1d"
8464                         "\x01\xbf\x08\xac\xcf\x7f\x2c\xe3"
8465                         "\x14\x89\x5e\x70\x5a\x99\x92\xcd"
8466                         "\x01\x84\xc8\xd2\xab\xe5\x4f\x58"
8467                         "\xe7\x0f\x2f\x0e\xff\x68\xea\xfd"
8468                         "\x15\xb3\x17\xe6\xb0\xe7\x85\xd8"
8469                         "\x23\x2e\x05\xc7\xc9\xc4\x46\x1f"
8470                         "\xe1\x9e\x49\x20\x23\x24\x4d\x7e"
8471                         "\x29\x65\xff\xf4\xb6\xfd\x1a\x85"
8472                         "\xc4\x16\xec\xfc\xea\x7b\xd6\x2c"
8473                         "\x43\xf8\xb7\xbf\x79\xc0\x85\xcd"
8474                         "\xef\xe1\x98\xd3\xa5\xf7\x90\x8c"
8475                         "\xe9\x7f\x80\x6b\xd2\xac\x4c\x30"
8476                         "\xa7\xc6\x61\x6c\xd2\xf9\x2c\xff"
8477                         "\x30\xbc\x22\x81\x7d\x93\x12\xe4"
8478                         "\x0a\xcd\xaf\xdd\xe8\xab\x0a\x1e"
8479                         "\x13\xa4\x27\xc3\x5f\xf7\x4b\xbb"
8480                         "\x37\x09\x4b\x91\x6f\x92\x4f\xaf"
8481                         "\x52\xee\xdf\xef\x09\x6f\xf7\x5c"
8482                         "\x6e\x12\x17\x72\x63\x57\xc7\xba"
8483                         "\x3b\x6b\x38\x32\x73\x1b\x9c\x80"
8484                         "\xc1\x7a\xc6\xcf\xcd\x35\xc0\x6b"
8485                         "\x31\x1a\x6b\xe9\xd8\x2c\x29\x3f"
8486                         "\x96\xfb\xb6\xcd\x13\x91\x3b\xc2"
8487                         "\xd2\xa3\x31\x8d\xa4\xcd\x57\xcd"
8488                         "\x13\x3d\x64\xfd\x06\xce\xe6\xdc"
8489                         "\x0c\x24\x43\x31\x40\x57\xf1\x72"
8490                         "\x17\xe3\x3a\x63\x6d\x35\xcf\x5d"
8491                         "\x97\x40\x59\xdd\xf7\x3c\x02\xf7"
8492                         "\x1c\x7e\x05\xbb\xa9\x0d\x01\xb1"
8493                         "\x8e\xc0\x30\xa9\x53\x24\xc9\x89"
8494                         "\x84\x6d\xaa\xd0\xcd\x91\xc2\x4d"
8495                         "\x91\xb0\x89\xe2\xbf\x83\x44\xaa"
8496                         "\x28\x72\x23\xa0\xc2\xad\xad\x1c"
8497                         "\xfc\x3f\x09\x7a\x0b\xdc\xc5\x1b"
8498                         "\x87\x13\xc6\x5b\x59\x8d\xf2\xc8"
8499                         "\xaf\xdf\x11\x95",
8500                 .rlen   = 4100,
8501                 .np     = 2,
8502                 .tap    = { 4064, 36 },
8503         },
8504 };
8505
8506 /*
8507  * CTS (Cipher Text Stealing) mode tests
8508  */
8509 #define CTS_MODE_ENC_TEST_VECTORS 6
8510 #define CTS_MODE_DEC_TEST_VECTORS 6
8511 static struct cipher_testvec cts_mode_enc_tv_template[] = {
8512         { /* from rfc3962 */
8513                 .klen   = 16,
8514                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8515                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8516                 .ilen   = 17,
8517                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8518                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8519                           "\x20",
8520                 .rlen   = 17,
8521                 .result = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4"
8522                           "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f"
8523                           "\x97",
8524         }, {
8525                 .klen   = 16,
8526                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8527                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8528                 .ilen   = 31,
8529                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8530                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8531                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8532                           "\x20\x47\x61\x75\x27\x73\x20",
8533                 .rlen   = 31,
8534                 .result = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1"
8535                           "\xd4\x45\xd4\xc8\xef\xf7\xed\x22"
8536                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8537                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5",
8538         }, {
8539                 .klen   = 16,
8540                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8541                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8542                 .ilen   = 32,
8543                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8544                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8545                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8546                           "\x20\x47\x61\x75\x27\x73\x20\x43",
8547                 .rlen   = 32,
8548                 .result = "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8549                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8550                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8551                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84",
8552         }, {
8553                 .klen   = 16,
8554                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8555                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8556                 .ilen   = 47,
8557                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8558                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8559                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8560                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8561                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8562                           "\x70\x6c\x65\x61\x73\x65\x2c",
8563                 .rlen   = 47,
8564                 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8565                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8566                           "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c"
8567                           "\x1b\x55\x49\xd2\xf8\x38\x02\x9e"
8568                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8569                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5",
8570         }, {
8571                 .klen   = 16,
8572                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8573                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8574                 .ilen   = 48,
8575                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8576                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8577                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8578                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8579                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8580                           "\x70\x6c\x65\x61\x73\x65\x2c\x20",
8581                 .rlen   = 48,
8582                 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8583                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8584                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8585                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8"
8586                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8587                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8",
8588         }, {
8589                 .klen   = 16,
8590                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8591                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8592                 .ilen   = 64,
8593                 .input  = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8594                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8595                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8596                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8597                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8598                           "\x70\x6c\x65\x61\x73\x65\x2c\x20"
8599                           "\x61\x6e\x64\x20\x77\x6f\x6e\x74"
8600                           "\x6f\x6e\x20\x73\x6f\x75\x70\x2e",
8601                 .rlen   = 64,
8602                 .result = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8603                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8604                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8605                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8606                           "\x48\x07\xef\xe8\x36\xee\x89\xa5"
8607                           "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40"
8608                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8609                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8",
8610         }
8611 };
8612
8613 static struct cipher_testvec cts_mode_dec_tv_template[] = {
8614         { /* from rfc3962 */
8615                 .klen   = 16,
8616                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8617                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8618                 .rlen   = 17,
8619                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8620                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8621                           "\x20",
8622                 .ilen   = 17,
8623                 .input  = "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4"
8624                           "\xd8\xa5\x80\x36\x2d\xa7\xff\x7f"
8625                           "\x97",
8626         }, {
8627                 .klen   = 16,
8628                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8629                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8630                 .rlen   = 31,
8631                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8632                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8633                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8634                           "\x20\x47\x61\x75\x27\x73\x20",
8635                 .ilen   = 31,
8636                 .input  = "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1"
8637                           "\xd4\x45\xd4\xc8\xef\xf7\xed\x22"
8638                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8639                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5",
8640         }, {
8641                 .klen   = 16,
8642                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8643                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8644                 .rlen   = 32,
8645                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8646                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8647                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8648                           "\x20\x47\x61\x75\x27\x73\x20\x43",
8649                 .ilen   = 32,
8650                 .input  = "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8651                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8652                           "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8653                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84",
8654         }, {
8655                 .klen   = 16,
8656                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8657                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8658                 .rlen   = 47,
8659                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8660                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8661                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8662                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8663                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8664                           "\x70\x6c\x65\x61\x73\x65\x2c",
8665                 .ilen   = 47,
8666                 .input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8667                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8668                           "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c"
8669                           "\x1b\x55\x49\xd2\xf8\x38\x02\x9e"
8670                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8671                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5",
8672         }, {
8673                 .klen   = 16,
8674                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8675                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8676                 .rlen   = 48,
8677                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8678                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8679                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8680                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8681                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8682                           "\x70\x6c\x65\x61\x73\x65\x2c\x20",
8683                 .ilen   = 48,
8684                 .input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8685                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8686                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8687                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8"
8688                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8689                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8",
8690         }, {
8691                 .klen   = 16,
8692                 .key    = "\x63\x68\x69\x63\x6b\x65\x6e\x20"
8693                           "\x74\x65\x72\x69\x79\x61\x6b\x69",
8694                 .rlen   = 64,
8695                 .result = "\x49\x20\x77\x6f\x75\x6c\x64\x20"
8696                           "\x6c\x69\x6b\x65\x20\x74\x68\x65"
8697                           "\x20\x47\x65\x6e\x65\x72\x61\x6c"
8698                           "\x20\x47\x61\x75\x27\x73\x20\x43"
8699                           "\x68\x69\x63\x6b\x65\x6e\x2c\x20"
8700                           "\x70\x6c\x65\x61\x73\x65\x2c\x20"
8701                           "\x61\x6e\x64\x20\x77\x6f\x6e\x74"
8702                           "\x6f\x6e\x20\x73\x6f\x75\x70\x2e",
8703                 .ilen   = 64,
8704                 .input  = "\x97\x68\x72\x68\xd6\xec\xcc\xc0"
8705                           "\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
8706                           "\x39\x31\x25\x23\xa7\x86\x62\xd5"
8707                           "\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
8708                           "\x48\x07\xef\xe8\x36\xee\x89\xa5"
8709                           "\x26\x73\x0d\xbc\x2f\x7b\xc8\x40"
8710                           "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0"
8711                           "\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8",
8712         }
8713 };
8714
8715 /*
8716  * Compression stuff.
8717  */
8718 #define COMP_BUF_SIZE           512
8719
8720 struct comp_testvec {
8721         int inlen, outlen;
8722         char input[COMP_BUF_SIZE];
8723         char output[COMP_BUF_SIZE];
8724 };
8725
8726 struct pcomp_testvec {
8727         void *params;
8728         unsigned int paramsize;
8729         int inlen, outlen;
8730         char input[COMP_BUF_SIZE];
8731         char output[COMP_BUF_SIZE];
8732 };
8733
8734 /*
8735  * Deflate test vectors (null-terminated strings).
8736  * Params: winbits=-11, Z_DEFAULT_COMPRESSION, MAX_MEM_LEVEL.
8737  */
8738
8739 #define DEFLATE_COMP_TEST_VECTORS 2
8740 #define DEFLATE_DECOMP_TEST_VECTORS 2
8741
8742 static struct comp_testvec deflate_comp_tv_template[] = {
8743         {
8744                 .inlen  = 70,
8745                 .outlen = 38,
8746                 .input  = "Join us now and share the software "
8747                         "Join us now and share the software ",
8748                 .output = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8749                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8750                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8751                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8752                           "\x71\xbc\x08\x2b\x01\x00",
8753         }, {
8754                 .inlen  = 191,
8755                 .outlen = 122,
8756                 .input  = "This document describes a compression method based on the DEFLATE"
8757                         "compression algorithm.  This document defines the application of "
8758                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8759                 .output = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8760                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8761                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8762                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8763                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
8764                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8765                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8766                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8767                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8768                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8769                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8770                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8771                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8772                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8773                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8774                           "\xfa\x02",
8775         },
8776 };
8777
8778 static struct comp_testvec deflate_decomp_tv_template[] = {
8779         {
8780                 .inlen  = 122,
8781                 .outlen = 191,
8782                 .input  = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8783                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8784                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8785                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8786                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
8787                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8788                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8789                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8790                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8791                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8792                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8793                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8794                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8795                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8796                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8797                           "\xfa\x02",
8798                 .output = "This document describes a compression method based on the DEFLATE"
8799                         "compression algorithm.  This document defines the application of "
8800                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8801         }, {
8802                 .inlen  = 38,
8803                 .outlen = 70,
8804                 .input  = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8805                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8806                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8807                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8808                           "\x71\xbc\x08\x2b\x01\x00",
8809                 .output = "Join us now and share the software "
8810                         "Join us now and share the software ",
8811         },
8812 };
8813
8814 #define ZLIB_COMP_TEST_VECTORS 2
8815 #define ZLIB_DECOMP_TEST_VECTORS 2
8816
8817 static const struct {
8818         struct nlattr nla;
8819         int val;
8820 } deflate_comp_params[] = {
8821         {
8822                 .nla = {
8823                         .nla_len        = NLA_HDRLEN + sizeof(int),
8824                         .nla_type       = ZLIB_COMP_LEVEL,
8825                 },
8826                 .val                    = Z_DEFAULT_COMPRESSION,
8827         }, {
8828                 .nla = {
8829                         .nla_len        = NLA_HDRLEN + sizeof(int),
8830                         .nla_type       = ZLIB_COMP_METHOD,
8831                 },
8832                 .val                    = Z_DEFLATED,
8833         }, {
8834                 .nla = {
8835                         .nla_len        = NLA_HDRLEN + sizeof(int),
8836                         .nla_type       = ZLIB_COMP_WINDOWBITS,
8837                 },
8838                 .val                    = -11,
8839         }, {
8840                 .nla = {
8841                         .nla_len        = NLA_HDRLEN + sizeof(int),
8842                         .nla_type       = ZLIB_COMP_MEMLEVEL,
8843                 },
8844                 .val                    = MAX_MEM_LEVEL,
8845         }, {
8846                 .nla = {
8847                         .nla_len        = NLA_HDRLEN + sizeof(int),
8848                         .nla_type       = ZLIB_COMP_STRATEGY,
8849                 },
8850                 .val                    = Z_DEFAULT_STRATEGY,
8851         }
8852 };
8853
8854 static const struct {
8855         struct nlattr nla;
8856         int val;
8857 } deflate_decomp_params[] = {
8858         {
8859                 .nla = {
8860                         .nla_len        = NLA_HDRLEN + sizeof(int),
8861                         .nla_type       = ZLIB_DECOMP_WINDOWBITS,
8862                 },
8863                 .val                    = -11,
8864         }
8865 };
8866
8867 static struct pcomp_testvec zlib_comp_tv_template[] = {
8868         {
8869                 .params = &deflate_comp_params,
8870                 .paramsize = sizeof(deflate_comp_params),
8871                 .inlen  = 70,
8872                 .outlen = 38,
8873                 .input  = "Join us now and share the software "
8874                         "Join us now and share the software ",
8875                 .output = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8876                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8877                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8878                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8879                           "\x71\xbc\x08\x2b\x01\x00",
8880         }, {
8881                 .params = &deflate_comp_params,
8882                 .paramsize = sizeof(deflate_comp_params),
8883                 .inlen  = 191,
8884                 .outlen = 122,
8885                 .input  = "This document describes a compression method based on the DEFLATE"
8886                         "compression algorithm.  This document defines the application of "
8887                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8888                 .output = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8889                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8890                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8891                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8892                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
8893                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8894                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8895                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8896                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8897                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8898                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8899                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8900                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8901                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8902                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8903                           "\xfa\x02",
8904         },
8905 };
8906
8907 static struct pcomp_testvec zlib_decomp_tv_template[] = {
8908         {
8909                 .params = &deflate_decomp_params,
8910                 .paramsize = sizeof(deflate_decomp_params),
8911                 .inlen  = 122,
8912                 .outlen = 191,
8913                 .input  = "\x5d\x8d\x31\x0e\xc2\x30\x10\x04"
8914                           "\xbf\xb2\x2f\xc8\x1f\x10\x04\x09"
8915                           "\x89\xc2\x85\x3f\x70\xb1\x2f\xf8"
8916                           "\x24\xdb\x67\xd9\x47\xc1\xef\x49"
8917                           "\x68\x12\x51\xae\x76\x67\xd6\x27"
8918                           "\x19\x88\x1a\xde\x85\xab\x21\xf2"
8919                           "\x08\x5d\x16\x1e\x20\x04\x2d\xad"
8920                           "\xf3\x18\xa2\x15\x85\x2d\x69\xc4"
8921                           "\x42\x83\x23\xb6\x6c\x89\x71\x9b"
8922                           "\xef\xcf\x8b\x9f\xcf\x33\xca\x2f"
8923                           "\xed\x62\xa9\x4c\x80\xff\x13\xaf"
8924                           "\x52\x37\xed\x0e\x52\x6b\x59\x02"
8925                           "\xd9\x4e\xe8\x7a\x76\x1d\x02\x98"
8926                           "\xfe\x8a\x87\x83\xa3\x4f\x56\x8a"
8927                           "\xb8\x9e\x8e\x5c\x57\xd3\xa0\x79"
8928                           "\xfa\x02",
8929                 .output = "This document describes a compression method based on the DEFLATE"
8930                         "compression algorithm.  This document defines the application of "
8931                         "the DEFLATE algorithm to the IP Payload Compression Protocol.",
8932         }, {
8933                 .params = &deflate_decomp_params,
8934                 .paramsize = sizeof(deflate_decomp_params),
8935                 .inlen  = 38,
8936                 .outlen = 70,
8937                 .input  = "\xf3\xca\xcf\xcc\x53\x28\x2d\x56"
8938                           "\xc8\xcb\x2f\x57\x48\xcc\x4b\x51"
8939                           "\x28\xce\x48\x2c\x4a\x55\x28\xc9"
8940                           "\x48\x55\x28\xce\x4f\x2b\x29\x07"
8941                           "\x71\xbc\x08\x2b\x01\x00",
8942                 .output = "Join us now and share the software "
8943                         "Join us now and share the software ",
8944         },
8945 };
8946
8947 /*
8948  * LZO test vectors (null-terminated strings).
8949  */
8950 #define LZO_COMP_TEST_VECTORS 2
8951 #define LZO_DECOMP_TEST_VECTORS 2
8952
8953 static struct comp_testvec lzo_comp_tv_template[] = {
8954         {
8955                 .inlen  = 70,
8956                 .outlen = 46,
8957                 .input  = "Join us now and share the software "
8958                         "Join us now and share the software ",
8959                 .output = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75"
8960                         "\x73\x20\x6e\x6f\x77\x20\x61\x6e"
8961                         "\x64\x20\x73\x68\x61\x72\x65\x20"
8962                         "\x74\x68\x65\x20\x73\x6f\x66\x74"
8963                         "\x77\x70\x01\x01\x4a\x6f\x69\x6e"
8964                         "\x3d\x88\x00\x11\x00\x00",
8965         }, {
8966                 .inlen  = 159,
8967                 .outlen = 133,
8968                 .input  = "This document describes a compression method based on the LZO "
8969                         "compression algorithm.  This document defines the application of "
8970                         "the LZO algorithm used in UBIFS.",
8971                 .output = "\x00\x2b\x54\x68\x69\x73\x20\x64"
8972                           "\x6f\x63\x75\x6d\x65\x6e\x74\x20"
8973                           "\x64\x65\x73\x63\x72\x69\x62\x65"
8974                           "\x73\x20\x61\x20\x63\x6f\x6d\x70"
8975                           "\x72\x65\x73\x73\x69\x6f\x6e\x20"
8976                           "\x6d\x65\x74\x68\x6f\x64\x20\x62"
8977                           "\x61\x73\x65\x64\x20\x6f\x6e\x20"
8978                           "\x74\x68\x65\x20\x4c\x5a\x4f\x2b"
8979                           "\x8c\x00\x0d\x61\x6c\x67\x6f\x72"
8980                           "\x69\x74\x68\x6d\x2e\x20\x20\x54"
8981                           "\x68\x69\x73\x2a\x54\x01\x02\x66"
8982                           "\x69\x6e\x65\x73\x94\x06\x05\x61"
8983                           "\x70\x70\x6c\x69\x63\x61\x74\x76"
8984                           "\x0a\x6f\x66\x88\x02\x60\x09\x27"
8985                           "\xf0\x00\x0c\x20\x75\x73\x65\x64"
8986                           "\x20\x69\x6e\x20\x55\x42\x49\x46"
8987                           "\x53\x2e\x11\x00\x00",
8988         },
8989 };
8990
8991 static struct comp_testvec lzo_decomp_tv_template[] = {
8992         {
8993                 .inlen  = 133,
8994                 .outlen = 159,
8995                 .input  = "\x00\x2b\x54\x68\x69\x73\x20\x64"
8996                           "\x6f\x63\x75\x6d\x65\x6e\x74\x20"
8997                           "\x64\x65\x73\x63\x72\x69\x62\x65"
8998                           "\x73\x20\x61\x20\x63\x6f\x6d\x70"
8999                           "\x72\x65\x73\x73\x69\x6f\x6e\x20"
9000                           "\x6d\x65\x74\x68\x6f\x64\x20\x62"
9001                           "\x61\x73\x65\x64\x20\x6f\x6e\x20"
9002                           "\x74\x68\x65\x20\x4c\x5a\x4f\x2b"
9003                           "\x8c\x00\x0d\x61\x6c\x67\x6f\x72"
9004                           "\x69\x74\x68\x6d\x2e\x20\x20\x54"
9005                           "\x68\x69\x73\x2a\x54\x01\x02\x66"
9006                           "\x69\x6e\x65\x73\x94\x06\x05\x61"
9007                           "\x70\x70\x6c\x69\x63\x61\x74\x76"
9008                           "\x0a\x6f\x66\x88\x02\x60\x09\x27"
9009                           "\xf0\x00\x0c\x20\x75\x73\x65\x64"
9010                           "\x20\x69\x6e\x20\x55\x42\x49\x46"
9011                           "\x53\x2e\x11\x00\x00",
9012                 .output = "This document describes a compression method based on the LZO "
9013                         "compression algorithm.  This document defines the application of "
9014                         "the LZO algorithm used in UBIFS.",
9015         }, {
9016                 .inlen  = 46,
9017                 .outlen = 70,
9018                 .input  = "\x00\x0d\x4a\x6f\x69\x6e\x20\x75"
9019                           "\x73\x20\x6e\x6f\x77\x20\x61\x6e"
9020                           "\x64\x20\x73\x68\x61\x72\x65\x20"
9021                           "\x74\x68\x65\x20\x73\x6f\x66\x74"
9022                           "\x77\x70\x01\x01\x4a\x6f\x69\x6e"
9023                           "\x3d\x88\x00\x11\x00\x00",
9024                 .output = "Join us now and share the software "
9025                         "Join us now and share the software ",
9026         },
9027 };
9028
9029 /*
9030  * Michael MIC test vectors from IEEE 802.11i
9031  */
9032 #define MICHAEL_MIC_TEST_VECTORS 6
9033
9034 static struct hash_testvec michael_mic_tv_template[] = {
9035         {
9036                 .key = "\x00\x00\x00\x00\x00\x00\x00\x00",
9037                 .ksize = 8,
9038                 .plaintext = zeroed_string,
9039                 .psize = 0,
9040                 .digest = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8",
9041         },
9042         {
9043                 .key = "\x82\x92\x5c\x1c\xa1\xd1\x30\xb8",
9044                 .ksize = 8,
9045                 .plaintext = "M",
9046                 .psize = 1,
9047                 .digest = "\x43\x47\x21\xca\x40\x63\x9b\x3f",
9048         },
9049         {
9050                 .key = "\x43\x47\x21\xca\x40\x63\x9b\x3f",
9051                 .ksize = 8,
9052                 .plaintext = "Mi",
9053                 .psize = 2,
9054                 .digest = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29",
9055         },
9056         {
9057                 .key = "\xe8\xf9\xbe\xca\xe9\x7e\x5d\x29",
9058                 .ksize = 8,
9059                 .plaintext = "Mic",
9060                 .psize = 3,
9061                 .digest = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb",
9062         },
9063         {
9064                 .key = "\x90\x03\x8f\xc6\xcf\x13\xc1\xdb",
9065                 .ksize = 8,
9066                 .plaintext = "Mich",
9067                 .psize = 4,
9068                 .digest = "\xd5\x5e\x10\x05\x10\x12\x89\x86",
9069         },
9070         {
9071                 .key = "\xd5\x5e\x10\x05\x10\x12\x89\x86",
9072                 .ksize = 8,
9073                 .plaintext = "Michael",
9074                 .psize = 7,
9075                 .digest = "\x0a\x94\x2b\x12\x4e\xca\xa5\x46",
9076         }
9077 };
9078
9079 /*
9080  * CRC32C test vectors
9081  */
9082 #define CRC32C_TEST_VECTORS 14
9083
9084 static struct hash_testvec crc32c_tv_template[] = {
9085         {
9086                 .psize = 0,
9087                 .digest = "\x00\x00\x00\x00",
9088         },
9089         {
9090                 .key = "\x87\xa9\xcb\xed",
9091                 .ksize = 4,
9092                 .psize = 0,
9093                 .digest = "\x78\x56\x34\x12",
9094         },
9095         {
9096                 .key = "\xff\xff\xff\xff",
9097                 .ksize = 4,
9098                 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08"
9099                              "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
9100                              "\x11\x12\x13\x14\x15\x16\x17\x18"
9101                              "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
9102                              "\x21\x22\x23\x24\x25\x26\x27\x28",
9103                 .psize = 40,
9104                 .digest = "\x7f\x15\x2c\x0e",
9105         },
9106         {
9107                 .key = "\xff\xff\xff\xff",
9108                 .ksize = 4,
9109                 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
9110                              "\x31\x32\x33\x34\x35\x36\x37\x38"
9111                              "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
9112                              "\x41\x42\x43\x44\x45\x46\x47\x48"
9113                              "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50",
9114                 .psize = 40,
9115                 .digest = "\xf6\xeb\x80\xe9",
9116         },
9117         {
9118                 .key = "\xff\xff\xff\xff",
9119                 .ksize = 4,
9120                 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58"
9121                              "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
9122                              "\x61\x62\x63\x64\x65\x66\x67\x68"
9123                              "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
9124                              "\x71\x72\x73\x74\x75\x76\x77\x78",
9125                 .psize = 40,
9126                 .digest = "\xed\xbd\x74\xde",
9127         },
9128         {
9129                 .key = "\xff\xff\xff\xff",
9130                 .ksize = 4,
9131                 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
9132                              "\x81\x82\x83\x84\x85\x86\x87\x88"
9133                              "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
9134                              "\x91\x92\x93\x94\x95\x96\x97\x98"
9135                              "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0",
9136                 .psize = 40,
9137                 .digest = "\x62\xc8\x79\xd5",
9138         },
9139         {
9140                 .key = "\xff\xff\xff\xff",
9141                 .ksize = 4,
9142                 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
9143                              "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
9144                              "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
9145                              "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
9146                              "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8",
9147                 .psize = 40,
9148                 .digest = "\xd0\x9a\x97\xba",
9149         },
9150         {
9151                 .key = "\xff\xff\xff\xff",
9152                 .ksize = 4,
9153                 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
9154                              "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
9155                              "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
9156                              "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
9157                              "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
9158                 .psize = 40,
9159                 .digest = "\x13\xd9\x29\x2b",
9160         },
9161         {
9162                 .key = "\x80\xea\xd3\xf1",
9163                 .ksize = 4,
9164                 .plaintext = "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
9165                              "\x31\x32\x33\x34\x35\x36\x37\x38"
9166                              "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
9167                              "\x41\x42\x43\x44\x45\x46\x47\x48"
9168                              "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50",
9169                 .psize = 40,
9170                 .digest = "\x0c\xb5\xe2\xa2",
9171         },
9172         {
9173                 .key = "\xf3\x4a\x1d\x5d",
9174                 .ksize = 4,
9175                 .plaintext = "\x51\x52\x53\x54\x55\x56\x57\x58"
9176                              "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
9177                              "\x61\x62\x63\x64\x65\x66\x67\x68"
9178                              "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
9179                              "\x71\x72\x73\x74\x75\x76\x77\x78",
9180                 .psize = 40,
9181                 .digest = "\xd1\x7f\xfb\xa6",
9182         },
9183         {
9184                 .key = "\x2e\x80\x04\x59",
9185                 .ksize = 4,
9186                 .plaintext = "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
9187                              "\x81\x82\x83\x84\x85\x86\x87\x88"
9188                              "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
9189                              "\x91\x92\x93\x94\x95\x96\x97\x98"
9190                              "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0",
9191                 .psize = 40,
9192                 .digest = "\x59\x33\xe6\x7a",
9193         },
9194         {
9195                 .key = "\xa6\xcc\x19\x85",
9196                 .ksize = 4,
9197                 .plaintext = "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
9198                              "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
9199                              "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
9200                              "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
9201                              "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8",
9202                 .psize = 40,
9203                 .digest = "\xbe\x03\x01\xd2",
9204         },
9205         {
9206                 .key = "\x41\xfc\xfe\x2d",
9207                 .ksize = 4,
9208                 .plaintext = "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
9209                              "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
9210                              "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
9211                              "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
9212                              "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
9213                 .psize = 40,
9214                 .digest = "\x75\xd3\xc5\x24",
9215         },
9216         {
9217                 .key = "\xff\xff\xff\xff",
9218                 .ksize = 4,
9219                 .plaintext = "\x01\x02\x03\x04\x05\x06\x07\x08"
9220                              "\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
9221                              "\x11\x12\x13\x14\x15\x16\x17\x18"
9222                              "\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
9223                              "\x21\x22\x23\x24\x25\x26\x27\x28"
9224                              "\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
9225                              "\x31\x32\x33\x34\x35\x36\x37\x38"
9226                              "\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
9227                              "\x41\x42\x43\x44\x45\x46\x47\x48"
9228                              "\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50"
9229                              "\x51\x52\x53\x54\x55\x56\x57\x58"
9230                              "\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
9231                              "\x61\x62\x63\x64\x65\x66\x67\x68"
9232                              "\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
9233                              "\x71\x72\x73\x74\x75\x76\x77\x78"
9234                              "\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
9235                              "\x81\x82\x83\x84\x85\x86\x87\x88"
9236                              "\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
9237                              "\x91\x92\x93\x94\x95\x96\x97\x98"
9238                              "\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0"
9239                              "\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
9240                              "\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
9241                              "\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8"
9242                              "\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
9243                              "\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8"
9244                              "\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
9245                              "\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8"
9246                              "\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
9247                              "\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8"
9248                              "\xe9\xea\xeb\xec\xed\xee\xef\xf0",
9249                 .psize = 240,
9250                 .digest = "\x75\xd3\xc5\x24",
9251                 .np = 2,
9252                 .tap = { 31, 209 }
9253         },
9254 };
9255
9256 #endif  /* _CRYPTO_TESTMGR_H */