Branch data Line data Source code
1 : : /*
2 : : * Copyright (C) 2005, 2010-2012 Free Software Foundation, Inc.
3 : : * Written by Simon Josefsson
4 : : *
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.
9 : : *
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.
14 : : *
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/>. */
17 : :
18 : : #include <config.h>
19 : :
20 : : #include <stdio.h>
21 : : #include <string.h>
22 : : #include "gc.h"
23 : :
24 : : int
25 : 1 : main (int argc, char *argv[])
26 : : {
27 : : Gc_rc rc;
28 : : gc_hash_handle h;
29 : :
30 : 1 : rc = gc_init ();
31 [ - + ]: 1 : if (rc != GC_OK)
32 : : {
33 : 0 : printf ("gc_init() failed\n");
34 : 0 : return 1;
35 : : }
36 : :
37 : : {
38 : 1 : char *in = "abcdefgh";
39 : 1 : size_t inlen = strlen (in);
40 : 1 : 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;
44 : :
45 [ - + ]: 1 : if (gc_sha1 (in, inlen, out) != 0)
46 : : {
47 : 0 : printf ("gc_sha1 call failed\n");
48 : 0 : return 1;
49 : : }
50 : :
51 [ - + ]: 1 : if (memcmp (out, expect, 20) != 0)
52 : : {
53 : : size_t i;
54 : 0 : printf ("sha1 mismatch. expected:\n");
55 [ # # ]: 0 : for (i = 0; i < 16; i++)
56 : 0 : printf ("%02x ", expect[i] & 0xFF);
57 : 0 : printf ("\ncomputed:\n");
58 [ # # ]: 0 : for (i = 0; i < 16; i++)
59 : 0 : printf ("%02x ", out[i] & 0xFF);
60 : 0 : printf ("\n");
61 : 0 : return 1;
62 : : }
63 : :
64 : 1 : rc = gc_hash_buffer (GC_SHA1, "abcdefgh", 8, out);
65 [ - + ]: 1 : if (rc != GC_OK)
66 : : {
67 : 0 : printf ("gc_hash_buffer(sha1) call failed: %d\n", rc);
68 : 0 : return 1;
69 : : }
70 : :
71 [ - + ]: 1 : if (memcmp (out, expect, 20) != 0)
72 : : {
73 : : size_t i;
74 : 0 : printf ("sha1' mismatch. expected:\n");
75 [ # # ]: 0 : for (i = 0; i < 16; i++)
76 : 0 : printf ("%02x ", expect[i] & 0xFF);
77 : 0 : printf ("\ncomputed:\n");
78 [ # # ]: 0 : for (i = 0; i < 16; i++)
79 : 0 : printf ("%02x ", out[i] & 0xFF);
80 : 0 : printf ("\n");
81 : 0 : return 1;
82 : : }
83 : :
84 [ - + ]: 1 : if (gc_hash_digest_length (GC_SHA1) != 20)
85 : : {
86 : 0 : printf ("gc_hash_digest_length (GC_SHA1) failed\n");
87 : 0 : return 1;
88 : : }
89 : :
90 [ - + ]: 1 : if ((rc = gc_hash_open (GC_SHA1, 0, &h)) != GC_OK)
91 : : {
92 : 0 : printf ("gc_hash_open(GC_SHA1) failed (%d)\n", rc);
93 : 0 : return 1;
94 : : }
95 : :
96 : 1 : gc_hash_write (h, inlen, in);
97 : :
98 : 1 : p = gc_hash_read (h);
99 : :
100 [ - + ]: 1 : if (!p)
101 : : {
102 : 0 : printf ("gc_hash_read failed\n");
103 : 0 : return 1;
104 : : }
105 : :
106 [ - + ]: 1 : if (memcmp (p, expect, 20) != 0)
107 : : {
108 : : size_t i;
109 : 0 : printf ("sha1 1 mismatch. expected:\n");
110 [ # # ]: 0 : for (i = 0; i < 20; i++)
111 : 0 : printf ("%02x ", expect[i] & 0xFF);
112 : 0 : printf ("\ncomputed:\n");
113 [ # # ]: 0 : for (i = 0; i < 20; i++)
114 : 0 : printf ("%02x ", p[i] & 0xFF);
115 : 0 : printf ("\n");
116 : 0 : return 1;
117 : : }
118 : :
119 : 1 : gc_hash_close (h);
120 : : }
121 : :
122 : 1 : gc_done ();
123 : :
124 : 1 : return 0;
125 : : }
|