From 8ecce37df14274b6830e6ece08c8c696969f32d3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se>
Date: Wed, 16 Dec 1998 02:09:13 +0100
Subject: [PATCH] =?UTF-8?q?Test=20program=20f=C3=B6r=20blowfish.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Rev: src/symmetric/Makefile.am.in:1.5
Rev: src/symmetric/bf_test.c:1.1
---
 Makefile.am.in |  7 ++++---
 bf_test.c      | 24 ++++++++++++++++++++++++
 2 files changed, 28 insertions(+), 3 deletions(-)
 create mode 100644 bf_test.c

diff --git a/Makefile.am.in b/Makefile.am.in
index 7931f0b2..1351751d 100644
--- a/Makefile.am.in
+++ b/Makefile.am.in
@@ -5,12 +5,13 @@ BODY:
 AUTOMAKE_OPTIONS = foreign
 
 noinst_LIBRARIES = libsymmetric.a
-noinst_PROGRAMS = desTest desdata
+noinst_PROGRAMS = desTest desdata bf_test
 
 # When compiling with lsh, this is set to to -DLSH -I/path/to/lsh/include
 # INCLUDES = @crypto_cpp_flags@
 
-desTest_LDADD = libsymmetric.a
+LDADD = libsymmetric.a
+desdata_LDADD =
 
 des_headers = parity.h rotors.h keymap.h 
 BUILT_SOURCES =	desSmallFips.c desSmallCore.c desQuickFips.c desQuickCore.c \
@@ -18,7 +19,7 @@ BUILT_SOURCES =	desSmallFips.c desSmallCore.c desQuickFips.c desQuickCore.c \
 
 libsymmetric_a_SOURCES = desCode.h desKerb.c desUtil.c desQuick.c \
       $(BUILT_SOURCES) \
-      sha.c md5.c idea.c rc4.c cast.c blowfish.c util.c
+      sha.c md5.c idea.c rc4.c cast.c blowfish.c
 
 # Generate DES headers.
 $(des_headers): desdata
diff --git a/bf_test.c b/bf_test.c
new file mode 100644
index 00000000..74ce6243
--- /dev/null
+++ b/bf_test.c
@@ -0,0 +1,24 @@
+/* bf_test.c
+ *
+ * $Id$
+ * Test the blow fish implementation. */
+
+#include "blowfish.h"
+
+#include <stdio.h>
+#include <stdlib.h>
+
+int main (int argc, char **argv)
+{
+  if (bf_selftest())
+    {
+      fprintf(stderr, "Blowfish works.\n");
+      exit(EXIT_SUCCESS);
+    }
+  else
+    {
+      fprintf(stderr, "ERROR: Blowfish failed.\n");
+      exit(EXIT_FAILURE);
+    }
+}
+
-- 
GitLab