X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=hmac-sha256%2Fhmac-sha256.h;fp=hmac-sha256%2Fhmac-sha256.h;h=ecc0a143afb0a5ab162bd5abdee61e9b96ed2b5e;hp=4df6af5e93f37f8fefd6f7a0de88e6705b30c006;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/hmac-sha256/hmac-sha256.h b/hmac-sha256/hmac-sha256.h index 4df6af5..ecc0a14 100644 --- a/hmac-sha256/hmac-sha256.h +++ b/hmac-sha256/hmac-sha256.h @@ -32,12 +32,12 @@ typedef struct { } hmac_sha256_ctx_t; -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_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_*/