summaryrefslogtreecommitdiffstats
path: root/lib/libmd/shadriver.c
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1999-02-26 04:25:01 +0000
committerwollman <wollman@FreeBSD.org>1999-02-26 04:25:01 +0000
commitf508af76207faff73c41e390b94663e30c6ad40a (patch)
treee152909138b6ace76221a1cd5443026fcfad04e0 /lib/libmd/shadriver.c
parent21bcdb8f700656a46a377dd23752743fa3f07455 (diff)
downloadFreeBSD-src-f508af76207faff73c41e390b94663e30c6ad40a.zip
FreeBSD-src-f508af76207faff73c41e390b94663e30c6ad40a.tar.gz
Fix bug in MDx test suite.
Add Eric Young's SHA-[01] implementations.
Diffstat (limited to 'lib/libmd/shadriver.c')
-rw-r--r--lib/libmd/shadriver.c61
1 files changed, 61 insertions, 0 deletions
diff --git a/lib/libmd/shadriver.c b/lib/libmd/shadriver.c
new file mode 100644
index 0000000..ed3772c
--- /dev/null
+++ b/lib/libmd/shadriver.c
@@ -0,0 +1,61 @@
+/* SHADRIVER.C - test driver for SHA-1 (and SHA-0)
+ * $Id: mddriver.c,v 1.4 1997/08/25 05:24:26 joerg Exp $
+ */
+
+/* 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 SHA default to SHA-1 if it has not already been
+ defined with C compiler flags.
+ */
+#ifndef SHA
+#define SHA 1
+#endif
+
+#include <sys/types.h>
+
+#include <stdio.h>
+#include <time.h>
+#include <string.h>
+#include "sha.h"
+#if SHA == 1
+#define SHA_Data SHA1_Data
+#endif
+
+/* Digests a string and prints the result.
+ */
+static void SHAString (string)
+char *string;
+{
+ char buf[2*20+1];
+
+ printf ("SHA-%d (\"%s\") = %s\n",
+ SHA, string, SHA_Data(string,strlen(string),buf));
+}
+
+/* Digests a reference suite of strings and prints the results.
+ */
+main()
+{
+ printf ("SHA-%d test suite:\n", SHA);
+
+ SHAString ("");
+ SHAString ("abc");
+ SHAString ("message digest");
+ SHAString ("abcdefghijklmnopqrstuvwxyz");
+ SHAString
+ ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789");
+ SHAString
+ ("1234567890123456789012345678901234567890\
+1234567890123456789012345678901234567890");
+ return 0;
+}
OpenPOWER on IntegriCloud