]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - hmac-sha256/hmac-sha256.h
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / hmac-sha256 / hmac-sha256.h
index e2bd178ce7d869ae867d703d34fc700196267fbe..519306d4581202221fe868306b1c0b313d32f31a 100644 (file)
@@ -1,7 +1,7 @@
 /* hmac-sha256.h */
 /*
     This file is part of the AVR-Crypto-Lib.
-    Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
+    Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
 
     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
@@ -19,7 +19,7 @@
 #ifndef HMACSHA256_H_
 #define HMACSHA256_H_
 
-#include "sha256/sha256.h"
+#include "sha256.h"
 
 #define HMAC_SHA256_BITS        SHA256_HASH_BITS
 #define HMAC_SHA256_BYTES       SHA256_HASH_BYTES
@@ -32,12 +32,12 @@ typedef struct {
 } hmac_sha256_ctx_t;
 
 
-void hmac_sha256_init(hmac_sha256_ctx_t *s, const voidkey, uint16_t keylength_b);
-void hmac_sha256_nextBlock(hmac_sha256_ctx_t *s, const voidblock);
-void hmac_sha256_lastBlock(hmac_sha256_ctx_t *s, const voidblock, uint16_t length_b);
-void hmac_sha256_final(voiddest, hmac_sha256_ctx_t *s);
+void hmac_sha256_init(hmac_sha256_ctx_t *s, const void *key, uint16_t keylength_b);
+void hmac_sha256_nextBlock(hmac_sha256_ctx_t *s, const void *block);
+void hmac_sha256_lastBlock(hmac_sha256_ctx_t *s, const void *block, uint16_t length_b);
+void hmac_sha256_final(void *dest, hmac_sha256_ctx_t *s);
 
-void hmac_sha256(void* dest, const void* key, uint16_t keylength_b, const void* msg, uint32_t msglength_b);
+void hmac_sha256(void *dest, const void *key, uint16_t keylength_b, const void *msg, uint32_t msglength_b);
 
 
 #endif /*HMACSHA256_H_*/