X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=bmw%2Fbmw_small.h;fp=bmw%2Fbmw_small.h;h=4f875086aef1057c480f98ffd45e19473f5b0466;hp=f314712248920f8439e70c703cf33ada66acd44f;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/bmw/bmw_small.h b/bmw/bmw_small.h index f314712..4f87508 100644 --- a/bmw/bmw_small.h +++ b/bmw/bmw_small.h @@ -44,22 +44,22 @@ typedef struct { typedef bmw_small_ctx_t bmw224_ctx_t; typedef bmw_small_ctx_t bmw256_ctx_t; -void bmw224_init(bmw224_ctx_t* ctx); -void bmw256_init(bmw256_ctx_t* ctx); +void bmw224_init(bmw224_ctx_t *ctx); +void bmw256_init(bmw256_ctx_t *ctx); -void bmw_small_nextBlock(bmw_small_ctx_t* ctx, const void* block); -void bmw_small_lastBlock(bmw_small_ctx_t* ctx, const void* block, uint16_t length_b); +void bmw_small_nextBlock(bmw_small_ctx_t *ctx, const void *block); +void bmw_small_lastBlock(bmw_small_ctx_t *ctx, const void *block, uint16_t length_b); -void bmw224_nextBlock(bmw224_ctx_t* ctx, const void* block); -void bmw224_lastBlock(bmw224_ctx_t* ctx, const void* block, uint16_t length_b); +void bmw224_nextBlock(bmw224_ctx_t *ctx, const void *block); +void bmw224_lastBlock(bmw224_ctx_t *ctx, const void *block, uint16_t length_b); -void bmw256_nextBlock(bmw256_ctx_t* ctx, const void* block); -void bmw256_lastBlock(bmw256_ctx_t* ctx, const void* block, uint16_t length_b); +void bmw256_nextBlock(bmw256_ctx_t *ctx, const void *block); +void bmw256_lastBlock(bmw256_ctx_t *ctx, const void *block, uint16_t length_b); -void bmw224_ctx2hash(void* dest, const bmw224_ctx_t* ctx); -void bmw256_ctx2hash(void* dest, const bmw256_ctx_t* ctx); +void bmw224_ctx2hash(void *dest, const bmw224_ctx_t *ctx); +void bmw256_ctx2hash(void *dest, const bmw256_ctx_t *ctx); -void bmw224(void* dest, const void* msg, uint32_t length_b); -void bmw256(void* dest, const void* msg, uint32_t length_b); +void bmw224(void *dest, const void *msg, uint32_t length_b); +void bmw256(void *dest, const void *msg, uint32_t length_b); #endif /* BMW_SMALL_H_ */