]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - bcal/bcal-cmac.h
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / bcal / bcal-cmac.h
index be699b66155ce6f2f0df8a91d13b4574cc02d540..868c6168b6fde8f814d3e26701e372ac859cba94 100644 (file)
@@ -35,11 +35,11 @@ typedef struct{
        uint8_t      blocksize_B;
 } bcal_cmac_ctx_t;
 
-uint8_t bcal_cmac_init(const bcdesc_t* desc, const void* key, uint16_t keysize_b, bcal_cmac_ctx_t* ctx);
-void bcal_cmac_free(bcal_cmac_ctx_tctx);
-void bcal_cmac_nextBlock(bcal_cmac_ctx_t* ctx, const void* block);
-void bcal_cmac_lastBlock(bcal_cmac_ctx_t* ctx, const void* block, uint16_t length_b);
-void bcal_cmac_ctx2mac(void* dest, uint16_t length_b, const bcal_cmac_ctx_t* ctx);
-void bcal_cmac(void* dest, uint16_t out_length_b, const void* block, uint32_t length_b, bcal_cmac_ctx_t* ctx);
+uint8_t bcal_cmac_init(const bcdesc_t *desc, const void *key, uint16_t keysize_b, bcal_cmac_ctx_t *ctx);
+void bcal_cmac_free(bcal_cmac_ctx_t *ctx);
+void bcal_cmac_nextBlock(bcal_cmac_ctx_t *ctx, const void *block);
+void bcal_cmac_lastBlock(bcal_cmac_ctx_t *ctx, const void *block, uint16_t length_b);
+void bcal_cmac_ctx2mac(void *dest, uint16_t length_b, const bcal_cmac_ctx_t *ctx);
+void bcal_cmac(void *dest, uint16_t out_length_b, const void *block, uint32_t length_b, bcal_cmac_ctx_t *ctx);
 
 #endif /* BCALCMAC_H_ */