aboutsummaryrefslogtreecommitdiff
path: root/src/lib/des425/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/des425/util.c')
-rw-r--r--src/lib/des425/util.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/lib/des425/util.c b/src/lib/des425/util.c
deleted file mode 100644
index 2c5ef92..0000000
--- a/src/lib/des425/util.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * lib/des425/util.c
- *
- * Copyright 1988 by the Massachusetts Institute of Technology.
- *
- * For copying and distribution information, please see the file
- * <mit-copyright.h>.
- *
- * Miscellaneous debug printing utilities
- */
-
-#include <stdio.h>
-
-/* Application include files */
-#include "k5-int.h"
-#include "des_int.h"
-#include "des.h"
-
-void des_cblock_print_file(x, fp)
- des_cblock *x;
- FILE *fp;
-{
- unsigned char *y = *x;
- register int i = 0;
- fprintf(fp," 0x { ");
-
- while (i++ < 8) {
- fprintf(fp,"%x",*y++);
- if (i < 8)
- fprintf(fp,", ");
- }
- fprintf(fp," }");
-}