1 /* basic.c - basic regression tests
2 * Copyright (C) 2001, 2002, 2003, 2005, 2008,
3 * 2009 Free Software Foundation, Inc.
5 * This file is part of Libgcrypt.
7 * Libgcrypt is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as
9 * published by the Free Software Foundation; either version 2.1 of
10 * the License, or (at your option) any later version.
12 * Libgcrypt is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this program; if not, see <http://www.gnu.org/licenses/>.
29 #include "../src/gcrypt.h"
32 # define DIM(v) (sizeof(v)/sizeof((v)[0]))
36 typedef struct test_spec_pubkey_key
42 test_spec_pubkey_key_t;
44 typedef struct test_spec_pubkey
48 test_spec_pubkey_key_t key;
52 #define FLAG_CRYPT (1 << 0)
53 #define FLAG_SIGN (1 << 1)
54 #define FLAG_GRIP (1 << 2)
57 static int error_count;
58 static int in_fips_mode;
61 fail (const char *format, ...)
65 va_start (arg_ptr, format);
66 vfprintf (stderr, format, arg_ptr);
72 mismatch (const void *expected, size_t expectedlen,
73 const void *computed, size_t computedlen)
75 const unsigned char *p;
77 fprintf (stderr, "expected:");
78 for (p = expected; expectedlen; p++, expectedlen--)
79 fprintf (stderr, " %02x", *p);
80 fprintf (stderr, "\ncomputed:");
81 for (p = computed; computedlen; p++, computedlen--)
82 fprintf (stderr, " %02x", *p);
83 fprintf (stderr, "\n");
88 die (const char *format, ...)
92 va_start (arg_ptr, format);
93 vfprintf (stderr, format, arg_ptr);
98 #define MAX_DATA_LEN 100
101 progress_handler (void *cb_data, const char *what, int printchar,
102 int current, int total)
109 if (printchar == '\n')
110 fputs ( "<LF>", stdout);
117 check_cbc_mac_cipher (void)
122 char key[MAX_DATA_LEN];
123 unsigned char plaintext[MAX_DATA_LEN];
125 char mac[MAX_DATA_LEN];
131 "This is a sample plaintext for CBC MAC of sixtyfour bytes.......",
132 0, "\x23\x8f\x6d\xc7\x53\x6a\x62\x97\x11\xc4\xa5\x16\x43\xea\xb0\xb6" },
134 "abcdefghABCDEFGH01234567",
135 "This is a sample plaintext for CBC MAC of sixtyfour bytes.......",
136 0, "\x5c\x11\xf0\x01\x47\xbd\x3d\x3a" },
139 "This is a sample plaintext for CBC MAC of sixtyfour bytes.......",
140 0, "\xfa\x4b\xdf\x9d\xfa\xab\x01\x70" }
143 unsigned char out[MAX_DATA_LEN];
144 int i, blklen, keylen;
145 gcry_error_t err = 0;
148 fprintf (stderr, " Starting CBC MAC checks.\n");
150 for (i = 0; i < sizeof (tv) / sizeof (tv[0]); i++)
152 if (gcry_cipher_test_algo (tv[i].algo) && in_fips_mode)
155 fprintf (stderr, " algorithm %d not available in fips mode\n",
160 err = gcry_cipher_open (&hd,
162 GCRY_CIPHER_MODE_CBC, GCRY_CIPHER_CBC_MAC);
165 fail ("cbc-mac algo %d, gcry_cipher_open failed: %s\n",
166 tv[i].algo, gpg_strerror (err));
170 blklen = gcry_cipher_get_algo_blklen(tv[i].algo);
173 fail ("cbc-mac algo %d, gcry_cipher_get_algo_blklen failed\n",
175 gcry_cipher_close (hd);
179 keylen = gcry_cipher_get_algo_keylen (tv[i].algo);
182 fail ("cbc-mac algo %d, gcry_cipher_get_algo_keylen failed\n",
187 err = gcry_cipher_setkey (hd, tv[i].key, keylen);
190 fail ("cbc-mac algo %d, gcry_cipher_setkey failed: %s\n",
191 tv[i].algo, gpg_strerror (err));
192 gcry_cipher_close (hd);
196 err = gcry_cipher_setiv (hd, NULL, 0);
199 fail ("cbc-mac algo %d, gcry_cipher_setiv failed: %s\n",
200 tv[i].algo, gpg_strerror (err));
201 gcry_cipher_close (hd);
206 fprintf (stderr, " checking CBC MAC for %s [%i]\n",
207 gcry_cipher_algo_name (tv[i].algo),
209 err = gcry_cipher_encrypt (hd,
214 strlen ((char*)tv[i].plaintext));
217 fail ("cbc-mac algo %d, gcry_cipher_encrypt failed: %s\n",
218 tv[i].algo, gpg_strerror (err));
219 gcry_cipher_close (hd);
226 for (j = 0; j < gcry_cipher_get_algo_blklen (tv[i].algo); j++)
227 printf ("\\x%02x", out[j] & 0xFF);
232 if (memcmp (tv[i].mac, out, blklen))
233 fail ("cbc-mac algo %d, encrypt mismatch entry %d\n", tv[i].algo, i);
235 gcry_cipher_close (hd);
238 fprintf (stderr, " Completed CBC MAC checks.\n");
242 check_aes128_cbc_cts_cipher (void)
244 char key[128 / 8] = "chicken teriyaki";
245 unsigned char plaintext[] =
246 "I would like the General Gau's Chicken, please, and wonton soup.";
249 unsigned char out[MAX_DATA_LEN];
253 { "\xc6\x35\x35\x68\xf2\xbf\x8c\xb4\xd8\xa5\x80\x36\x2d\xa7\xff\x7f"
256 { "\xfc\x00\x78\x3e\x0e\xfd\xb2\xc1\xd4\x45\xd4\xc8\xef\xf7\xed\x22"
257 "\x97\x68\x72\x68\xd6\xec\xcc\xc0\xc0\x7b\x25\xe2\x5e\xcf\xe5",
259 { "\x39\x31\x25\x23\xa7\x86\x62\xd5\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
260 "\x97\x68\x72\x68\xd6\xec\xcc\xc0\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84",
262 { "\x97\x68\x72\x68\xd6\xec\xcc\xc0\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
263 "\xb3\xff\xfd\x94\x0c\x16\xa1\x8c\x1b\x55\x49\xd2\xf8\x38\x02\x9e"
264 "\x39\x31\x25\x23\xa7\x86\x62\xd5\xbe\x7f\xcb\xcc\x98\xeb\xf5",
266 { "\x97\x68\x72\x68\xd6\xec\xcc\xc0\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
267 "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8"
268 "\x39\x31\x25\x23\xa7\x86\x62\xd5\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8",
270 { "\x97\x68\x72\x68\xd6\xec\xcc\xc0\xc0\x7b\x25\xe2\x5e\xcf\xe5\x84"
271 "\x39\x31\x25\x23\xa7\x86\x62\xd5\xbe\x7f\xcb\xcc\x98\xeb\xf5\xa8"
272 "\x48\x07\xef\xe8\x36\xee\x89\xa5\x26\x73\x0d\xbc\x2f\x7b\xc8\x40"
273 "\x9d\xad\x8b\xbb\x96\xc4\xcd\xc0\x3b\xc1\x03\xe1\xa1\x94\xbb\xd8",
277 unsigned char out[MAX_DATA_LEN];
279 gcry_error_t err = 0;
282 fprintf (stderr, " Starting AES128 CBC CTS checks.\n");
283 err = gcry_cipher_open (&hd,
285 GCRY_CIPHER_MODE_CBC, GCRY_CIPHER_CBC_CTS);
288 fail ("aes-cbc-cts, gcry_cipher_open failed: %s\n", gpg_strerror (err));
292 err = gcry_cipher_setkey (hd, key, 128 / 8);
295 fail ("aes-cbc-cts, gcry_cipher_setkey failed: %s\n",
297 gcry_cipher_close (hd);
301 for (i = 0; i < sizeof (tv) / sizeof (tv[0]); i++)
303 err = gcry_cipher_setiv (hd, NULL, 0);
306 fail ("aes-cbc-cts, gcry_cipher_setiv failed: %s\n",
308 gcry_cipher_close (hd);
313 fprintf (stderr, " checking encryption for length %i\n", tv[i].inlen);
314 err = gcry_cipher_encrypt (hd, out, MAX_DATA_LEN,
315 plaintext, tv[i].inlen);
318 fail ("aes-cbc-cts, gcry_cipher_encrypt failed: %s\n",
320 gcry_cipher_close (hd);
324 if (memcmp (tv[i].out, out, tv[i].inlen))
325 fail ("aes-cbc-cts, encrypt mismatch entry %d\n", i);
327 err = gcry_cipher_setiv (hd, NULL, 0);
330 fail ("aes-cbc-cts, gcry_cipher_setiv failed: %s\n",
332 gcry_cipher_close (hd);
336 fprintf (stderr, " checking decryption for length %i\n", tv[i].inlen);
337 err = gcry_cipher_decrypt (hd, out, tv[i].inlen, NULL, 0);
340 fail ("aes-cbc-cts, gcry_cipher_decrypt failed: %s\n",
342 gcry_cipher_close (hd);
346 if (memcmp (plaintext, out, tv[i].inlen))
347 fail ("aes-cbc-cts, decrypt mismatch entry %d\n", i);
350 gcry_cipher_close (hd);
352 fprintf (stderr, " Completed AES128 CBC CTS checks.\n");
356 check_ctr_cipher (void)
361 char key[MAX_DATA_LEN];
362 char ctr[MAX_DATA_LEN];
365 unsigned char plaintext[MAX_DATA_LEN];
367 char out[MAX_DATA_LEN];
371 /* http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf */
373 "\x2b\x7e\x15\x16\x28\xae\xd2\xa6\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
374 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
375 { { "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96\xe9\x3d\x7e\x11\x73\x93\x17\x2a",
377 "\x87\x4d\x61\x91\xb6\x20\xe3\x26\x1b\xef\x68\x64\x99\x0d\xb6\xce" },
378 { "\xae\x2d\x8a\x57\x1e\x03\xac\x9c\x9e\xb7\x6f\xac\x45\xaf\x8e\x51",
380 "\x98\x06\xf6\x6b\x79\x70\xfd\xff\x86\x17\x18\x7b\xb9\xff\xfd\xff" },
381 { "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11\xe5\xfb\xc1\x19\x1a\x0a\x52\xef",
383 "\x5a\xe4\xdf\x3e\xdb\xd5\xd3\x5e\x5b\x4f\x09\x02\x0d\xb0\x3e\xab" },
384 { "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
386 "\x1e\x03\x1d\xda\x2f\xbe\x03\xd1\x79\x21\x70\xa0\xf3\x00\x9c\xee" },
391 { GCRY_CIPHER_AES192,
392 "\x8e\x73\xb0\xf7\xda\x0e\x64\x52\xc8\x10\xf3\x2b"
393 "\x80\x90\x79\xe5\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
394 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
395 { { "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96\xe9\x3d\x7e\x11\x73\x93\x17\x2a",
397 "\x1a\xbc\x93\x24\x17\x52\x1c\xa2\x4f\x2b\x04\x59\xfe\x7e\x6e\x0b" },
398 { "\xae\x2d\x8a\x57\x1e\x03\xac\x9c\x9e\xb7\x6f\xac\x45\xaf\x8e\x51",
400 "\x09\x03\x39\xec\x0a\xa6\xfa\xef\xd5\xcc\xc2\xc6\xf4\xce\x8e\x94" },
401 { "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11\xe5\xfb\xc1\x19\x1a\x0a\x52\xef",
403 "\x1e\x36\xb2\x6b\xd1\xeb\xc6\x70\xd1\xbd\x1d\x66\x56\x20\xab\xf7" },
404 { "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
406 "\x4f\x78\xa7\xf6\xd2\x98\x09\x58\x5a\x97\xda\xec\x58\xc6\xb0\x50" },
410 { GCRY_CIPHER_AES256,
411 "\x60\x3d\xeb\x10\x15\xca\x71\xbe\x2b\x73\xae\xf0\x85\x7d\x77\x81"
412 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
413 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
414 { { "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96\xe9\x3d\x7e\x11\x73\x93\x17\x2a",
416 "\x60\x1e\xc3\x13\x77\x57\x89\xa5\xb7\xa7\xf5\x04\xbb\xf3\xd2\x28" },
417 { "\xae\x2d\x8a\x57\x1e\x03\xac\x9c\x9e\xb7\x6f\xac\x45\xaf\x8e\x51",
419 "\xf4\x43\xe3\xca\x4d\x62\xb5\x9a\xca\x84\xe9\x90\xca\xca\xf5\xc5" },
420 { "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11\xe5\xfb\xc1\x19\x1a\x0a\x52\xef",
422 "\x2b\x09\x30\xda\xa2\x3d\xe9\x4c\xe8\x70\x17\xba\x2d\x84\x98\x8d" },
423 { "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
425 "\xdf\xc9\xc5\x8d\xb6\x7a\xad\xa6\x13\xc2\xdd\x08\x45\x79\x41\xa6" },
429 /* Some truncation tests. With a truncated second block and
430 also with a single truncated block. */
432 "\x2b\x7e\x15\x16\x28\xae\xd2\xa6\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
433 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
434 {{"\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96\xe9\x3d\x7e\x11\x73\x93\x17\x2a",
436 "\x87\x4d\x61\x91\xb6\x20\xe3\x26\x1b\xef\x68\x64\x99\x0d\xb6\xce" },
437 {"\xae\x2d\x8a\x57\x1e\x03\xac\x9c\x9e\xb7\x6f\xac\x45\xaf\x8e",
439 "\x98\x06\xf6\x6b\x79\x70\xfd\xff\x86\x17\x18\x7b\xb9\xff\xfd" },
444 "\x2b\x7e\x15\x16\x28\xae\xd2\xa6\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
445 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
446 {{"\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96\xe9\x3d\x7e\x11\x73\x93\x17\x2a",
448 "\x87\x4d\x61\x91\xb6\x20\xe3\x26\x1b\xef\x68\x64\x99\x0d\xb6\xce" },
456 "\x2b\x7e\x15\x16\x28\xae\xd2\xa6\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
457 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
458 {{"\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96\xe9\x3d\x7e\x11\x73\x93\x17",
460 "\x87\x4d\x61\x91\xb6\x20\xe3\x26\x1b\xef\x68\x64\x99\x0d\xb6" },
465 "\x2b\x7e\x15\x16\x28\xae\xd2\xa6\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
466 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff",
474 /* A selfmade test vector using an 64 bit block cipher. */
476 "\x2b\x7e\x15\x16\x28\xae\xd2\xa6\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
477 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8",
478 {{"\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96\xe9\x3d\x7e\x11\x73\x93\x17\x2a",
480 "\xe8\xa7\xac\x68\xca\xca\xa0\x20\x10\xcb\x1b\xcc\x79\x2c\xc4\x48" },
481 {"\xae\x2d\x8a\x57\x1e\x03\xac\x9c",
483 "\x16\xe8\x72\x77\xb0\x98\x29\x68" },
484 {"\x9e\xb7\x6f\xac\x45\xaf\x8e\x51",
486 "\x9a\xb3\xa8\x03\x3b\xb4\x14\xba" },
487 {"\xae\x2d\x8a\x57\x1e\x03\xac\x9c\xa1\x00",
489 "\x31\x5e\xd3\xfb\x1b\x8d\xd1\xf9\xb0\x83" },
502 gcry_cipher_hd_t hde, hdd;
503 unsigned char out[MAX_DATA_LEN];
504 int i, j, keylen, blklen;
505 gcry_error_t err = 0;
508 fprintf (stderr, " Starting CTR cipher checks.\n");
509 for (i = 0; i < sizeof (tv) / sizeof (tv[0]); i++)
514 err = gcry_cipher_open (&hde, tv[i].algo, GCRY_CIPHER_MODE_CTR, 0);
516 err = gcry_cipher_open (&hdd, tv[i].algo, GCRY_CIPHER_MODE_CTR, 0);
519 fail ("aes-ctr, gcry_cipher_open failed: %s\n", gpg_strerror (err));
523 keylen = gcry_cipher_get_algo_keylen(tv[i].algo);
526 fail ("aes-ctr, gcry_cipher_get_algo_keylen failed\n");
530 err = gcry_cipher_setkey (hde, tv[i].key, keylen);
532 err = gcry_cipher_setkey (hdd, tv[i].key, keylen);
535 fail ("aes-ctr, gcry_cipher_setkey failed: %s\n",
537 gcry_cipher_close (hde);
538 gcry_cipher_close (hdd);
542 blklen = gcry_cipher_get_algo_blklen(tv[i].algo);
545 fail ("aes-ctr, gcry_cipher_get_algo_blklen failed\n");
549 err = gcry_cipher_setctr (hde, tv[i].ctr, blklen);
551 err = gcry_cipher_setctr (hdd, tv[i].ctr, blklen);
554 fail ("aes-ctr, gcry_cipher_setctr failed: %s\n",
556 gcry_cipher_close (hde);
557 gcry_cipher_close (hdd);
562 fprintf (stderr, " checking CTR mode for %s [%i]\n",
563 gcry_cipher_algo_name (tv[i].algo),
565 for (j = 0; tv[i].data[j].inlen; j++)
567 err = gcry_cipher_encrypt (hde, out, MAX_DATA_LEN,
568 tv[i].data[j].plaintext,
569 tv[i].data[j].inlen == -1 ?
570 strlen ((char*)tv[i].data[j].plaintext) :
571 tv[i].data[j].inlen);
574 fail ("aes-ctr, gcry_cipher_encrypt (%d, %d) failed: %s\n",
575 i, j, gpg_strerror (err));
576 gcry_cipher_close (hde);
577 gcry_cipher_close (hdd);
581 if (memcmp (tv[i].data[j].out, out, tv[i].data[j].inlen))
583 fail ("aes-ctr, encrypt mismatch entry %d:%d\n", i, j);
584 mismatch (tv[i].data[j].out, tv[i].data[j].inlen,
585 out, tv[i].data[j].inlen);
588 err = gcry_cipher_decrypt (hdd, out, tv[i].data[j].inlen, NULL, 0);
591 fail ("aes-ctr, gcry_cipher_decrypt (%d, %d) failed: %s\n",
592 i, j, gpg_strerror (err));
593 gcry_cipher_close (hde);
594 gcry_cipher_close (hdd);
598 if (memcmp (tv[i].data[j].plaintext, out, tv[i].data[j].inlen))
600 fail ("aes-ctr, decrypt mismatch entry %d:%d\n", i, j);
601 mismatch (tv[i].data[j].plaintext, tv[i].data[j].inlen,
602 out, tv[i].data[j].inlen);
607 /* Now check that we get valid return codes back for good and
609 err = gcry_cipher_encrypt (hde, out, MAX_DATA_LEN,
610 "1234567890123456", 16);
612 fail ("aes-ctr, encryption failed for valid input");
614 err = gcry_cipher_encrypt (hde, out, 15,
615 "1234567890123456", 16);
616 if (gpg_err_code (err) != GPG_ERR_BUFFER_TOO_SHORT)
617 fail ("aes-ctr, too short output buffer returned wrong error: %s\n",
620 err = gcry_cipher_encrypt (hde, out, 0,
621 "1234567890123456", 16);
622 if (gpg_err_code (err) != GPG_ERR_BUFFER_TOO_SHORT)
623 fail ("aes-ctr, 0 length output buffer returned wrong error: %s\n",
626 err = gcry_cipher_encrypt (hde, out, 16,
627 "1234567890123456", 16);
629 fail ("aes-ctr, correct length output buffer returned error: %s\n",
632 /* Again, now for decryption. */
633 err = gcry_cipher_decrypt (hde, out, MAX_DATA_LEN,
634 "1234567890123456", 16);
636 fail ("aes-ctr, decryption failed for valid input");
638 err = gcry_cipher_decrypt (hde, out, 15,
639 "1234567890123456", 16);
640 if (gpg_err_code (err) != GPG_ERR_BUFFER_TOO_SHORT)
641 fail ("aes-ctr, too short output buffer returned wrong error: %s\n",
644 err = gcry_cipher_decrypt (hde, out, 0,
645 "1234567890123456", 16);
646 if (gpg_err_code (err) != GPG_ERR_BUFFER_TOO_SHORT)
647 fail ("aes-ctr, 0 length output buffer returned wrong error: %s\n",
650 err = gcry_cipher_decrypt (hde, out, 16,
651 "1234567890123456", 16);
653 fail ("aes-ctr, correct length output buffer returned error: %s\n",
656 gcry_cipher_close (hde);
657 gcry_cipher_close (hdd);
660 fprintf (stderr, " Completed CTR cipher checks.\n");
664 check_cfb_cipher (void)
669 char key[MAX_DATA_LEN];
670 char iv[MAX_DATA_LEN];
673 unsigned char plaintext[MAX_DATA_LEN];
675 char out[MAX_DATA_LEN];
680 /* http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf */
682 "\x2b\x7e\x15\x16\x28\xae\xd2\xa6\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
683 "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
684 { { "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96\xe9\x3d\x7e\x11\x73\x93\x17\x2a",
686 "\x3b\x3f\xd9\x2e\xb7\x2d\xad\x20\x33\x34\x49\xf8\xe8\x3c\xfb\x4a" },
687 { "\xae\x2d\x8a\x57\x1e\x03\xac\x9c\x9e\xb7\x6f\xac\x45\xaf\x8e\x51",
689 "\xc8\xa6\x45\x37\xa0\xb3\xa9\x3f\xcd\xe3\xcd\xad\x9f\x1c\xe5\x8b"},
690 { "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11\xe5\xfb\xc1\x19\x1a\x0a\x52\xef",
692 "\x26\x75\x1f\x67\xa3\xcb\xb1\x40\xb1\x80\x8c\xf1\x87\xa4\xf4\xdf" },
693 { "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
695 "\xc0\x4b\x05\x35\x7c\x5d\x1c\x0e\xea\xc4\xc6\x6f\x9f\xf7\xf2\xe6" },
698 { GCRY_CIPHER_AES192,
699 "\x8e\x73\xb0\xf7\xda\x0e\x64\x52\xc8\x10\xf3\x2b"
700 "\x80\x90\x79\xe5\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
701 "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
702 { { "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96\xe9\x3d\x7e\x11\x73\x93\x17\x2a",
704 "\xcd\xc8\x0d\x6f\xdd\xf1\x8c\xab\x34\xc2\x59\x09\xc9\x9a\x41\x74" },
705 { "\xae\x2d\x8a\x57\x1e\x03\xac\x9c\x9e\xb7\x6f\xac\x45\xaf\x8e\x51",
707 "\x67\xce\x7f\x7f\x81\x17\x36\x21\x96\x1a\x2b\x70\x17\x1d\x3d\x7a" },
708 { "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11\xe5\xfb\xc1\x19\x1a\x0a\x52\xef",
710 "\x2e\x1e\x8a\x1d\xd5\x9b\x88\xb1\xc8\xe6\x0f\xed\x1e\xfa\xc4\xc9" },
711 { "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
713 "\xc0\x5f\x9f\x9c\xa9\x83\x4f\xa0\x42\xae\x8f\xba\x58\x4b\x09\xff" },
716 { GCRY_CIPHER_AES256,
717 "\x60\x3d\xeb\x10\x15\xca\x71\xbe\x2b\x73\xae\xf0\x85\x7d\x77\x81"
718 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
719 "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
720 { { "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96\xe9\x3d\x7e\x11\x73\x93\x17\x2a",
722 "\xdc\x7e\x84\xbf\xda\x79\x16\x4b\x7e\xcd\x84\x86\x98\x5d\x38\x60" },
723 { "\xae\x2d\x8a\x57\x1e\x03\xac\x9c\x9e\xb7\x6f\xac\x45\xaf\x8e\x51",
725 "\x39\xff\xed\x14\x3b\x28\xb1\xc8\x32\x11\x3c\x63\x31\xe5\x40\x7b" },
726 { "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11\xe5\xfb\xc1\x19\x1a\x0a\x52\xef",
728 "\xdf\x10\x13\x24\x15\xe5\x4b\x92\xa1\x3e\xd0\xa8\x26\x7a\xe2\xf9" },
729 { "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
731 "\x75\xa3\x85\x74\x1a\xb9\xce\xf8\x20\x31\x62\x3d\x55\xb1\xe4\x71" }
735 gcry_cipher_hd_t hde, hdd;
736 unsigned char out[MAX_DATA_LEN];
737 int i, j, keylen, blklen;
738 gcry_error_t err = 0;
741 fprintf (stderr, " Starting CFB checks.\n");
743 for (i = 0; i < sizeof (tv) / sizeof (tv[0]); i++)
746 fprintf (stderr, " checking CFB mode for %s [%i]\n",
747 gcry_cipher_algo_name (tv[i].algo),
749 err = gcry_cipher_open (&hde, tv[i].algo, GCRY_CIPHER_MODE_CFB, 0);
751 err = gcry_cipher_open (&hdd, tv[i].algo, GCRY_CIPHER_MODE_CFB, 0);
754 fail ("aes-cfb, gcry_cipher_open failed: %s\n", gpg_strerror (err));
758 keylen = gcry_cipher_get_algo_keylen(tv[i].algo);
761 fail ("aes-cfb, gcry_cipher_get_algo_keylen failed\n");
765 err = gcry_cipher_setkey (hde, tv[i].key, keylen);
767 err = gcry_cipher_setkey (hdd, tv[i].key, keylen);
770 fail ("aes-cfb, gcry_cipher_setkey failed: %s\n",
772 gcry_cipher_close (hde);
773 gcry_cipher_close (hdd);
777 blklen = gcry_cipher_get_algo_blklen(tv[i].algo);
780 fail ("aes-cfb, gcry_cipher_get_algo_blklen failed\n");
784 err = gcry_cipher_setiv (hde, tv[i].iv, blklen);
786 err = gcry_cipher_setiv (hdd, tv[i].iv, blklen);
789 fail ("aes-cfb, gcry_cipher_setiv failed: %s\n",
791 gcry_cipher_close (hde);
792 gcry_cipher_close (hdd);
796 for (j = 0; tv[i].data[j].inlen; j++)
798 err = gcry_cipher_encrypt (hde, out, MAX_DATA_LEN,
799 tv[i].data[j].plaintext,
800 tv[i].data[j].inlen);
803 fail ("aes-cfb, gcry_cipher_encrypt (%d, %d) failed: %s\n",
804 i, j, gpg_strerror (err));
805 gcry_cipher_close (hde);
806 gcry_cipher_close (hdd);
810 if (memcmp (tv[i].data[j].out, out, tv[i].data[j].inlen)) {
811 fail ("aes-cfb, encrypt mismatch entry %d:%d\n", i, j);
813 err = gcry_cipher_decrypt (hdd, out, tv[i].data[j].inlen, NULL, 0);
816 fail ("aes-cfb, gcry_cipher_decrypt (%d, %d) failed: %s\n",
817 i, j, gpg_strerror (err));
818 gcry_cipher_close (hde);
819 gcry_cipher_close (hdd);
823 if (memcmp (tv[i].data[j].plaintext, out, tv[i].data[j].inlen))
824 fail ("aes-cfb, decrypt mismatch entry %d:%d\n", i, j);
827 gcry_cipher_close (hde);
828 gcry_cipher_close (hdd);
831 fprintf (stderr, " Completed CFB checks.\n");
835 check_ofb_cipher (void)
840 char key[MAX_DATA_LEN];
841 char iv[MAX_DATA_LEN];
844 unsigned char plaintext[MAX_DATA_LEN];
846 char out[MAX_DATA_LEN];
851 /* http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf */
853 "\x2b\x7e\x15\x16\x28\xae\xd2\xa6\xab\xf7\x15\x88\x09\xcf\x4f\x3c",
854 "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
855 { { "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96\xe9\x3d\x7e\x11\x73\x93\x17\x2a",
857 "\x3b\x3f\xd9\x2e\xb7\x2d\xad\x20\x33\x34\x49\xf8\xe8\x3c\xfb\x4a" },
858 { "\xae\x2d\x8a\x57\x1e\x03\xac\x9c\x9e\xb7\x6f\xac\x45\xaf\x8e\x51",
860 "\x77\x89\x50\x8d\x16\x91\x8f\x03\xf5\x3c\x52\xda\xc5\x4e\xd8\x25"},
861 { "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11\xe5\xfb\xc1\x19\x1a\x0a\x52\xef",
863 "\x97\x40\x05\x1e\x9c\x5f\xec\xf6\x43\x44\xf7\xa8\x22\x60\xed\xcc" },
864 { "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
866 "\x30\x4c\x65\x28\xf6\x59\xc7\x78\x66\xa5\x10\xd9\xc1\xd6\xae\x5e" },
869 { GCRY_CIPHER_AES192,
870 "\x8e\x73\xb0\xf7\xda\x0e\x64\x52\xc8\x10\xf3\x2b"
871 "\x80\x90\x79\xe5\x62\xf8\xea\xd2\x52\x2c\x6b\x7b",
872 "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
873 { { "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96\xe9\x3d\x7e\x11\x73\x93\x17\x2a",
875 "\xcd\xc8\x0d\x6f\xdd\xf1\x8c\xab\x34\xc2\x59\x09\xc9\x9a\x41\x74" },
876 { "\xae\x2d\x8a\x57\x1e\x03\xac\x9c\x9e\xb7\x6f\xac\x45\xaf\x8e\x51",
878 "\xfc\xc2\x8b\x8d\x4c\x63\x83\x7c\x09\xe8\x17\x00\xc1\x10\x04\x01" },
879 { "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11\xe5\xfb\xc1\x19\x1a\x0a\x52\xef",
881 "\x8d\x9a\x9a\xea\xc0\xf6\x59\x6f\x55\x9c\x6d\x4d\xaf\x59\xa5\xf2" },
882 { "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
884 "\x6d\x9f\x20\x08\x57\xca\x6c\x3e\x9c\xac\x52\x4b\xd9\xac\xc9\x2a" },
887 { GCRY_CIPHER_AES256,
888 "\x60\x3d\xeb\x10\x15\xca\x71\xbe\x2b\x73\xae\xf0\x85\x7d\x77\x81"
889 "\x1f\x35\x2c\x07\x3b\x61\x08\xd7\x2d\x98\x10\xa3\x09\x14\xdf\xf4",
890 "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f",
891 { { "\x6b\xc1\xbe\xe2\x2e\x40\x9f\x96\xe9\x3d\x7e\x11\x73\x93\x17\x2a",
893 "\xdc\x7e\x84\xbf\xda\x79\x16\x4b\x7e\xcd\x84\x86\x98\x5d\x38\x60" },
894 { "\xae\x2d\x8a\x57\x1e\x03\xac\x9c\x9e\xb7\x6f\xac\x45\xaf\x8e\x51",
896 "\x4f\xeb\xdc\x67\x40\xd2\x0b\x3a\xc8\x8f\x6a\xd8\x2a\x4f\xb0\x8d" },
897 { "\x30\xc8\x1c\x46\xa3\x5c\xe4\x11\xe5\xfb\xc1\x19\x1a\x0a\x52\xef",
899 "\x71\xab\x47\xa0\x86\xe8\x6e\xed\xf3\x9d\x1c\x5b\xba\x97\xc4\x08" },
900 { "\xf6\x9f\x24\x45\xdf\x4f\x9b\x17\xad\x2b\x41\x7b\xe6\x6c\x37\x10",
902 "\x01\x26\x14\x1d\x67\xf3\x7b\xe8\x53\x8f\x5a\x8b\xe7\x40\xe4\x84" }
906 gcry_cipher_hd_t hde, hdd;
907 unsigned char out[MAX_DATA_LEN];
908 int i, j, keylen, blklen;
909 gcry_error_t err = 0;
912 fprintf (stderr, " Starting OFB checks.\n");
914 for (i = 0; i < sizeof (tv) / sizeof (tv[0]); i++)
917 fprintf (stderr, " checking OFB mode for %s [%i]\n",
918 gcry_cipher_algo_name (tv[i].algo),
920 err = gcry_cipher_open (&hde, tv[i].algo, GCRY_CIPHER_MODE_OFB, 0);
922 err = gcry_cipher_open (&hdd, tv[i].algo, GCRY_CIPHER_MODE_OFB, 0);
925 fail ("aes-ofb, gcry_cipher_open failed: %s\n", gpg_strerror (err));
929 keylen = gcry_cipher_get_algo_keylen(tv[i].algo);
932 fail ("aes-ofb, gcry_cipher_get_algo_keylen failed\n");
936 err = gcry_cipher_setkey (hde, tv[i].key, keylen);
938 err = gcry_cipher_setkey (hdd, tv[i].key, keylen);
941 fail ("aes-ofb, gcry_cipher_setkey failed: %s\n",
943 gcry_cipher_close (hde);
944 gcry_cipher_close (hdd);
948 blklen = gcry_cipher_get_algo_blklen(tv[i].algo);
951 fail ("aes-ofb, gcry_cipher_get_algo_blklen failed\n");
955 err = gcry_cipher_setiv (hde, tv[i].iv, blklen);
957 err = gcry_cipher_setiv (hdd, tv[i].iv, blklen);
960 fail ("aes-ofb, gcry_cipher_setiv failed: %s\n",
962 gcry_cipher_close (hde);
963 gcry_cipher_close (hdd);
967 for (j = 0; tv[i].data[j].inlen; j++)
969 err = gcry_cipher_encrypt (hde, out, MAX_DATA_LEN,
970 tv[i].data[j].plaintext,
971 tv[i].data[j].inlen);
974 fail ("aes-ofb, gcry_cipher_encrypt (%d, %d) failed: %s\n",
975 i, j, gpg_strerror (err));
976 gcry_cipher_close (hde);
977 gcry_cipher_close (hdd);
981 if (memcmp (tv[i].data[j].out, out, tv[i].data[j].inlen))
982 fail ("aes-ofb, encrypt mismatch entry %d:%d\n", i, j);
984 err = gcry_cipher_decrypt (hdd, out, tv[i].data[j].inlen, NULL, 0);
987 fail ("aes-ofb, gcry_cipher_decrypt (%d, %d) failed: %s\n",
988 i, j, gpg_strerror (err));
989 gcry_cipher_close (hde);
990 gcry_cipher_close (hdd);
994 if (memcmp (tv[i].data[j].plaintext, out, tv[i].data[j].inlen))
995 fail ("aes-ofb, decrypt mismatch entry %d:%d\n", i, j);
998 err = gcry_cipher_reset(hde);
1000 err = gcry_cipher_reset(hdd);
1003 fail ("aes-ofb, gcry_cipher_reset (%d, %d) failed: %s\n",
1004 i, j, gpg_strerror (err));
1005 gcry_cipher_close (hde);
1006 gcry_cipher_close (hdd);
1010 /* gcry_cipher_reset clears the IV */
1011 err = gcry_cipher_setiv (hde, tv[i].iv, blklen);
1013 err = gcry_cipher_setiv (hdd, tv[i].iv, blklen);
1016 fail ("aes-ofb, gcry_cipher_setiv failed: %s\n",
1017 gpg_strerror (err));
1018 gcry_cipher_close (hde);
1019 gcry_cipher_close (hdd);
1023 /* this time we encrypt and decrypt one byte at a time */
1024 for (j = 0; tv[i].data[j].inlen; j++)
1027 for (byteNum = 0; byteNum < tv[i].data[j].inlen; ++byteNum)
1029 err = gcry_cipher_encrypt (hde, out+byteNum, 1,
1030 (tv[i].data[j].plaintext) + byteNum,
1034 fail ("aes-ofb, gcry_cipher_encrypt (%d, %d) failed: %s\n",
1035 i, j, gpg_strerror (err));
1036 gcry_cipher_close (hde);
1037 gcry_cipher_close (hdd);
1042 if (memcmp (tv[i].data[j].out, out, tv[i].data[j].inlen))
1043 fail ("aes-ofb, encrypt mismatch entry %d:%d\n", i, j);
1045 for (byteNum = 0; byteNum < tv[i].data[j].inlen; ++byteNum)
1047 err = gcry_cipher_decrypt (hdd, out+byteNum, 1, NULL, 0);
1050 fail ("aes-ofb, gcry_cipher_decrypt (%d, %d) failed: %s\n",
1051 i, j, gpg_strerror (err));
1052 gcry_cipher_close (hde);
1053 gcry_cipher_close (hdd);
1058 if (memcmp (tv[i].data[j].plaintext, out, tv[i].data[j].inlen))
1059 fail ("aes-ofb, decrypt mismatch entry %d:%d\n", i, j);
1062 gcry_cipher_close (hde);
1063 gcry_cipher_close (hdd);
1066 fprintf (stderr, " Completed OFB checks.\n");
1070 /* Check that our bulk encryption fucntions work properly. */
1072 check_bulk_cipher_modes (void)
1084 { GCRY_CIPHER_AES, GCRY_CIPHER_MODE_CFB,
1085 "abcdefghijklmnop", 16,
1086 "1234567890123456", 16,
1088 { 0x53, 0xda, 0x27, 0x3c, 0x78, 0x3d, 0x54, 0x66, 0x19, 0x63,
1089 0xd7, 0xe6, 0x20, 0x10, 0xcd, 0xc0, 0x5a, 0x0b, 0x06, 0xcc }
1091 { GCRY_CIPHER_AES192, GCRY_CIPHER_MODE_CFB,
1092 "abcdefghijklmnopABCDEFG", 24,
1093 "1234567890123456", 16,
1095 { 0xc7, 0xb1, 0xd0, 0x09, 0x95, 0x04, 0x34, 0x61, 0x2b, 0xd9,
1096 0xcb, 0xb3, 0xc7, 0xcb, 0xef, 0xea, 0x16, 0x19, 0x9b, 0x3e }
1098 { GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_CFB,
1099 "abcdefghijklmnopABCDEFGHIJKLMNOP", 32,
1100 "1234567890123456", 16,
1102 { 0x31, 0xe1, 0x1f, 0x63, 0x65, 0x47, 0x8c, 0x3f, 0x53, 0xdb,
1103 0xd9, 0x4d, 0x91, 0x1d, 0x02, 0x9c, 0x05, 0x25, 0x58, 0x29 }
1105 { GCRY_CIPHER_AES, GCRY_CIPHER_MODE_CBC,
1106 "abcdefghijklmnop", 16,
1107 "1234567890123456", 16,
1109 { 0xdc, 0x0c, 0xc2, 0xd9, 0x6b, 0x47, 0xf9, 0xeb, 0x06, 0xb4,
1110 0x2f, 0x6e, 0xec, 0x72, 0xbf, 0x55, 0x26, 0x7f, 0xa9, 0x97 }
1112 { GCRY_CIPHER_AES192, GCRY_CIPHER_MODE_CBC,
1113 "abcdefghijklmnopABCDEFG", 24,
1114 "1234567890123456", 16,
1116 { 0x2b, 0x90, 0x9b, 0xe6, 0x40, 0xab, 0x6e, 0xc2, 0xc5, 0xb1,
1117 0x87, 0xf5, 0x43, 0x84, 0x7b, 0x04, 0x06, 0x47, 0xd1, 0x8f }
1119 { GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_CBC,
1120 "abcdefghijklmnopABCDEFGHIJKLMNOP", 32,
1121 "1234567890123456", 16,
1123 { 0xaa, 0xa8, 0xdf, 0x03, 0xb0, 0xba, 0xc4, 0xe3, 0xc1, 0x02,
1124 0x38, 0x31, 0x8d, 0x86, 0xcb, 0x49, 0x6d, 0xad, 0xae, 0x01 }
1126 { GCRY_CIPHER_AES, GCRY_CIPHER_MODE_OFB,
1127 "abcdefghijklmnop", 16,
1128 "1234567890123456", 16,
1130 { 0x65, 0xfe, 0xde, 0x48, 0xd0, 0xa1, 0xa6, 0xf9, 0x24, 0x6b,
1131 0x52, 0x5f, 0x21, 0x8a, 0x6f, 0xc7, 0x70, 0x3b, 0xd8, 0x4a }
1133 { GCRY_CIPHER_AES192, GCRY_CIPHER_MODE_OFB,
1134 "abcdefghijklmnopABCDEFG", 24,
1135 "1234567890123456", 16,
1137 { 0x59, 0x5b, 0x02, 0xa2, 0x88, 0xc0, 0xbe, 0x94, 0x43, 0xaa,
1138 0x39, 0xf6, 0xbd, 0xcc, 0x83, 0x99, 0xee, 0x00, 0xa1, 0x91 }
1140 { GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_OFB,
1141 "abcdefghijklmnopABCDEFGHIJKLMNOP", 32,
1142 "1234567890123456", 16,
1144 { 0x38, 0x8c, 0xe1, 0xe2, 0xbe, 0x67, 0x60, 0xe8, 0xeb, 0xce,
1145 0xd0, 0xc6, 0xaa, 0xd6, 0xf6, 0x26, 0x15, 0x56, 0xd0, 0x2b }
1147 { GCRY_CIPHER_AES, GCRY_CIPHER_MODE_CTR,
1148 "abcdefghijklmnop", 16,
1149 "1234567890123456", 16,
1151 { 0x9a, 0x48, 0x94, 0xd6, 0x50, 0x46, 0x81, 0xdb, 0x68, 0x34,
1152 0x3b, 0xc5, 0x9e, 0x66, 0x94, 0x81, 0x98, 0xa0, 0xf9, 0xff }
1154 { GCRY_CIPHER_AES192, GCRY_CIPHER_MODE_CTR,
1155 "abcdefghijklmnopABCDEFG", 24,
1156 "1234567890123456", 16,
1158 { 0x2c, 0x2c, 0xd3, 0x75, 0x81, 0x2a, 0x59, 0x07, 0xeb, 0x08,
1159 0xce, 0x28, 0x4c, 0x0c, 0x6a, 0xa8, 0x8f, 0xa3, 0x98, 0x7e }
1161 { GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_CTR,
1162 "abcdefghijklmnopABCDEFGHIJKLMNOP", 32,
1163 "1234567890123456", 16,
1165 { 0x64, 0xce, 0x73, 0x03, 0xc7, 0x89, 0x99, 0x1f, 0xf1, 0xce,
1166 0xfe, 0xfb, 0xb9, 0x42, 0x30, 0xdf, 0xbb, 0x68, 0x6f, 0xd3 }
1168 { GCRY_CIPHER_AES, GCRY_CIPHER_MODE_ECB,
1169 "abcdefghijklmnop", 16,
1170 "1234567890123456", 16,
1172 { 0x51, 0xae, 0xf5, 0xac, 0x22, 0xa0, 0xba, 0x11, 0xc5, 0xaa,
1173 0xb4, 0x70, 0x99, 0xce, 0x18, 0x08, 0x12, 0x9b, 0xb1, 0xc5 }
1175 { GCRY_CIPHER_AES192, GCRY_CIPHER_MODE_ECB,
1176 "abcdefghijklmnopABCDEFG", 24,
1177 "1234567890123456", 16,
1179 { 0x57, 0x91, 0xea, 0x48, 0xd8, 0xbf, 0x9e, 0xc1, 0xae, 0x33,
1180 0xb3, 0xfd, 0xf7, 0x7a, 0xeb, 0x30, 0xb1, 0x62, 0x0d, 0x82 }
1182 { GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_ECB,
1183 "abcdefghijklmnopABCDEFGHIJKLMNOP", 32,
1184 "1234567890123456", 16,
1186 { 0x2d, 0x71, 0x54, 0xb9, 0xc5, 0x28, 0x76, 0xff, 0x76, 0xb5,
1187 0x99, 0x37, 0x99, 0x9d, 0xf7, 0x10, 0x6d, 0x86, 0x4f, 0x3f }
1190 gcry_cipher_hd_t hde = NULL;
1191 gcry_cipher_hd_t hdd = NULL;
1192 unsigned char *buffer_base, *outbuf_base; /* Allocated buffers. */
1193 unsigned char *buffer, *outbuf; /* Aligned buffers. */
1195 unsigned char hash[20];
1196 int i, j, keylen, blklen;
1197 gcry_error_t err = 0;
1200 fprintf (stderr, "Starting bulk cipher checks.\n");
1202 buflen = 16*100; /* We check a 1600 byte buffer. */
1203 buffer_base = gcry_xmalloc (buflen+15);
1204 buffer = buffer_base + (16 - ((size_t)buffer_base & 0x0f));
1205 outbuf_base = gcry_xmalloc (buflen+15);
1206 outbuf = outbuf_base + (16 - ((size_t)outbuf_base & 0x0f));
1209 for (i = 0; i < DIM (tv); i++)
1212 fprintf (stderr, " checking bulk encryption for %s [%i], mode %d\n",
1213 gcry_cipher_algo_name (tv[i].algo),
1214 tv[i].algo, tv[i].mode);
1215 err = gcry_cipher_open (&hde, tv[i].algo, tv[i].mode, 0);
1217 err = gcry_cipher_open (&hdd, tv[i].algo, tv[i].mode, 0);
1220 fail ("gcry_cipher_open failed: %s\n", gpg_strerror (err));
1224 keylen = gcry_cipher_get_algo_keylen(tv[i].algo);
1227 fail ("gcry_cipher_get_algo_keylen failed\n");
1231 err = gcry_cipher_setkey (hde, tv[i].key, tv[i].keylen);
1233 err = gcry_cipher_setkey (hdd, tv[i].key, tv[i].keylen);
1236 fail ("gcry_cipher_setkey failed: %s\n", gpg_strerror (err));
1240 blklen = gcry_cipher_get_algo_blklen(tv[i].algo);
1243 fail ("gcry_cipher_get_algo_blklen failed\n");
1247 err = gcry_cipher_setiv (hde, tv[i].iv, tv[i].ivlen);
1249 err = gcry_cipher_setiv (hdd, tv[i].iv, tv[i].ivlen);
1252 fail ("gcry_cipher_setiv failed: %s\n", gpg_strerror (err));
1256 /* Fill the buffer with our test pattern. */
1257 for (j=0; j < buflen; j++)
1258 buffer[j] = ((j & 0xff) ^ ((j >> 8) & 0xff));
1260 err = gcry_cipher_encrypt (hde, outbuf, buflen, buffer, buflen);
1263 fail ("gcry_cipher_encrypt (algo %d, mode %d) failed: %s\n",
1264 tv[i].algo, tv[i].mode, gpg_strerror (err));
1268 gcry_md_hash_buffer (GCRY_MD_SHA1, hash, outbuf, buflen);
1270 printf ("/*[%d]*/\n", i);
1271 fputs (" {", stdout);
1272 for (j=0; j < 20; j++)
1273 printf (" 0x%02x%c%s", hash[j], j==19? ' ':',', j == 9? "\n ":"");
1277 if (memcmp (hash, tv[i].t1_hash, 20))
1278 fail ("encrypt mismatch (algo %d, mode %d)\n",
1279 tv[i].algo, tv[i].mode);
1281 err = gcry_cipher_decrypt (hdd, outbuf, buflen, NULL, 0);
1284 fail ("gcry_cipher_decrypt (algo %d, mode %d) failed: %s\n",
1285 tv[i].algo, tv[i].mode, gpg_strerror (err));
1289 if (memcmp (buffer, outbuf, buflen))
1290 fail ("decrypt mismatch (algo %d, mode %d)\n",
1291 tv[i].algo, tv[i].mode);
1293 gcry_cipher_close (hde); hde = NULL;
1294 gcry_cipher_close (hdd); hdd = NULL;
1298 fprintf (stderr, "Completed bulk cipher checks.\n");
1300 gcry_cipher_close (hde);
1301 gcry_cipher_close (hdd);
1302 gcry_free (buffer_base);
1303 gcry_free (outbuf_base);
1309 check_one_cipher (int algo, int mode, int flags)
1311 gcry_cipher_hd_t hd;
1313 unsigned char plain[16], in[16], out[16];
1315 gcry_error_t err = 0;
1317 memcpy (key, "0123456789abcdef.,;/[]{}-=ABCDEF", 32);
1318 memcpy (plain, "foobar42FOOBAR17", 16);
1320 keylen = gcry_cipher_get_algo_keylen (algo);
1323 fail ("algo %d, mode %d, gcry_cipher_get_algo_keylen failed\n",
1328 if (keylen < 40 / 8 || keylen > 32)
1330 fail ("algo %d, mode %d, keylength problem (%d)\n", algo, mode, keylen);
1334 err = gcry_cipher_open (&hd, algo, mode, flags);
1337 fail ("algo %d, mode %d, gcry_cipher_open failed: %s\n",
1338 algo, mode, gpg_strerror (err));
1342 err = gcry_cipher_setkey (hd, key, keylen);
1345 fail ("algo %d, mode %d, gcry_cipher_setkey failed: %s\n",
1346 algo, mode, gpg_strerror (err));
1347 gcry_cipher_close (hd);
1351 err = gcry_cipher_encrypt (hd, out, 16, plain, 16);
1354 fail ("algo %d, mode %d, gcry_cipher_encrypt failed: %s\n",
1355 algo, mode, gpg_strerror (err));
1356 gcry_cipher_close (hd);
1360 gcry_cipher_reset (hd);
1362 err = gcry_cipher_decrypt (hd, in, 16, out, 16);
1365 fail ("algo %d, mode %d, gcry_cipher_decrypt failed: %s\n",
1366 algo, mode, gpg_strerror (err));
1367 gcry_cipher_close (hd);
1371 if (memcmp (plain, in, 16))
1372 fail ("algo %d, mode %d, encrypt-decrypt mismatch\n", algo, mode);
1374 /* Again, using in-place encryption. */
1375 gcry_cipher_reset (hd);
1377 memcpy (out, plain, 16);
1378 err = gcry_cipher_encrypt (hd, out, 16, NULL, 0);
1381 fail ("algo %d, mode %d, in-place, gcry_cipher_encrypt failed: %s\n",
1382 algo, mode, gpg_strerror (err));
1383 gcry_cipher_close (hd);
1387 gcry_cipher_reset (hd);
1389 err = gcry_cipher_decrypt (hd, out, 16, NULL, 0);
1392 fail ("algo %d, mode %d, in-place, gcry_cipher_decrypt failed: %s\n",
1393 algo, mode, gpg_strerror (err));
1394 gcry_cipher_close (hd);
1398 if (memcmp (plain, out, 16))
1399 fail ("algo %d, mode %d, in-place, encrypt-decrypt mismatch\n",algo, mode);
1402 gcry_cipher_close (hd);
1408 check_ciphers (void)
1410 static int algos[] = {
1412 GCRY_CIPHER_BLOWFISH,
1427 GCRY_CIPHER_TWOFISH,
1428 GCRY_CIPHER_TWOFISH128,
1431 GCRY_CIPHER_SERPENT128,
1432 GCRY_CIPHER_SERPENT192,
1433 GCRY_CIPHER_SERPENT256,
1436 GCRY_CIPHER_RFC2268_40,
1442 GCRY_CIPHER_CAMELLIA128,
1443 GCRY_CIPHER_CAMELLIA192,
1444 GCRY_CIPHER_CAMELLIA256,
1448 static int algos2[] = {
1450 GCRY_CIPHER_ARCFOUR,
1457 fprintf (stderr, "Starting Cipher checks.\n");
1458 for (i = 0; algos[i]; i++)
1460 if (gcry_cipher_test_algo (algos[i]) && in_fips_mode)
1463 fprintf (stderr, " algorithm %d not available in fips mode\n",
1468 fprintf (stderr, " checking %s [%i]\n",
1469 gcry_cipher_algo_name (algos[i]),
1470 gcry_cipher_map_name (gcry_cipher_algo_name (algos[i])));
1472 check_one_cipher (algos[i], GCRY_CIPHER_MODE_ECB, 0);
1473 check_one_cipher (algos[i], GCRY_CIPHER_MODE_CFB, 0);
1474 check_one_cipher (algos[i], GCRY_CIPHER_MODE_OFB, 0);
1475 check_one_cipher (algos[i], GCRY_CIPHER_MODE_CBC, 0);
1476 check_one_cipher (algos[i], GCRY_CIPHER_MODE_CBC, GCRY_CIPHER_CBC_CTS);
1477 check_one_cipher (algos[i], GCRY_CIPHER_MODE_CTR, 0);
1480 for (i = 0; algos2[i]; i++)
1482 if (gcry_cipher_test_algo (algos[i]) && in_fips_mode)
1485 fprintf (stderr, " algorithm %d not available in fips mode\n",
1490 fprintf (stderr, " checking `%s'\n",
1491 gcry_cipher_algo_name (algos2[i]));
1493 check_one_cipher (algos2[i], GCRY_CIPHER_MODE_STREAM, 0);
1495 /* we have now run all cipher's selftests */
1498 fprintf (stderr, "Completed Cipher checks.\n");
1500 /* TODO: add some extra encryption to test the higher level functions */
1505 check_cipher_modes(void)
1508 fprintf (stderr, "Starting Cipher Mode checks.\n");
1510 check_aes128_cbc_cts_cipher ();
1511 check_cbc_mac_cipher ();
1512 check_ctr_cipher ();
1513 check_cfb_cipher ();
1514 check_ofb_cipher ();
1517 fprintf (stderr, "Completed Cipher Mode checks.\n");
1521 check_one_md (int algo, const char *data, int len, const char *expect)
1523 gcry_md_hd_t hd, hd2;
1527 gcry_error_t err = 0;
1529 err = gcry_md_open (&hd, algo, 0);
1532 fail ("algo %d, gcry_md_open failed: %s\n", algo, gpg_strerror (err));
1536 mdlen = gcry_md_get_algo_dlen (algo);
1537 if (mdlen < 1 || mdlen > 500)
1539 fail ("algo %d, gcry_md_get_algo_dlen failed: %d\n", algo, mdlen);
1543 if (*data == '!' && !data[1])
1544 { /* hash one million times a "a" */
1547 /* Write in odd size chunks so that we test the buffering. */
1548 memset (aaa, 'a', 1000);
1549 for (i = 0; i < 1000; i++)
1550 gcry_md_write (hd, aaa, 1000);
1553 gcry_md_write (hd, data, len);
1555 err = gcry_md_copy (&hd2, hd);
1558 fail ("algo %d, gcry_md_copy failed: %s\n", algo, gpg_strerror (err));
1563 p = gcry_md_read (hd2, algo);
1565 if (memcmp (p, expect, mdlen))
1567 printf ("computed: ");
1568 for (i = 0; i < mdlen; i++)
1569 printf ("%02x ", p[i] & 0xFF);
1570 printf ("\nexpected: ");
1571 for (i = 0; i < mdlen; i++)
1572 printf ("%02x ", expect[i] & 0xFF);
1575 fail ("algo %d, digest mismatch\n", algo);
1578 gcry_md_close (hd2);
1583 check_digests (void)
1593 "\x31\xD6\xCF\xE0\xD1\x6A\xE9\x31\xB7\x3C\x59\xD7\xE0\xC0\x89\xC0" },
1595 "\xbd\xe5\x2c\xb3\x1d\xe3\x3e\x46\x24\x5e\x05\xfb\xdb\xd6\xfb\x24" },
1596 { GCRY_MD_MD4, "message digest",
1597 "\xd9\x13\x0a\x81\x64\x54\x9f\xe8\x18\x87\x48\x06\xe1\xc7\x01\x4b" },
1599 "\xD4\x1D\x8C\xD9\x8F\x00\xB2\x04\xE9\x80\x09\x98\xEC\xF8\x42\x7E" },
1601 "\x0C\xC1\x75\xB9\xC0\xF1\xB6\xA8\x31\xC3\x99\xE2\x69\x77\x26\x61" },
1602 { GCRY_MD_MD5, "abc",
1603 "\x90\x01\x50\x98\x3C\xD2\x4F\xB0\xD6\x96\x3F\x7D\x28\xE1\x7F\x72" },
1604 { GCRY_MD_MD5, "message digest",
1605 "\xF9\x6B\x69\x7D\x7C\xB7\x93\x8D\x52\x5A\x2F\x31\xAA\xF1\x61\xD0" },
1606 { GCRY_MD_SHA1, "abc",
1607 "\xA9\x99\x3E\x36\x47\x06\x81\x6A\xBA\x3E"
1608 "\x25\x71\x78\x50\xC2\x6C\x9C\xD0\xD8\x9D" },
1610 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1611 "\x84\x98\x3E\x44\x1C\x3B\xD2\x6E\xBA\xAE"
1612 "\x4A\xA1\xF9\x51\x29\xE5\xE5\x46\x70\xF1" },
1613 { GCRY_MD_SHA1, "!" /* kludge for "a"*1000000 */ ,
1614 "\x34\xAA\x97\x3C\xD4\xC4\xDA\xA4\xF6\x1E"
1615 "\xEB\x2B\xDB\xAD\x27\x31\x65\x34\x01\x6F" },
1617 { GCRY_MD_SHA224, "abc",
1618 "\x23\x09\x7d\x22\x34\x05\xd8\x22\x86\x42\xa4\x77\xbd\xa2\x55\xb3"
1619 "\x2a\xad\xbc\xe4\xbd\xa0\xb3\xf7\xe3\x6c\x9d\xa7" },
1621 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1622 "\x75\x38\x8b\x16\x51\x27\x76\xcc\x5d\xba\x5d\xa1\xfd\x89\x01\x50"
1623 "\xb0\xc6\x45\x5c\xb4\xf5\x8b\x19\x52\x52\x25\x25" },
1624 { GCRY_MD_SHA224, "!",
1625 "\x20\x79\x46\x55\x98\x0c\x91\xd8\xbb\xb4\xc1\xea\x97\x61\x8a\x4b"
1626 "\xf0\x3f\x42\x58\x19\x48\xb2\xee\x4e\xe7\xad\x67" },
1627 { GCRY_MD_SHA256, "abc",
1628 "\xba\x78\x16\xbf\x8f\x01\xcf\xea\x41\x41\x40\xde\x5d\xae\x22\x23"
1629 "\xb0\x03\x61\xa3\x96\x17\x7a\x9c\xb4\x10\xff\x61\xf2\x00\x15\xad" },
1631 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1632 "\x24\x8d\x6a\x61\xd2\x06\x38\xb8\xe5\xc0\x26\x93\x0c\x3e\x60\x39"
1633 "\xa3\x3c\xe4\x59\x64\xff\x21\x67\xf6\xec\xed\xd4\x19\xdb\x06\xc1" },
1634 { GCRY_MD_SHA256, "!",
1635 "\xcd\xc7\x6e\x5c\x99\x14\xfb\x92\x81\xa1\xc7\xe2\x84\xd7\x3e\x67"
1636 "\xf1\x80\x9a\x48\xa4\x97\x20\x0e\x04\x6d\x39\xcc\xc7\x11\x2c\xd0" },
1637 { GCRY_MD_SHA384, "abc",
1638 "\xcb\x00\x75\x3f\x45\xa3\x5e\x8b\xb5\xa0\x3d\x69\x9a\xc6\x50\x07"
1639 "\x27\x2c\x32\xab\x0e\xde\xd1\x63\x1a\x8b\x60\x5a\x43\xff\x5b\xed"
1640 "\x80\x86\x07\x2b\xa1\xe7\xcc\x23\x58\xba\xec\xa1\x34\xc8\x25\xa7" },
1641 { GCRY_MD_SHA512, "abc",
1642 "\xDD\xAF\x35\xA1\x93\x61\x7A\xBA\xCC\x41\x73\x49\xAE\x20\x41\x31"
1643 "\x12\xE6\xFA\x4E\x89\xA9\x7E\xA2\x0A\x9E\xEE\xE6\x4B\x55\xD3\x9A"
1644 "\x21\x92\x99\x2A\x27\x4F\xC1\xA8\x36\xBA\x3C\x23\xA3\xFE\xEB\xBD"
1645 "\x45\x4D\x44\x23\x64\x3C\xE8\x0E\x2A\x9A\xC9\x4F\xA5\x4C\xA4\x9F" },
1646 { GCRY_MD_RMD160, "",
1647 "\x9c\x11\x85\xa5\xc5\xe9\xfc\x54\x61\x28"
1648 "\x08\x97\x7e\xe8\xf5\x48\xb2\x25\x8d\x31" },
1649 { GCRY_MD_RMD160, "a",
1650 "\x0b\xdc\x9d\x2d\x25\x6b\x3e\xe9\xda\xae"
1651 "\x34\x7b\xe6\xf4\xdc\x83\x5a\x46\x7f\xfe" },
1652 { GCRY_MD_RMD160, "abc",
1653 "\x8e\xb2\x08\xf7\xe0\x5d\x98\x7a\x9b\x04"
1654 "\x4a\x8e\x98\xc6\xb0\x87\xf1\x5a\x0b\xfc" },
1655 { GCRY_MD_RMD160, "message digest",
1656 "\x5d\x06\x89\xef\x49\xd2\xfa\xe5\x72\xb8"
1657 "\x81\xb1\x23\xa8\x5f\xfa\x21\x59\x5f\x36" },
1658 { GCRY_MD_CRC32, "", "\x00\x00\x00\x00" },
1659 { GCRY_MD_CRC32, "foo", "\x8c\x73\x65\x21" },
1660 { GCRY_MD_CRC32_RFC1510, "", "\x00\x00\x00\x00" },
1661 { GCRY_MD_CRC32_RFC1510, "foo", "\x73\x32\xbc\x33" },
1662 { GCRY_MD_CRC32_RFC1510, "test0123456789", "\xb8\x3e\x88\xd6" },
1663 { GCRY_MD_CRC32_RFC1510, "MASSACHVSETTS INSTITVTE OF TECHNOLOGY",
1664 "\xe3\x41\x80\xf7" },
1666 { GCRY_MD_CRC32_RFC1510, "\x80\x00", "\x3b\x83\x98\x4b" },
1667 { GCRY_MD_CRC32_RFC1510, "\x00\x08", "\x0e\xdb\x88\x32" },
1668 { GCRY_MD_CRC32_RFC1510, "\x00\x80", "\xed\xb8\x83\x20" },
1670 { GCRY_MD_CRC32_RFC1510, "\x80", "\xed\xb8\x83\x20" },
1672 { GCRY_MD_CRC32_RFC1510, "\x80\x00\x00\x00", "\xed\x59\xb6\x3b" },
1673 { GCRY_MD_CRC32_RFC1510, "\x00\x00\x00\x01", "\x77\x07\x30\x96" },
1675 { GCRY_MD_CRC24_RFC2440, "", "\xb7\x04\xce" },
1676 { GCRY_MD_CRC24_RFC2440, "foo", "\x4f\xc2\x55" },
1678 { GCRY_MD_TIGER, "",
1679 "\x24\xF0\x13\x0C\x63\xAC\x93\x32\x16\x16\x6E\x76"
1680 "\xB1\xBB\x92\x5F\xF3\x73\xDE\x2D\x49\x58\x4E\x7A" },
1681 { GCRY_MD_TIGER, "abc",
1682 "\xF2\x58\xC1\xE8\x84\x14\xAB\x2A\x52\x7A\xB5\x41"
1683 "\xFF\xC5\xB8\xBF\x93\x5F\x7B\x95\x1C\x13\x29\x51" },
1684 { GCRY_MD_TIGER, "Tiger",
1685 "\x9F\x00\xF5\x99\x07\x23\x00\xDD\x27\x6A\xBB\x38"
1686 "\xC8\xEB\x6D\xEC\x37\x79\x0C\x11\x6F\x9D\x2B\xDF" },
1687 { GCRY_MD_TIGER, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefg"
1688 "hijklmnopqrstuvwxyz0123456789+-",
1689 "\x87\xFB\x2A\x90\x83\x85\x1C\xF7\x47\x0D\x2C\xF8"
1690 "\x10\xE6\xDF\x9E\xB5\x86\x44\x50\x34\xA5\xA3\x86" },
1691 { GCRY_MD_TIGER, "ABCDEFGHIJKLMNOPQRSTUVWXYZ=abcdef"
1692 "ghijklmnopqrstuvwxyz+0123456789",
1693 "\x46\x7D\xB8\x08\x63\xEB\xCE\x48\x8D\xF1\xCD\x12"
1694 "\x61\x65\x5D\xE9\x57\x89\x65\x65\x97\x5F\x91\x97" },
1695 { GCRY_MD_TIGER, "Tiger - A Fast New Hash Function, "
1696 "by Ross Anderson and Eli Biham",
1697 "\x0C\x41\x0A\x04\x29\x68\x86\x8A\x16\x71\xDA\x5A"
1698 "\x3F\xD2\x9A\x72\x5E\xC1\xE4\x57\xD3\xCD\xB3\x03" },
1699 { GCRY_MD_TIGER, "Tiger - A Fast New Hash Function, "
1700 "by Ross Anderson and Eli Biham, proceedings of Fa"
1701 "st Software Encryption 3, Cambridge.",
1702 "\xEB\xF5\x91\xD5\xAF\xA6\x55\xCE\x7F\x22\x89\x4F"
1703 "\xF8\x7F\x54\xAC\x89\xC8\x11\xB6\xB0\xDA\x31\x93" },
1704 { GCRY_MD_TIGER, "Tiger - A Fast New Hash Function, "
1705 "by Ross Anderson and Eli Biham, proceedings of Fa"
1706 "st Software Encryption 3, Cambridge, 1996.",
1707 "\x3D\x9A\xEB\x03\xD1\xBD\x1A\x63\x57\xB2\x77\x4D"
1708 "\xFD\x6D\x5B\x24\xDD\x68\x15\x1D\x50\x39\x74\xFC" },
1709 { GCRY_MD_TIGER, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefgh"
1710 "ijklmnopqrstuvwxyz0123456789+-ABCDEFGHIJKLMNOPQRS"
1711 "TUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-",
1712 "\x00\xB8\x3E\xB4\xE5\x34\x40\xC5\x76\xAC\x6A\xAE"
1713 "\xE0\xA7\x48\x58\x25\xFD\x15\xE7\x0A\x59\xFF\xE4" },
1715 { GCRY_MD_TIGER1, "",
1716 "\x32\x93\xAC\x63\x0C\x13\xF0\x24\x5F\x92\xBB\xB1"
1717 "\x76\x6E\x16\x16\x7A\x4E\x58\x49\x2D\xDE\x73\xF3" },
1718 { GCRY_MD_TIGER1, "a",
1719 "\x77\xBE\xFB\xEF\x2E\x7E\xF8\xAB\x2E\xC8\xF9\x3B"
1720 "\xF5\x87\xA7\xFC\x61\x3E\x24\x7F\x5F\x24\x78\x09" },
1721 { GCRY_MD_TIGER1, "abc",
1722 "\x2A\xAB\x14\x84\xE8\xC1\x58\xF2\xBF\xB8\xC5\xFF"
1723 "\x41\xB5\x7A\x52\x51\x29\x13\x1C\x95\x7B\x5F\x93" },
1724 { GCRY_MD_TIGER1, "message digest",
1725 "\xD9\x81\xF8\xCB\x78\x20\x1A\x95\x0D\xCF\x30\x48"
1726 "\x75\x1E\x44\x1C\x51\x7F\xCA\x1A\xA5\x5A\x29\xF6" },
1727 { GCRY_MD_TIGER1, "abcdefghijklmnopqrstuvwxyz",
1728 "\x17\x14\xA4\x72\xEE\xE5\x7D\x30\x04\x04\x12\xBF"
1729 "\xCC\x55\x03\x2A\x0B\x11\x60\x2F\xF3\x7B\xEE\xE9" },
1731 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1732 "\x0F\x7B\xF9\xA1\x9B\x9C\x58\xF2\xB7\x61\x0D\xF7"
1733 "\xE8\x4F\x0A\xC3\xA7\x1C\x63\x1E\x7B\x53\xF7\x8E" },
1735 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1736 "abcdefghijklmnopqrstuvwxyz" "0123456789",
1737 "\x8D\xCE\xA6\x80\xA1\x75\x83\xEE\x50\x2B\xA3\x8A"
1738 "\x3C\x36\x86\x51\x89\x0F\xFB\xCC\xDC\x49\xA8\xCC" },
1740 "1234567890" "1234567890" "1234567890" "1234567890"
1741 "1234567890" "1234567890" "1234567890" "1234567890",
1742 "\x1C\x14\x79\x55\x29\xFD\x9F\x20\x7A\x95\x8F\x84"
1743 "\xC5\x2F\x11\xE8\x87\xFA\x0C\xAB\xDF\xD9\x1B\xFD" },
1744 { GCRY_MD_TIGER1, "!",
1745 "\x6D\xB0\xE2\x72\x9C\xBE\xAD\x93\xD7\x15\xC6\xA7"
1746 "\xD3\x63\x02\xE9\xB3\xCE\xE0\xD2\xBC\x31\x4B\x41" },
1748 { GCRY_MD_TIGER2, "",
1749 "\x44\x41\xBE\x75\xF6\x01\x87\x73\xC2\x06\xC2\x27"
1750 "\x45\x37\x4B\x92\x4A\xA8\x31\x3F\xEF\x91\x9F\x41" },
1751 { GCRY_MD_TIGER2, "a",
1752 "\x67\xE6\xAE\x8E\x9E\x96\x89\x99\xF7\x0A\x23\xE7"
1753 "\x2A\xEA\xA9\x25\x1C\xBC\x7C\x78\xA7\x91\x66\x36" },
1754 { GCRY_MD_TIGER2, "abc",
1755 "\xF6\x8D\x7B\xC5\xAF\x4B\x43\xA0\x6E\x04\x8D\x78"
1756 "\x29\x56\x0D\x4A\x94\x15\x65\x8B\xB0\xB1\xF3\xBF" },
1757 { GCRY_MD_TIGER2, "message digest",
1758 "\xE2\x94\x19\xA1\xB5\xFA\x25\x9D\xE8\x00\x5E\x7D"
1759 "\xE7\x50\x78\xEA\x81\xA5\x42\xEF\x25\x52\x46\x2D" },
1760 { GCRY_MD_TIGER2, "abcdefghijklmnopqrstuvwxyz",
1761 "\xF5\xB6\xB6\xA7\x8C\x40\x5C\x85\x47\xE9\x1C\xD8"
1762 "\x62\x4C\xB8\xBE\x83\xFC\x80\x4A\x47\x44\x88\xFD" },
1764 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
1765 "\xA6\x73\x7F\x39\x97\xE8\xFB\xB6\x3D\x20\xD2\xDF"
1766 "\x88\xF8\x63\x76\xB5\xFE\x2D\x5C\xE3\x66\x46\xA9" },
1768 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1769 "abcdefghijklmnopqrstuvwxyz" "0123456789",
1770 "\xEA\x9A\xB6\x22\x8C\xEE\x7B\x51\xB7\x75\x44\xFC"
1771 "\xA6\x06\x6C\x8C\xBB\x5B\xBA\xE6\x31\x95\x05\xCD" },
1773 "1234567890" "1234567890" "1234567890" "1234567890"
1774 "1234567890" "1234567890" "1234567890" "1234567890",
1775 "\xD8\x52\x78\x11\x53\x29\xEB\xAA\x0E\xEC\x85\xEC"
1776 "\xDC\x53\x96\xFD\xA8\xAA\x3A\x58\x20\x94\x2F\xFF" },
1777 { GCRY_MD_TIGER2, "!",
1778 "\xE0\x68\x28\x1F\x06\x0F\x55\x16\x28\xCC\x57\x15"
1779 "\xB9\xD0\x22\x67\x96\x91\x4D\x45\xF7\x71\x7C\xF4" },
1781 { GCRY_MD_WHIRLPOOL, "",
1782 "\x19\xFA\x61\xD7\x55\x22\xA4\x66\x9B\x44\xE3\x9C\x1D\x2E\x17\x26"
1783 "\xC5\x30\x23\x21\x30\xD4\x07\xF8\x9A\xFE\xE0\x96\x49\x97\xF7\xA7"
1784 "\x3E\x83\xBE\x69\x8B\x28\x8F\xEB\xCF\x88\xE3\xE0\x3C\x4F\x07\x57"
1785 "\xEA\x89\x64\xE5\x9B\x63\xD9\x37\x08\xB1\x38\xCC\x42\xA6\x6E\xB3" },
1786 { GCRY_MD_WHIRLPOOL, "a",
1787 "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
1788 "\xF0\xDF\xF5\x94\x13\x14\x5E\x69\x73\xC4\x50\x01\xD0\x08\x7B\x42"
1789 "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6\x3A\x42\x39\x1A\x39\x14\x5A\x59"
1790 "\x1A\x92\x20\x0D\x56\x01\x95\xE5\x3B\x47\x85\x84\xFD\xAE\x23\x1A" },
1791 { GCRY_MD_WHIRLPOOL, "a",
1792 "\x8A\xCA\x26\x02\x79\x2A\xEC\x6F\x11\xA6\x72\x06\x53\x1F\xB7\xD7"
1793 "\xF0\xDF\xF5\x94\x13\x14\x5E\x69\x73\xC4\x50\x01\xD0\x08\x7B\x42"
1794 "\xD1\x1B\xC6\x45\x41\x3A\xEF\xF6\x3A\x42\x39\x1A\x39\x14\x5A\x59"
1795 "\x1A\x92\x20\x0D\x56\x01\x95\xE5\x3B\x47\x85\x84\xFD\xAE\x23\x1A" },
1796 { GCRY_MD_WHIRLPOOL,
1797 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
1798 "\xDC\x37\xE0\x08\xCF\x9E\xE6\x9B\xF1\x1F\x00\xED\x9A\xBA\x26\x90"
1799 "\x1D\xD7\xC2\x8C\xDE\xC0\x66\xCC\x6A\xF4\x2E\x40\xF8\x2F\x3A\x1E"
1800 "\x08\xEB\xA2\x66\x29\x12\x9D\x8F\xB7\xCB\x57\x21\x1B\x92\x81\xA6"
1801 "\x55\x17\xCC\x87\x9D\x7B\x96\x21\x42\xC6\x5F\x5A\x7A\xF0\x14\x67" },
1802 { GCRY_MD_WHIRLPOOL,
1804 "\x0C\x99\x00\x5B\xEB\x57\xEF\xF5\x0A\x7C\xF0\x05\x56\x0D\xDF\x5D"
1805 "\x29\x05\x7F\xD8\x6B\x20\xBF\xD6\x2D\xEC\xA0\xF1\xCC\xEA\x4A\xF5"
1806 "\x1F\xC1\x54\x90\xED\xDC\x47\xAF\x32\xBB\x2B\x66\xC3\x4F\xF9\xAD"
1807 "\x8C\x60\x08\xAD\x67\x7F\x77\x12\x69\x53\xB2\x26\xE4\xED\x8B\x01" },
1813 fprintf (stderr, "Starting hash checks.\n");
1815 for (i = 0; algos[i].md; i++)
1817 if ((gcry_md_test_algo (algos[i].md) || algos[i].md == GCRY_MD_MD5)
1821 fprintf (stderr, " algorithm %d not available in fips mode\n",
1826 fprintf (stderr, " checking %s [%i] for length %zi\n",
1827 gcry_md_algo_name (algos[i].md),
1829 !strcmp (algos[i].data, "!")?
1830 1000000 : strlen(algos[i].data));
1832 check_one_md (algos[i].md, algos[i].data, strlen (algos[i].data),
1837 fprintf (stderr, "Completed hash checks.\n");
1841 check_one_hmac (int algo, const char *data, int datalen,
1842 const char *key, int keylen, const char *expect)
1844 gcry_md_hd_t hd, hd2;
1848 gcry_error_t err = 0;
1850 err = gcry_md_open (&hd, algo, GCRY_MD_FLAG_HMAC);
1853 fail ("algo %d, gcry_md_open failed: %s\n", algo, gpg_strerror (err));
1857 mdlen = gcry_md_get_algo_dlen (algo);
1858 if (mdlen < 1 || mdlen > 500)
1860 fail ("algo %d, gcry_md_get_algo_dlen failed: %d\n", algo, mdlen);
1864 gcry_md_setkey( hd, key, keylen );
1866 gcry_md_write (hd, data, datalen);
1868 err = gcry_md_copy (&hd2, hd);
1871 fail ("algo %d, gcry_md_copy failed: %s\n", algo, gpg_strerror (err));
1876 p = gcry_md_read (hd2, algo);
1878 fail("algo %d, hmac gcry_md_read failed\n", algo);
1880 if (memcmp (p, expect, mdlen))
1882 printf ("computed: ");
1883 for (i = 0; i < mdlen; i++)
1884 printf ("%02x ", p[i] & 0xFF);
1885 printf ("\nexpected: ");
1886 for (i = 0; i < mdlen; i++)
1887 printf ("%02x ", expect[i] & 0xFF);
1890 fail ("algo %d, digest mismatch\n", algo);
1893 gcry_md_close (hd2);
1907 { GCRY_MD_MD5, "what do ya want for nothing?", "Jefe",
1908 "\x75\x0c\x78\x3e\x6a\xb0\xb5\x03\xea\xa8\x6e\x31\x0a\x5d\xb7\x38" },
1911 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b",
1912 "\x92\x94\x72\x7a\x36\x38\xbb\x1c\x13\xf4\x8e\xf8\x15\x8b\xfc\x9d" },
1914 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1915 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1916 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1917 "\xdd\xdd\xdd\xdd\xdd",
1918 "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA",
1919 "\x56\xbe\x34\x52\x1d\x14\x4c\x88\xdb\xb8\xc7\x33\xf0\xe8\xb3\xf6" },
1921 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1922 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1923 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1924 "\xcd\xcd\xcd\xcd\xcd",
1925 "\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1926 "\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1927 "\x69\x7e\xaf\x0a\xca\x3a\x3a\xea\x3a\x75\x16\x47\x46\xff\xaa\x79" },
1928 { GCRY_MD_MD5, "Test With Truncation",
1929 "\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c",
1930 "\x56\x46\x1e\xf2\x34\x2e\xdc\x00\xf9\xba\xb9\x95\x69\x0e\xfd\x4c" },
1931 { GCRY_MD_MD5, "Test Using Larger Than Block-Size Key - Hash Key First",
1932 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1933 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1934 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1935 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1936 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1937 "\xaa\xaa\xaa\xaa\xaa",
1938 "\x6b\x1a\xb7\xfe\x4b\xd7\xbf\x8f\x0b\x62\xe6\xce\x61\xb9\xd0\xcd" },
1940 "Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data",
1941 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1942 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1943 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1944 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1945 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1946 "\xaa\xaa\xaa\xaa\xaa",
1947 "\x6f\x63\x0f\xad\x67\xcd\xa0\xee\x1f\xb1\xf5\x62\xdb\x3a\xa5\x3e", },
1948 { GCRY_MD_SHA256, "what do ya want for nothing?", "Jefe",
1949 "\x5b\xdc\xc1\x46\xbf\x60\x75\x4e\x6a\x04\x24\x26\x08\x95\x75\xc7\x5a"
1950 "\x00\x3f\x08\x9d\x27\x39\x83\x9d\xec\x58\xb9\x64\xec\x38\x43" },
1953 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
1955 "\xb0\x34\x4c\x61\xd8\xdb\x38\x53\x5c\xa8\xaf\xce\xaf\x0b\xf1\x2b\x88"
1956 "\x1d\xc2\x00\xc9\x83\x3d\xa7\x26\xe9\x37\x6c\x2e\x32\xcf\xf7" },
1958 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1959 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1960 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
1961 "\xdd\xdd\xdd\xdd\xdd",
1962 "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA"
1964 "\x77\x3e\xa9\x1e\x36\x80\x0e\x46\x85\x4d\xb8\xeb\xd0\x91\x81\xa7"
1965 "\x29\x59\x09\x8b\x3e\xf8\xc1\x22\xd9\x63\x55\x14\xce\xd5\x65\xfe" },
1967 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1968 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1969 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
1970 "\xcd\xcd\xcd\xcd\xcd",
1971 "\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
1972 "\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19",
1973 "\x82\x55\x8a\x38\x9a\x44\x3c\x0e\xa4\xcc\x81\x98\x99\xf2\x08"
1974 "\x3a\x85\xf0\xfa\xa3\xe5\x78\xf8\x07\x7a\x2e\x3f\xf4\x67\x29\x66\x5b" },
1976 "Test Using Larger Than Block-Size Key - Hash Key First",
1977 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1978 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1979 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1980 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1981 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1982 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1983 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1984 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1986 "\x60\xe4\x31\x59\x1e\xe0\xb6\x7f\x0d\x8a\x26\xaa\xcb\xf5\xb7\x7f"
1987 "\x8e\x0b\xc6\x21\x37\x28\xc5\x14\x05\x46\x04\x0f\x0e\xe3\x7f\x54" },
1989 "This is a test using a larger than block-size key and a larger than block-size data. The key needs to be hashed before being used by the HMAC algorithm.",
1990 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1991 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1992 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1993 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1994 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1995 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1996 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1997 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
1999 "\x9b\x09\xff\xa7\x1b\x94\x2f\xcb\x27\x63\x5f\xbc\xd5\xb0\xe9\x44"
2000 "\xbf\xdc\x63\x64\x4f\x07\x13\x93\x8a\x7f\x51\x53\x5c\x3a\x35\xe2" },
2001 { GCRY_MD_SHA224, "what do ya want for nothing?", "Jefe",
2002 "\xa3\x0e\x01\x09\x8b\xc6\xdb\xbf\x45\x69\x0f\x3a\x7e\x9e\x6d\x0f"
2003 "\x8b\xbe\xa2\xa3\x9e\x61\x48\x00\x8f\xd0\x5e\x44" },
2006 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
2008 "\x89\x6f\xb1\x12\x8a\xbb\xdf\x19\x68\x32\x10\x7c\xd4\x9d\xf3\x3f\x47"
2009 "\xb4\xb1\x16\x99\x12\xba\x4f\x53\x68\x4b\x22" },
2011 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
2012 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
2013 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
2014 "\xdd\xdd\xdd\xdd\xdd",
2015 "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA"
2017 "\x7f\xb3\xcb\x35\x88\xc6\xc1\xf6\xff\xa9\x69\x4d\x7d\x6a\xd2\x64"
2018 "\x93\x65\xb0\xc1\xf6\x5d\x69\xd1\xec\x83\x33\xea" },
2020 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
2021 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
2022 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
2023 "\xcd\xcd\xcd\xcd\xcd",
2024 "\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2025 "\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19",
2026 "\x6c\x11\x50\x68\x74\x01\x3c\xac\x6a\x2a\xbc\x1b\xb3\x82\x62"
2027 "\x7c\xec\x6a\x90\xd8\x6e\xfc\x01\x2d\xe7\xaf\xec\x5a" },
2029 "Test Using Larger Than Block-Size Key - Hash Key First",
2030 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2031 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2032 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2033 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2034 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2035 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2036 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2037 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2039 "\x95\xe9\xa0\xdb\x96\x20\x95\xad\xae\xbe\x9b\x2d\x6f\x0d\xbc\xe2"
2040 "\xd4\x99\xf1\x12\xf2\xd2\xb7\x27\x3f\xa6\x87\x0e" },
2042 "This is a test using a larger than block-size key and a larger than block-size data. The key needs to be hashed before being used by the HMAC algorithm.",
2043 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2044 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2045 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2046 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2047 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2048 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2049 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2050 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2052 "\x3a\x85\x41\x66\xac\x5d\x9f\x02\x3f\x54\xd5\x17\xd0\xb3\x9d\xbd"
2053 "\x94\x67\x70\xdb\x9c\x2b\x95\xc9\xf6\xf5\x65\xd1" },
2054 { GCRY_MD_SHA384, "what do ya want for nothing?", "Jefe",
2055 "\xaf\x45\xd2\xe3\x76\x48\x40\x31\x61\x7f\x78\xd2\xb5\x8a\x6b\x1b"
2056 "\x9c\x7e\xf4\x64\xf5\xa0\x1b\x47\xe4\x2e\xc3\x73\x63\x22\x44\x5e"
2057 "\x8e\x22\x40\xca\x5e\x69\xe2\xc7\x8b\x32\x39\xec\xfa\xb2\x16\x49" },
2060 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
2062 "\xaf\xd0\x39\x44\xd8\x48\x95\x62\x6b\x08\x25\xf4\xab\x46\x90\x7f\x15"
2063 "\xf9\xda\xdb\xe4\x10\x1e\xc6\x82\xaa\x03\x4c\x7c\xeb\xc5\x9c\xfa\xea"
2064 "\x9e\xa9\x07\x6e\xde\x7f\x4a\xf1\x52\xe8\xb2\xfa\x9c\xb6" },
2066 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
2067 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
2068 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
2069 "\xdd\xdd\xdd\xdd\xdd",
2070 "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA"
2072 "\x88\x06\x26\x08\xd3\xe6\xad\x8a\x0a\xa2\xac\xe0\x14\xc8\xa8\x6f"
2073 "\x0a\xa6\x35\xd9\x47\xac\x9f\xeb\xe8\x3e\xf4\xe5\x59\x66\x14\x4b"
2074 "\x2a\x5a\xb3\x9d\xc1\x38\x14\xb9\x4e\x3a\xb6\xe1\x01\xa3\x4f\x27" },
2076 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
2077 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
2078 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
2079 "\xcd\xcd\xcd\xcd\xcd",
2080 "\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2081 "\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19",
2082 "\x3e\x8a\x69\xb7\x78\x3c\x25\x85\x19\x33\xab\x62\x90\xaf\x6c\xa7"
2083 "\x7a\x99\x81\x48\x08\x50\x00\x9c\xc5\x57\x7c\x6e\x1f\x57\x3b\x4e"
2084 "\x68\x01\xdd\x23\xc4\xa7\xd6\x79\xcc\xf8\xa3\x86\xc6\x74\xcf\xfb" },
2086 "Test Using Larger Than Block-Size Key - Hash Key First",
2087 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2088 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2089 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2090 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2091 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2092 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2093 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2094 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2096 "\x4e\xce\x08\x44\x85\x81\x3e\x90\x88\xd2\xc6\x3a\x04\x1b\xc5\xb4"
2097 "\x4f\x9e\xf1\x01\x2a\x2b\x58\x8f\x3c\xd1\x1f\x05\x03\x3a\xc4\xc6"
2098 "\x0c\x2e\xf6\xab\x40\x30\xfe\x82\x96\x24\x8d\xf1\x63\xf4\x49\x52" },
2100 "This is a test using a larger than block-size key and a larger than block-size data. The key needs to be hashed before being used by the HMAC algorithm.",
2101 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2102 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2103 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2104 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2105 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2106 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2107 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2108 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2110 "\x66\x17\x17\x8e\x94\x1f\x02\x0d\x35\x1e\x2f\x25\x4e\x8f\xd3\x2c"
2111 "\x60\x24\x20\xfe\xb0\xb8\xfb\x9a\xdc\xce\xbb\x82\x46\x1e\x99\xc5"
2112 "\xa6\x78\xcc\x31\xe7\x99\x17\x6d\x38\x60\xe6\x11\x0c\x46\x52\x3e" },
2113 { GCRY_MD_SHA512, "what do ya want for nothing?", "Jefe",
2114 "\x16\x4b\x7a\x7b\xfc\xf8\x19\xe2\xe3\x95\xfb\xe7\x3b\x56\xe0\xa3"
2115 "\x87\xbd\x64\x22\x2e\x83\x1f\xd6\x10\x27\x0c\xd7\xea\x25\x05\x54"
2116 "\x97\x58\xbf\x75\xc0\x5a\x99\x4a\x6d\x03\x4f\x65\xf8\xf0\xe6\xfd"
2117 "\xca\xea\xb1\xa3\x4d\x4a\x6b\x4b\x63\x6e\x07\x0a\x38\xbc\xe7\x37" },
2120 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b"
2122 "\x87\xaa\x7c\xde\xa5\xef\x61\x9d\x4f\xf0\xb4\x24\x1a\x1d\x6c\xb0"
2123 "\x23\x79\xf4\xe2\xce\x4e\xc2\x78\x7a\xd0\xb3\x05\x45\xe1\x7c\xde"
2124 "\xda\xa8\x33\xb7\xd6\xb8\xa7\x02\x03\x8b\x27\x4e\xae\xa3\xf4\xe4"
2125 "\xbe\x9d\x91\x4e\xeb\x61\xf1\x70\x2e\x69\x6c\x20\x3a\x12\x68\x54" },
2127 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
2128 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
2129 "\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd\xdd"
2130 "\xdd\xdd\xdd\xdd\xdd",
2131 "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA"
2133 "\xfa\x73\xb0\x08\x9d\x56\xa2\x84\xef\xb0\xf0\x75\x6c\x89\x0b\xe9"
2134 "\xb1\xb5\xdb\xdd\x8e\xe8\x1a\x36\x55\xf8\x3e\x33\xb2\x27\x9d\x39"
2135 "\xbf\x3e\x84\x82\x79\xa7\x22\xc8\x06\xb4\x85\xa4\x7e\x67\xc8\x07"
2136 "\xb9\x46\xa3\x37\xbe\xe8\x94\x26\x74\x27\x88\x59\xe1\x32\x92\xfb" },
2138 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
2139 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
2140 "\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xcd"
2141 "\xcd\xcd\xcd\xcd\xcd",
2142 "\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
2143 "\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19",
2144 "\xb0\xba\x46\x56\x37\x45\x8c\x69\x90\xe5\xa8\xc5\xf6\x1d\x4a\xf7"
2145 "\xe5\x76\xd9\x7f\xf9\x4b\x87\x2d\xe7\x6f\x80\x50\x36\x1e\xe3\xdb"
2146 "\xa9\x1c\xa5\xc1\x1a\xa2\x5e\xb4\xd6\x79\x27\x5c\xc5\x78\x80\x63"
2147 "\xa5\xf1\x97\x41\x12\x0c\x4f\x2d\xe2\xad\xeb\xeb\x10\xa2\x98\xdd" },
2149 "Test Using Larger Than Block-Size Key - Hash Key First",
2150 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2151 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2152 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2153 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2154 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2155 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2156 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2157 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2159 "\x80\xb2\x42\x63\xc7\xc1\xa3\xeb\xb7\x14\x93\xc1\xdd\x7b\xe8\xb4"
2160 "\x9b\x46\xd1\xf4\x1b\x4a\xee\xc1\x12\x1b\x01\x37\x83\xf8\xf3\x52"
2161 "\x6b\x56\xd0\x37\xe0\x5f\x25\x98\xbd\x0f\xd2\x21\x5d\x6a\x1e\x52"
2162 "\x95\xe6\x4f\x73\xf6\x3f\x0a\xec\x8b\x91\x5a\x98\x5d\x78\x65\x98" },
2164 "This is a test using a larger than block-size key and a larger than block-size data. The key needs to be hashed before being used by the HMAC algorithm.",
2165 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2166 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2167 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2168 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2169 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2170 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2171 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2172 "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
2174 "\xe3\x7b\x6a\x77\x5d\xc8\x7d\xba\xa4\xdf\xa9\xf9\x6e\x5e\x3f\xfd"
2175 "\xde\xbd\x71\xf8\x86\x72\x89\x86\x5d\xf5\xa3\x2d\x20\xcd\xc9\x44"
2176 "\xb6\x02\x2c\xac\x3c\x49\x82\xb1\x0d\x5e\xeb\x55\xc3\xe4\xde\x15"
2177 "\x13\x46\x76\xfb\x6d\xe0\x44\x60\x65\xc9\x74\x40\xfa\x8c\x6a\x58" },
2183 fprintf (stderr, "Starting hashed MAC checks.\n");
2185 for (i = 0; algos[i].md; i++)
2187 if ((gcry_md_test_algo (algos[i].md) || algos[i].md == GCRY_MD_MD5)
2191 fprintf (stderr, " algorithm %d not available in fips mode\n",
2197 " checking %s [%i] for %zi byte key and %zi byte data\n",
2198 gcry_md_algo_name (algos[i].md),
2200 strlen(algos[i].key), strlen(algos[i].data));
2202 check_one_hmac (algos[i].md, algos[i].data, strlen (algos[i].data),
2203 algos[i].key, strlen(algos[i].key),
2208 fprintf (stderr, "Completed hashed MAC checks.\n");
2211 /* Check that the signature SIG matches the hash HASH. PKEY is the
2212 public key used for the verification. BADHASH is a hasvalue which
2213 should; result in a bad signature status. */
2215 verify_one_signature (gcry_sexp_t pkey, gcry_sexp_t hash,
2216 gcry_sexp_t badhash, gcry_sexp_t sig)
2220 rc = gcry_pk_verify (sig, hash, pkey);
2222 fail ("gcry_pk_verify failed: %s\n", gpg_strerror (rc));
2223 rc = gcry_pk_verify (sig, badhash, pkey);
2224 if (gcry_err_code (rc) != GPG_ERR_BAD_SIGNATURE)
2225 fail ("gcry_pk_verify failed to detect a bad signature: %s\n",
2230 /* Test the public key sign function using the private ket SKEY. PKEY
2231 is used for verification. */
2233 check_pubkey_sign (int n, gcry_sexp_t skey, gcry_sexp_t pkey)
2236 gcry_sexp_t sig, badhash, hash;
2238 static const char baddata[] =
2239 "(data\n (flags pkcs1)\n"
2240 " (hash sha1 #11223344556677889900AABBCCDDEEFF10203041#))\n";
2247 { "(data\n (flags pkcs1)\n"
2248 " (hash sha1 #11223344556677889900AABBCCDDEEFF10203040#))\n",
2250 /* This test is to see whether hash algorithms not hard wired in
2251 pubkey.c are detected: */
2252 { "(data\n (flags pkcs1)\n"
2253 " (hash oid.1.3.14.3.2.29 "
2254 " #11223344556677889900AABBCCDDEEFF10203040#))\n",
2256 { "(data\n (flags )\n"
2257 " (hash sha1 #11223344556677889900AABBCCDDEEFF10203040#))\n",
2259 { "(data\n (flags pkcs1)\n"
2260 " (hash foo #11223344556677889900AABBCCDDEEFF10203040#))\n",
2261 GPG_ERR_DIGEST_ALGO },
2262 { "(data\n (flags )\n" " (value #11223344556677889900AA#))\n",
2264 { "(data\n (flags )\n" " (value #0090223344556677889900AA#))\n",
2266 { "(data\n (flags raw)\n" " (value #11223344556677889900AA#))\n",
2268 { "(data\n (flags pkcs1)\n"
2269 " (value #11223344556677889900AA#))\n",
2271 { "(data\n (flags raw foo)\n"
2272 " (value #11223344556677889900AA#))\n",
2279 rc = gcry_sexp_sscan (&badhash, NULL, baddata, strlen (baddata));
2281 die ("converting data failed: %s\n", gpg_strerror (rc));
2283 for (dataidx = 0; datas[dataidx].data; dataidx++)
2286 fprintf (stderr, " signature test %d\n", dataidx);
2288 rc = gcry_sexp_sscan (&hash, NULL, datas[dataidx].data,
2289 strlen (datas[dataidx].data));
2291 die ("converting data failed: %s\n", gpg_strerror (rc));
2293 rc = gcry_pk_sign (&sig, hash, skey);
2294 if (gcry_err_code (rc) != datas[dataidx].expected_rc)
2295 fail ("gcry_pk_sign failed: %s\n", gpg_strerror (rc));
2298 verify_one_signature (pkey, hash, badhash, sig);
2300 gcry_sexp_release (sig);
2302 gcry_sexp_release (hash);
2306 gcry_sexp_release (badhash);
2310 check_pubkey_grip (int n, const unsigned char *grip,
2311 gcry_sexp_t skey, gcry_sexp_t pkey)
2313 unsigned char sgrip[20], pgrip[20];
2315 if (!gcry_pk_get_keygrip (skey, sgrip))
2316 die ("get keygrip for private RSA key failed\n");
2317 if (!gcry_pk_get_keygrip (pkey, pgrip))
2318 die ("[%i] get keygrip for public RSA key failed\n", n);
2319 if (memcmp (sgrip, pgrip, 20))
2320 fail ("[%i] keygrips don't match\n", n);
2321 if (memcmp (sgrip, grip, 20))
2322 fail ("wrong keygrip for RSA key\n");
2326 do_check_one_pubkey (int n, gcry_sexp_t skey, gcry_sexp_t pkey,
2327 const unsigned char *grip, int flags)
2329 if (flags & FLAG_SIGN)
2330 check_pubkey_sign (n, skey, pkey);
2331 if (grip && (flags & FLAG_GRIP))
2332 check_pubkey_grip (n, grip, skey, pkey);
2336 check_one_pubkey (int n, test_spec_pubkey_t spec)
2338 gcry_error_t err = GPG_ERR_NO_ERROR;
2339 gcry_sexp_t skey, pkey;
2341 err = gcry_sexp_sscan (&skey, NULL, spec.key.secret,
2342 strlen (spec.key.secret));
2344 err = gcry_sexp_sscan (&pkey, NULL, spec.key.public,
2345 strlen (spec.key.public));
2347 die ("converting sample key failed: %s\n", gpg_strerror (err));
2349 do_check_one_pubkey (n, skey, pkey,
2350 (const unsigned char*)spec.key.grip, spec.flags);
2352 gcry_sexp_release (skey);
2353 gcry_sexp_release (pkey);
2357 get_keys_new (gcry_sexp_t *pkey, gcry_sexp_t *skey)
2359 gcry_sexp_t key_spec, key, pub_key, sec_key;
2362 fprintf (stderr, " generating RSA key:");
2363 rc = gcry_sexp_new (&key_spec,
2364 in_fips_mode ? "(genkey (rsa (nbits 4:1024)))"
2365 : "(genkey (rsa (nbits 4:1024)(transient-key)))",
2368 die ("error creating S-expression: %s\n", gpg_strerror (rc));
2369 rc = gcry_pk_genkey (&key, key_spec);
2370 gcry_sexp_release (key_spec);
2372 die ("error generating RSA key: %s\n", gpg_strerror (rc));
2374 pub_key = gcry_sexp_find_token (key, "public-key", 0);
2376 die ("public part missing in key\n");
2378 sec_key = gcry_sexp_find_token (key, "private-key", 0);
2380 die ("private part missing in key\n");
2382 gcry_sexp_release (key);
2388 check_one_pubkey_new (int n)
2390 gcry_sexp_t skey, pkey;
2392 get_keys_new (&pkey, &skey);
2393 do_check_one_pubkey (n, skey, pkey, NULL, FLAG_SIGN | FLAG_CRYPT);
2396 /* Run all tests for the public key functions. */
2400 test_spec_pubkey_t pubkeys[] =
2403 GCRY_PK_RSA, FLAG_CRYPT | FLAG_SIGN,
2407 " (n #00e0ce96f90b6c9e02f3922beada93fe50a875eac6bcc18bb9a9cf2e84965caa"
2408 " 2d1ff95a7f542465c6c0c19d276e4526ce048868a7a914fd343cc3a87dd74291"
2409 " ffc565506d5bbb25cbac6a0e2dd1f8bcaab0d4a29c2f37c950f363484bf269f7"
2410 " 891440464baf79827e03a36e70b814938eebdc63e964247be75dc58b014b7ea251#)\n"
2412 " (d #046129F2489D71579BE0A75FE029BD6CDB574EBF57EA8A5B0FDA942CAB943B11"
2413 " 7D7BB95E5D28875E0F9FC5FCC06A72F6D502464DABDED78EF6B716177B83D5BD"
2414 " C543DC5D3FED932E59F5897E92E6F58A0F33424106A3B6FA2CBF877510E4AC21"
2415 " C3EE47851E97D12996222AC3566D4CCB0B83D164074ABF7DE655FC2446DA1781#)\n"
2416 " (p #00e861b700e17e8afe6837e7512e35b6ca11d0ae47d8b85161c67baf64377213"
2417 " fe52d772f2035b3ca830af41d8a4120e1c1c70d12cc22f00d28d31dd48a8d424f1#)\n"
2418 " (q #00f7a7ca5367c661f8e62df34f0d05c10c88e5492348dd7bddc942c9a8f369f9"
2419 " 35a07785d2db805215ed786e4285df1658eed3ce84f469b81b50d358407b4ad361#)\n"
2420 " (u #304559a9ead56d2309d203811a641bb1a09626bc8eb36fffa23c968ec5bd891e"
2421 " ebbafc73ae666e01ba7c8990bae06cc2bbe10b75e69fcacb353a6473079d8e9b#)))\n",
2425 " (n #00e0ce96f90b6c9e02f3922beada93fe50a875eac6bcc18bb9a9cf2e84965caa"
2426 " 2d1ff95a7f542465c6c0c19d276e4526ce048868a7a914fd343cc3a87dd74291"
2427 " ffc565506d5bbb25cbac6a0e2dd1f8bcaab0d4a29c2f37c950f363484bf269f7"
2428 " 891440464baf79827e03a36e70b814938eebdc63e964247be75dc58b014b7ea251#)\n"
2429 " (e #010001#)))\n",
2431 "\x32\x10\x0c\x27\x17\x3e\xf6\xe9\xc4\xe9"
2432 "\xa2\x5d\x3d\x69\xf8\x6d\x37\xa4\xf9\x39"}
2435 GCRY_PK_DSA, FLAG_SIGN,
2439 " (p #00AD7C0025BA1A15F775F3F2D673718391D00456978D347B33D7B49E7F32EDAB"
2440 " 96273899DD8B2BB46CD6ECA263FAF04A28903503D59062A8865D2AE8ADFB5191"
2441 " CF36FFB562D0E2F5809801A1F675DAE59698A9E01EFE8D7DCFCA084F4C6F5A44"
2442 " 44D499A06FFAEA5E8EF5E01F2FD20A7B7EF3F6968AFBA1FB8D91F1559D52D8777B#)\n"
2443 " (q #00EB7B5751D25EBBB7BD59D920315FD840E19AEBF9#)\n"
2444 " (g #1574363387FDFD1DDF38F4FBE135BB20C7EE4772FB94C337AF86EA8E49666503"
2445 " AE04B6BE81A2F8DD095311E0217ACA698A11E6C5D33CCDAE71498ED35D13991E"
2446 " B02F09AB40BD8F4C5ED8C75DA779D0AE104BC34C960B002377068AB4B5A1F984"
2447 " 3FBA91F537F1B7CAC4D8DD6D89B0D863AF7025D549F9C765D2FC07EE208F8D15#)\n"
2448 " (y #64B11EF8871BE4AB572AA810D5D3CA11A6CDBC637A8014602C72960DB135BF46"
2449 " A1816A724C34F87330FC9E187C5D66897A04535CC2AC9164A7150ABFA8179827"
2450 " 6E45831AB811EEE848EBB24D9F5F2883B6E5DDC4C659DEF944DCFD80BF4D0A20"
2451 " 42CAA7DC289F0C5A9D155F02D3D551DB741A81695B74D4C8F477F9C7838EB0FB#)\n"
2452 " (x #11D54E4ADBD3034160F2CED4B7CD292A4EBF3EC0#)))\n",
2456 " (p #00AD7C0025BA1A15F775F3F2D673718391D00456978D347B33D7B49E7F32EDAB"
2457 " 96273899DD8B2BB46CD6ECA263FAF04A28903503D59062A8865D2AE8ADFB5191"
2458 " CF36FFB562D0E2F5809801A1F675DAE59698A9E01EFE8D7DCFCA084F4C6F5A44"
2459 " 44D499A06FFAEA5E8EF5E01F2FD20A7B7EF3F6968AFBA1FB8D91F1559D52D8777B#)\n"
2460 " (q #00EB7B5751D25EBBB7BD59D920315FD840E19AEBF9#)\n"
2461 " (g #1574363387FDFD1DDF38F4FBE135BB20C7EE4772FB94C337AF86EA8E49666503"
2462 " AE04B6BE81A2F8DD095311E0217ACA698A11E6C5D33CCDAE71498ED35D13991E"
2463 " B02F09AB40BD8F4C5ED8C75DA779D0AE104BC34C960B002377068AB4B5A1F984"
2464 " 3FBA91F537F1B7CAC4D8DD6D89B0D863AF7025D549F9C765D2FC07EE208F8D15#)\n"
2465 " (y #64B11EF8871BE4AB572AA810D5D3CA11A6CDBC637A8014602C72960DB135BF46"
2466 " A1816A724C34F87330FC9E187C5D66897A04535CC2AC9164A7150ABFA8179827"
2467 " 6E45831AB811EEE848EBB24D9F5F2883B6E5DDC4C659DEF944DCFD80BF4D0A20"
2468 " 42CAA7DC289F0C5A9D155F02D3D551DB741A81695B74D4C8F477F9C7838EB0FB#)))\n",
2470 "\xc6\x39\x83\x1a\x43\xe5\x05\x5d\xc6\xd8"
2471 "\x4a\xa6\xf9\xeb\x23\xbf\xa9\x12\x2d\x5b" }
2474 GCRY_PK_ELG, FLAG_SIGN | FLAG_CRYPT,
2478 " (p #00B93B93386375F06C2D38560F3B9C6D6D7B7506B20C1773F73F8DE56E6CD65D"
2479 " F48DFAAA1E93F57A2789B168362A0F787320499F0B2461D3A4268757A7B27517"
2480 " B7D203654A0CD484DEC6AF60C85FEB84AAC382EAF2047061FE5DAB81A20A0797"
2481 " 6E87359889BAE3B3600ED718BE61D4FC993CC8098A703DD0DC942E965E8F18D2A7#)\n"
2483 " (y #72DAB3E83C9F7DD9A931FDECDC6522C0D36A6F0A0FEC955C5AC3C09175BBFF2B"
2484 " E588DB593DC2E420201BEB3AC17536918417C497AC0F8657855380C1FCF11C5B"
2485 " D20DB4BEE9BDF916648DE6D6E419FA446C513AAB81C30CB7B34D6007637BE675"
2486 " 56CE6473E9F9EE9B9FADD275D001563336F2186F424DEC6199A0F758F6A00FF4#)\n"
2487 " (x #03C28900087B38DABF4A0AB98ACEA39BB674D6557096C01D72E31C16BDD32214#)))\n",
2491 " (p #00B93B93386375F06C2D38560F3B9C6D6D7B7506B20C1773F73F8DE56E6CD65D"
2492 " F48DFAAA1E93F57A2789B168362A0F787320499F0B2461D3A4268757A7B27517"
2493 " B7D203654A0CD484DEC6AF60C85FEB84AAC382EAF2047061FE5DAB81A20A0797"
2494 " 6E87359889BAE3B3600ED718BE61D4FC993CC8098A703DD0DC942E965E8F18D2A7#)\n"
2496 " (y #72DAB3E83C9F7DD9A931FDECDC6522C0D36A6F0A0FEC955C5AC3C09175BBFF2B"
2497 " E588DB593DC2E420201BEB3AC17536918417C497AC0F8657855380C1FCF11C5B"
2498 " D20DB4BEE9BDF916648DE6D6E419FA446C513AAB81C30CB7B34D6007637BE675"
2499 " 56CE6473E9F9EE9B9FADD275D001563336F2186F424DEC6199A0F758F6A00FF4#)))\n",
2501 "\xa7\x99\x61\xeb\x88\x83\xd2\xf4\x05\xc8"
2502 "\x4f\xba\x06\xf8\x78\x09\xbc\x1e\x20\xe5" }
2507 fprintf (stderr, "Starting public key checks.\n");
2508 for (i = 0; i < sizeof (pubkeys) / sizeof (*pubkeys); i++)
2511 if (gcry_pk_test_algo (pubkeys[i].id) && in_fips_mode)
2514 fprintf (stderr, " algorithm %d not available in fips mode\n",
2518 check_one_pubkey (i, pubkeys[i]);
2521 fprintf (stderr, "Completed public key checks.\n");
2524 fprintf (stderr, "Starting additional public key checks.\n");
2525 for (i = 0; i < sizeof (pubkeys) / sizeof (*pubkeys); i++)
2528 if (gcry_pk_test_algo (pubkeys[i].id) && in_fips_mode)
2531 fprintf (stderr, " algorithm %d not available in fips mode\n",
2535 check_one_pubkey_new (i);
2538 fprintf (stderr, "Completed additional public key checks.\n");
2543 main (int argc, char **argv)
2549 int selftest_only = 0;
2554 while (argc && last_argc != argc )
2557 if (!strcmp (*argv, "--"))
2562 else if (!strcmp (*argv, "--verbose"))
2567 else if (!strcmp (*argv, "--debug"))
2569 verbose = debug = 1;
2572 else if (!strcmp (*argv, "--fips"))
2577 else if (!strcmp (*argv, "--selftest"))
2585 gcry_control (GCRYCTL_SET_VERBOSITY, (int)verbose);
2588 gcry_control (GCRYCTL_FORCE_FIPS_MODE, 0);
2590 /* Check that we test exactly our version - including the patchlevel. */
2591 if (strcmp (GCRYPT_VERSION, gcry_check_version (NULL)))
2592 die ("version mismatch; pgm=%s, library=%s\n",
2593 GCRYPT_VERSION,gcry_check_version (NULL));
2595 if ( gcry_fips_mode_active () )
2599 gcry_control (GCRYCTL_DISABLE_SECMEM, 0);
2602 gcry_set_progress_handler (progress_handler, NULL);
2604 gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
2606 gcry_control (GCRYCTL_SET_DEBUG_FLAGS, 1u, 0);
2607 /* No valuable keys are create, so we can speed up our RNG. */
2608 gcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0);
2613 check_cipher_modes ();
2614 check_bulk_cipher_modes ();
2621 if (in_fips_mode && !selftest_only)
2623 /* If we are in fips mode do some more tests. */
2626 /* First trigger a self-test. */
2627 gcry_control (GCRYCTL_FORCE_FIPS_MODE, 0);
2628 if (!gcry_control (GCRYCTL_OPERATIONAL_P, 0))
2629 fail ("not in operational state after self-test\n");
2631 /* Get us into the error state. */
2632 err = gcry_md_open (&md, GCRY_MD_SHA1, 0);
2634 fail ("failed to open SHA-1 hash context: %s\n", gpg_strerror (err));
2637 err = gcry_md_enable (md, GCRY_MD_SHA256);
2639 fail ("failed to add SHA-256 hash context: %s\n",
2640 gpg_strerror (err));
2643 /* gcry_md_get_algo is only defined for a context with
2644 just one digest algorithm. With our setup it should
2645 put the oibrary intoerror state. */
2646 fputs ("Note: Two lines with error messages follow "
2647 "- this is expected\n", stderr);
2648 gcry_md_get_algo (md);
2650 if (gcry_control (GCRYCTL_OPERATIONAL_P, 0))
2651 fail ("expected error state but still in operational state\n");
2654 /* Now run a self-test and to get back into
2655 operational state. */
2656 gcry_control (GCRYCTL_FORCE_FIPS_MODE, 0);
2657 if (!gcry_control (GCRYCTL_OPERATIONAL_P, 0))
2658 fail ("did not reach operational after error "
2667 /* If in standard mode, run selftests. */
2668 if (gcry_control (GCRYCTL_SELFTEST, 0))
2669 fail ("running self-test failed\n");
2673 fprintf (stderr, "\nAll tests completed. Errors: %i\n", error_count);
2675 if (in_fips_mode && !gcry_fips_mode_active ())
2676 fprintf (stderr, "FIPS mode is not anymore active\n");
2678 return error_count ? 1 : 0;