2 * Copyright (C) 2005, 2010-2020 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, or (at your option)
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/>. */
26 main (int argc
, char *argv
[])
34 printf ("gc_init() failed\n");
39 char *in
= "abcdefghijklmnopqrstuvwxyz";
40 size_t inlen
= strlen (in
);
42 "\x71\xc4\x80\xdf\x93\xd6\xae\x2f\x1e\xfa\xd1\x44\x7c\x66\xc9\x52"
43 "\x5e\x31\x62\x18\xcf\x51\xfc\x8d\x9e\xd8\x32\xf2\xda\xf1\x8b\x73";
47 if (gc_sha256 (in
, inlen
, out
) != 0)
49 printf ("gc_sha256 call failed\n");
53 if (memcmp (out
, expect
, 32) != 0)
56 printf ("sha256 test1 mismatch. expected:\n");
57 for (i
= 0; i
< 32; i
++)
58 printf ("%02x ", expect
[i
] & 0xFF);
59 printf ("\ncomputed:\n");
60 for (i
= 0; i
< 32; i
++)
61 printf ("%02x ", out
[i
] & 0xFF);
66 rc
= gc_hash_buffer (GC_SHA256
, "abcdefghijklmnopqrstuvwxyz", 26, out
);
69 printf ("gc_hash_buffer(sha256) call failed: %d\n", rc
);
73 if (memcmp (out
, expect
, 32) != 0)
76 printf ("sha256 test2 mismatch. expected:\n");
77 for (i
= 0; i
< 32; i
++)
78 printf ("%02x ", expect
[i
] & 0xFF);
79 printf ("\ncomputed:\n");
80 for (i
= 0; i
< 32; i
++)
81 printf ("%02x ", out
[i
] & 0xFF);
86 if (gc_hash_digest_length (GC_SHA256
) != 32)
88 printf ("gc_hash_digest_length (GC_SHA256) failed\n");
92 if ((rc
= gc_hash_open (GC_SHA256
, 0, &h
)) != GC_OK
)
94 printf ("gc_hash_open(GC_SHA256) failed (%d)\n", rc
);
98 gc_hash_write (h
, inlen
, in
);
100 p
= gc_hash_read (h
);
104 printf ("gc_hash_read failed\n");
108 if (memcmp (p
, expect
, 32) != 0)
111 printf ("sha256 test3 mismatch. expected:\n");
112 for (i
= 0; i
< 32; i
++)
113 printf ("%02x ", expect
[i
] & 0xFF);
114 printf ("\ncomputed:\n");
115 for (i
= 0; i
< 32; i
++)
116 printf ("%02x ", p
[i
] & 0xFF);