2 * Copyright (C) 2005, 2008-2018 Free Software Foundation, Inc.
3 * Written by Simon Josefsson
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>. */
27 #define TESTFILE "test-sha1.data"
28 #include "test-digest.h"
33 const char *in1
= "abcdefgh";
34 const char *out1
= "\x42\x5a\xf1\x2a\x07\x43\x50\x2b"
35 "\x32\x2e\x93\xa0\x15\xbc\xf8\x68\xe3\x24\xd5\x6a";
36 char buf
[SHA1_DIGEST_SIZE
];
38 if (memcmp (sha1_buffer (in1
, strlen (in1
), buf
),
39 out1
, SHA1_DIGEST_SIZE
) != 0)
42 printf ("expected:\n");
43 for (i
= 0; i
< SHA1_DIGEST_SIZE
; i
++)
44 printf ("%02x ", out1
[i
] & 0xFFu
);
45 printf ("\ncomputed:\n");
46 for (i
= 0; i
< SHA1_DIGEST_SIZE
; i
++)
47 printf ("%02x ", buf
[i
] & 0xFFu
);
52 /* Test sha1_stream. */
53 test_digest_on_files (sha1_stream
, "sha1_stream", 20,
54 "\xda\x39\xa3\xee\x5e\x6b\x4b\x0d\x32\x55\xbf\xef\x95\x60\x18\x90\xaf\xd8\x07\x09",
55 "\x9c\x04\xcd\x63\x72\x07\x7e\x9b\x11\xf7\x0c\xa1\x11\xc9\x80\x7d\xc7\x13\x7e\x4b",
56 "\x91\xab\x6b\x1b\x8d\x29\x25\x3c\xcb\x8d\xce\xb7\x7a\x25\x26\x2c\x92\xc9\x22\x09");