diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1994-07-24 03:29:56 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1994-07-24 03:29:56 +0000 |
| commit | c9502b535ef89f1c565018773b3ec82af4fe3998 (patch) | |
| tree | 094b79d57ebf1e7dda53a17402b96db6ac1a6658 /lib/libmd/mddriver.c | |
| parent | 331d599d366f8204c11da6819bb62b9da977bca7 (diff) | |
Notes
Diffstat (limited to 'lib/libmd/mddriver.c')
| -rw-r--r-- | lib/libmd/mddriver.c | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/lib/libmd/mddriver.c b/lib/libmd/mddriver.c new file mode 100644 index 000000000000..b99e558235d9 --- /dev/null +++ b/lib/libmd/mddriver.c @@ -0,0 +1,65 @@ +/* MDDRIVER.C - test driver for MD2, MD4 and MD5 + * $FreeBSD$ + */ + +/* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All + rights reserved. + + RSA Data Security, Inc. makes no representations concerning either + the merchantability of this software or the suitability of this + software for any particular purpose. It is provided "as is" + without express or implied warranty of any kind. + + These notices must be retained in any copies of any part of this + documentation and/or software. + */ + +/* The following makes MD default to MD5 if it has not already been + defined with C compiler flags. + */ +#ifndef MD +#define MD MD5 +#endif + +#include <stdio.h> +#include <time.h> +#include <string.h> +#if MD == 2 +#include "md2.h" +#define MDData MD2Data +#endif +#if MD == 4 +#include "md4.h" +#define MDData MD4Data +#endif +#if MD == 5 +#include "md5.h" +#define MDData MD5Data +#endif + +/* Digests a string and prints the result. + */ +static void MDString (string) +char *string; +{ + + printf ("MD%d (\"%s\") = %s\n", MD, string, MDData(string,strlen(string))); +} + +/* Digests a reference suite of strings and prints the results. + */ +main() +{ + printf ("MD%d test suite:\n", MD); + + MDString (""); + MDString ("a"); + MDString ("abc"); + MDString ("message digest"); + MDString ("abcdefghijklmnopqrstuvwxyz"); + MDString + ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"); + MDString + ("1234567890123456789012345678901234567890\ +1234567890123456789012345678901234567890"); +} |
