changeset 2865:e750c067f2af

remove debug junk
author Jim Meyering <jim@meyering.net>
date Sun, 17 Sep 2000 11:11:26 +0000
parents 26d60ac2d2ee
children 33ef979547bd
files lib/sha.c
diffstat 1 files changed, 0 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/lib/sha.c	Sun Sep 17 11:11:01 2000 +0000
+++ b/lib/sha.c	Sun Sep 17 11:11:26 2000 +0000
@@ -239,17 +239,6 @@
 #define F2(B,C,D) (B ^ C ^ D)
 #define F3(B,C,D) ( ( B & C ) | ( D & ( B | C ) ) )
 
-#if SHA_DEBUG
-char bin2hex[16]={'0','1','2','3','4','5','6','7',
-		  '8','9','a','b','c','d','e','f'};
-# define BH(x) bin2hex[x]
-# define PH(x) \
-      printf("%c%c%c%c%c%c%c%c\t", BH((x>>28)&0xf), \
-	     BH((x>>24)&0xf), BH((x>>20)&0xf), BH((x>>16)&0xf),\
-	     BH((x>>12)&0xf), BH((x>>8)&0xf), BH((x>>4)&0xf),\
-	     BH(x&0xf));
-#endif
-
 /* Process LEN bytes of BUFFER, accumulating context into CTX.
    It is assumed that LEN % 64 == 0.  */