malloca: Silence a warning from clang's memory sanitizer.
[gnulib.git] / tests / test-gc-sha1.c
blobcb43cb8c6bb0ae4d3a7a4388649d251a18c39610
1 /*
2 * Copyright (C) 2005, 2010-2017 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)
8 * 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 <http://www.gnu.org/licenses/>. */
18 #include <config.h>
20 #include <stdio.h>
21 #include <string.h>
22 #include "gc.h"
24 int
25 main (int argc, char *argv[])
27 Gc_rc rc;
28 gc_hash_handle h;
30 rc = gc_init ();
31 if (rc != GC_OK)
33 printf ("gc_init() failed\n");
34 return 1;
38 char *in = "abcdefgh";
39 size_t inlen = strlen (in);
40 char *expect = "\x42\x5a\xf1\x2a\x07\x43\x50\x2b"
41 "\x32\x2e\x93\xa0\x15\xbc\xf8\x68\xe3\x24\xd5\x6a";
42 char out[20];
43 const char *p;
45 if (gc_sha1 (in, inlen, out) != 0)
47 printf ("gc_sha1 call failed\n");
48 return 1;
51 if (memcmp (out, expect, 20) != 0)
53 size_t i;
54 printf ("sha1 mismatch. expected:\n");
55 for (i = 0; i < 16; i++)
56 printf ("%02x ", expect[i] & 0xFF);
57 printf ("\ncomputed:\n");
58 for (i = 0; i < 16; i++)
59 printf ("%02x ", out[i] & 0xFF);
60 printf ("\n");
61 return 1;
64 rc = gc_hash_buffer (GC_SHA1, "abcdefgh", 8, out);
65 if (rc != GC_OK)
67 printf ("gc_hash_buffer(sha1) call failed: %d\n", rc);
68 return 1;
71 if (memcmp (out, expect, 20) != 0)
73 size_t i;
74 printf ("sha1' mismatch. expected:\n");
75 for (i = 0; i < 16; i++)
76 printf ("%02x ", expect[i] & 0xFF);
77 printf ("\ncomputed:\n");
78 for (i = 0; i < 16; i++)
79 printf ("%02x ", out[i] & 0xFF);
80 printf ("\n");
81 return 1;
84 if (gc_hash_digest_length (GC_SHA1) != 20)
86 printf ("gc_hash_digest_length (GC_SHA1) failed\n");
87 return 1;
90 if ((rc = gc_hash_open (GC_SHA1, 0, &h)) != GC_OK)
92 printf ("gc_hash_open(GC_SHA1) failed (%d)\n", rc);
93 return 1;
96 gc_hash_write (h, inlen, in);
98 p = gc_hash_read (h);
100 if (!p)
102 printf ("gc_hash_read failed\n");
103 return 1;
106 if (memcmp (p, expect, 20) != 0)
108 size_t i;
109 printf ("sha1 1 mismatch. expected:\n");
110 for (i = 0; i < 20; i++)
111 printf ("%02x ", expect[i] & 0xFF);
112 printf ("\ncomputed:\n");
113 for (i = 0; i < 20; i++)
114 printf ("%02x ", p[i] & 0xFF);
115 printf ("\n");
116 return 1;
119 gc_hash_close (h);
122 gc_done ();
124 return 0;