]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - hmac-md5/hmac-md5.h
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / hmac-md5 / hmac-md5.h
index 5bbaeb9a62f5d4ee2b88c056f86e6e5425636471..d60898329135ee49def3e6cb99eda4132caa93d1 100644 (file)
@@ -31,12 +31,12 @@ typedef struct{
 } hmac_md5_ctx_t;
 
 
-void hmac_md5_init(hmac_md5_ctx_t *s, voidkey, uint16_t keylength_b);
-void hmac_md5_nextBlock(hmac_md5_ctx_t *s, const voidblock);
-void hmac_md5_lastBlock(hmac_md5_ctx_t *s, const voidblock, uint16_t length_b);
-void hmac_md5_final(voiddest, hmac_md5_ctx_t *s);
+void hmac_md5_init(hmac_md5_ctx_t *s, void *key, uint16_t keylength_b);
+void hmac_md5_nextBlock(hmac_md5_ctx_t *s, const void *block);
+void hmac_md5_lastBlock(hmac_md5_ctx_t *s, const void *block, uint16_t length_b);
+void hmac_md5_final(void *dest, hmac_md5_ctx_t *s);
 
-void hmac_md5(void* dest, void* key, uint16_t keylength_b, void* msg, uint32_t msglength_b);
+void hmac_md5(void *dest, void *key, uint16_t keylength_b, void *msg, uint32_t msglength_b);
 
 
 #endif /*HMACMD5_H_*/