]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - hmac-sha256/hmac-sha256.h
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / hmac-sha256 / hmac-sha256.h
index 4df6af5e93f37f8fefd6f7a0de88e6705b30c006..ecc0a143afb0a5ab162bd5abdee61e9b96ed2b5e 100644 (file)
@@ -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_*/