X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=sha1%2Fsha1.c;h=3e14a3e2b5042a30e931a1534a4911fb26eb52ef;hb=58cc633be2936c5390a64d512fd2b0c3382ecde0;hp=38126df744ebbd648cdb5009f001e4ae7570fbdf;hpb=83398013d7fefe3600b771be65317a330a140ffb;p=avr-crypto-lib.git diff --git a/sha1/sha1.c b/sha1/sha1.c index 38126df..3e14a3e 100644 --- a/sha1/sha1.c +++ b/sha1/sha1.c @@ -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 @@ -28,11 +28,14 @@ #include /* memcpy & co */ #include #include "config.h" -#undef DEBUG -//#define DEBUG UART #include "debug.h" #include "sha1.h" +#ifdef DEBUG +# undef DEBUG +#endif + + #define LITTLE_ENDIAN /********************************************************************************************************/