summaryrefslogtreecommitdiff
path: root/beecrypt/hmacsha1.c
diff options
context:
space:
mode:
Diffstat (limited to 'beecrypt/hmacsha1.c')
-rw-r--r--beecrypt/hmacsha1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/beecrypt/hmacsha1.c b/beecrypt/hmacsha1.c
index 198dd346f..0c490707b 100644
--- a/beecrypt/hmacsha1.c
+++ b/beecrypt/hmacsha1.c
@@ -25,9 +25,9 @@
*
*/
-#define BEECRYPT_DLL_EXPORT
-
+#include "system.h"
#include "hmacsha1.h"
+#include "debug.h"
/*@-sizeoftype@*/
const keyedHashFunction hmacsha1 = { "HMAC-SHA-1", sizeof(hmacsha1Param), 64, 5 * sizeof(uint32), 64, 512, 32, (keyedHashFunctionSetup) hmacsha1Setup, (keyedHashFunctionReset) hmacsha1Reset, (keyedHashFunctionUpdate) hmacsha1Update, (keyedHashFunctionDigest) hmacsha1Digest };