usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-gc-md5.c
blob080edc92fb7258599258362491175e9b623faf9e
1 /*
2 * Copyright (C) 2005, 2010-2024 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 <https://www.gnu.org/licenses/>. */
18 #include <config.h>
20 #include "gc.h"
22 #include <stdio.h>
23 #include <string.h>
25 int
26 main (int argc, char *argv[])
28 Gc_rc rc;
29 gc_hash_handle h;
31 rc = gc_init ();
32 if (rc != GC_OK)
34 printf ("gc_init() failed\n");
35 return 1;
38 /* Test vectors from RFC 1321. */
41 const char *in = "abcdefghijklmnopqrstuvwxyz";
42 size_t inlen = strlen (in);
43 const char *expect =
44 "\xc3\xfc\xd3\xd7\x61\x92\xe4\x00\x7d\xfb\x49\x6c\xca\x67\xe1\x3b";
45 char out[16];
46 const char *p;
48 /* MD5 ("abcdefghijklmnopqrstuvwxyz") = c3fcd3d76192e4007dfb496cca67e13b */
50 if (gc_md5 (in, inlen, out) != 0)
52 printf ("gc_md5 call failed\n");
53 return 1;
56 if (memcmp (out, expect, 16) != 0)
58 size_t i;
59 printf ("md5 1 mismatch. expected:\n");
60 for (i = 0; i < 16; i++)
61 printf ("%02x ", expect[i] & 0xFF);
62 printf ("\ncomputed:\n");
63 for (i = 0; i < 16; i++)
64 printf ("%02x ", out[i] & 0xFF);
65 printf ("\n");
66 return 1;
69 if (gc_hash_buffer (GC_MD5, in, inlen, out) != 0)
71 printf ("gc_hash_buffer(MD5) call failed\n");
72 return 1;
75 if (memcmp (out, expect, 16) != 0)
77 size_t i;
78 printf ("md5 2 mismatch. expected:\n");
79 for (i = 0; i < 16; i++)
80 printf ("%02x ", expect[i] & 0xFF);
81 printf ("\ncomputed:\n");
82 for (i = 0; i < 16; i++)
83 printf ("%02x ", out[i] & 0xFF);
84 printf ("\n");
85 return 1;
88 if (gc_hash_digest_length (GC_MD5) != 16)
90 printf ("gc_hash_digest_length (GC_MD5) failed\n");
91 return 1;
94 if ((rc = gc_hash_open (GC_MD5, 0, &h)) != GC_OK)
96 printf ("gc_hash_open(GC_MD5) failed (%d)\n", rc);
97 return 1;
100 gc_hash_write (h, inlen, in);
102 p = gc_hash_read (h);
104 if (!p)
106 printf ("gc_hash_read failed\n");
107 return 1;
110 if (memcmp (p, expect, 16) != 0)
112 size_t i;
113 printf ("md5 3 mismatch. expected:\n");
114 for (i = 0; i < 16; i++)
115 printf ("%02x ", expect[i] & 0xFF);
116 printf ("\ncomputed:\n");
117 for (i = 0; i < 16; i++)
118 printf ("%02x ", p[i] & 0xFF);
119 printf ("\n");
120 return 1;
123 gc_hash_close (h);
126 gc_done ();
128 return 0;