X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=bmw%2Fbmw_large.h;fp=bmw%2Fbmw_large.h;h=a810b188a64ca210638082cdaea57a18b4f18695;hp=fba01fbf2b4a2a1c1df13af0b93548df470775fc;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/bmw/bmw_large.h b/bmw/bmw_large.h index fba01fb..a810b18 100644 --- a/bmw/bmw_large.h +++ b/bmw/bmw_large.h @@ -44,22 +44,22 @@ typedef struct { typedef bmw_large_ctx_t bmw384_ctx_t; typedef bmw_large_ctx_t bmw512_ctx_t; -void bmw384_init(bmw384_ctx_t* ctx); -void bmw512_init(bmw512_ctx_t* ctx); +void bmw384_init(bmw384_ctx_t *ctx); +void bmw512_init(bmw512_ctx_t *ctx); -void bmw_large_nextBlock(bmw_large_ctx_t* ctx, const void* block); -void bmw_large_lastBlock(bmw_large_ctx_t* ctx, const void* block, uint16_t length_b); +void bmw_large_nextBlock(bmw_large_ctx_t *ctx, const void *block); +void bmw_large_lastBlock(bmw_large_ctx_t *ctx, const void *block, uint16_t length_b); -void bmw384_nextBlock(bmw384_ctx_t* ctx, const void* block); -void bmw384_lastBlock(bmw384_ctx_t* ctx, const void* block, uint16_t length_b); +void bmw384_nextBlock(bmw384_ctx_t *ctx, const void *block); +void bmw384_lastBlock(bmw384_ctx_t *ctx, const void *block, uint16_t length_b); -void bmw512_nextBlock(bmw512_ctx_t* ctx, const void* block); -void bmw512_lastBlock(bmw512_ctx_t* ctx, const void* block, uint16_t length_b); +void bmw512_nextBlock(bmw512_ctx_t *ctx, const void *block); +void bmw512_lastBlock(bmw512_ctx_t *ctx, const void *block, uint16_t length_b); -void bmw384_ctx2hash(void* dest, const bmw384_ctx_t* ctx); -void bmw512_ctx2hash(void* dest, const bmw512_ctx_t* ctx); +void bmw384_ctx2hash(void *dest, const bmw384_ctx_t *ctx); +void bmw512_ctx2hash(void *dest, const bmw512_ctx_t *ctx); -void bmw384(void* dest, const void* msg, uint32_t length_b); -void bmw512(void* dest, const void* msg, uint32_t length_b); +void bmw384(void *dest, const void *msg, uint32_t length_b); +void bmw512(void *dest, const void *msg, uint32_t length_b); #endif /* BMW_LARGE_H_ */