X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=blake%2Fblake_small.h;fp=blake%2Fblake_small.h;h=2fa49b17c101addca46373e728f9cda22e8f784f;hp=3d96cf7530c9c1058bba9e7d74429ca56b0a5fce;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/blake/blake_small.h b/blake/blake_small.h index 3d96cf7..2fa49b1 100644 --- a/blake/blake_small.h +++ b/blake/blake_small.h @@ -46,22 +46,22 @@ typedef struct { typedef blake_small_ctx_t blake224_ctx_t; typedef blake_small_ctx_t blake256_ctx_t; -void blake224_init(blake224_ctx_t* ctx); -void blake256_init(blake256_ctx_t* ctx); +void blake224_init(blake224_ctx_t *ctx); +void blake256_init(blake256_ctx_t *ctx); -void blake_small_nextBlock(blake_small_ctx_t* ctx, const void* block); -void blake_small_lastBlock(blake_small_ctx_t* ctx, const void* block, uint16_t length_b); +void blake_small_nextBlock(blake_small_ctx_t *ctx, const void *block); +void blake_small_lastBlock(blake_small_ctx_t *ctx, const void *block, uint16_t length_b); -void blake224_nextBlock(blake224_ctx_t* ctx, const void* block); -void blake224_lastBlock(blake224_ctx_t* ctx, const void* block, uint16_t length_b); +void blake224_nextBlock(blake224_ctx_t *ctx, const void *block); +void blake224_lastBlock(blake224_ctx_t *ctx, const void *block, uint16_t length_b); -void blake256_nextBlock(blake256_ctx_t* ctx, const void* block); -void blake256_lastBlock(blake256_ctx_t* ctx, const void* block, uint16_t length_b); +void blake256_nextBlock(blake256_ctx_t *ctx, const void *block); +void blake256_lastBlock(blake256_ctx_t *ctx, const void *block, uint16_t length_b); -void blake224_ctx2hash(void* dest, const blake224_ctx_t* ctx); -void blake256_ctx2hash(void* dest, const blake256_ctx_t* ctx); +void blake224_ctx2hash(void *dest, const blake224_ctx_t *ctx); +void blake256_ctx2hash(void *dest, const blake256_ctx_t *ctx); -void blake224(void* dest, const void* msg, uint32_t length_b); -void blake256(void* dest, const void* msg, uint32_t length_b); +void blake224(void *dest, const void *msg, uint32_t length_b); +void blake256(void *dest, const void *msg, uint32_t length_b); #endif /* BLAKE_SMALL_H_ */