Parallelize in_ifaddrhead operation
[dragonfly.git] / lib / libmd / shadriver.c
blob1f0ecb076aba48395f9717666dffd07a28d5abaa
1 /* SHADRIVER.C - test driver for SHA-1 (and SHA-0)
2 * $FreeBSD: src/lib/libmd/shadriver.c,v 1.2 1999/08/28 00:05:09 peter Exp $
3 * $DragonFly: src/lib/libmd/shadriver.c,v 1.3 2006/04/29 22:19:26 dillon Exp $
4 */
6 /* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
7 rights reserved.
9 RSA Data Security, Inc. makes no representations concerning either
10 the merchantability of this software or the suitability of this
11 software for any particular purpose. It is provided "as is"
12 without express or implied warranty of any kind.
14 These notices must be retained in any copies of any part of this
15 documentation and/or software.
18 /* The following makes SHA default to SHA-1 if it has not already been
19 defined with C compiler flags.
21 #ifndef SHA
22 #define SHA 1
23 #endif
25 #include <sys/types.h>
27 #include <stdio.h>
28 #include <time.h>
29 #include <string.h>
30 #include "sha.h"
31 #include "sha256.h"
32 #if SHA == 1
33 #define SHA_Data SHA1_Data
34 #elif SHA == 256
35 #define SHA_Data SHA256_Data
36 #endif
38 /* Digests a string and prints the result.
40 static void SHAString (string)
41 char *string;
43 char buf[2*32+1];
45 printf ("SHA-%d (\"%s\") = %s\n",
46 SHA, string, SHA_Data(string,strlen(string),buf));
49 /* Digests a reference suite of strings and prints the results.
51 main()
53 printf ("SHA-%d test suite:\n", SHA);
55 SHAString ("");
56 SHAString ("abc");
57 SHAString ("message digest");
58 SHAString ("abcdefghijklmnopqrstuvwxyz");
59 SHAString
60 ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789");
61 SHAString
62 ("1234567890123456789012345678901234567890\
63 1234567890123456789012345678901234567890");
64 return 0;