]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - sha1/sha1.c
some adjustments for debugging
[avr-crypto-lib.git] / sha1 / sha1.c
index 38126df744ebbd648cdb5009f001e4ae7570fbdf..3e14a3e2b5042a30e931a1534a4911fb26eb52ef 100644 (file)
@@ -1,7 +1,7 @@
 /* sha1.c */
 /*
     This file is part of the AVR-Crypto-Lib.
-    Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
+    Copyright (C) 2008, 2009  Daniel Otte (daniel.otte@rub.de)
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 #include <string.h> /* memcpy & co */
 #include <stdint.h>
 #include "config.h"
-#undef DEBUG
-//#define DEBUG UART
 #include "debug.h"
 #include "sha1.h"
 
+#ifdef DEBUG
+#  undef DEBUG
+#endif
+
+
 #define LITTLE_ENDIAN
 
 /********************************************************************************************************/