X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=blake%2Fblake_large.h;h=472e164ddd8f70900a94252354ab2d96eca03276;hp=0ad66ea511121775e6d16aa9e670f65a31bc7592;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/blake/blake_large.h b/blake/blake_large.h index 0ad66ea..472e164 100644 --- a/blake/blake_large.h +++ b/blake/blake_large.h @@ -46,22 +46,22 @@ typedef struct { typedef blake_large_ctx_t blake384_ctx_t; typedef blake_large_ctx_t blake512_ctx_t; -void blake384_init(blake384_ctx_t* ctx); -void blake512_init(blake512_ctx_t* ctx); +void blake384_init(blake384_ctx_t *ctx); +void blake512_init(blake512_ctx_t *ctx); -void blake_large_nextBlock(blake_large_ctx_t* ctx, const void* block); -void blake_large_lastBlock(blake_large_ctx_t* ctx, const void* block, uint16_t length_b); +void blake_large_nextBlock(blake_large_ctx_t *ctx, const void *block); +void blake_large_lastBlock(blake_large_ctx_t *ctx, const void *block, uint16_t length_b); -void blake384_nextBlock(blake384_ctx_t* ctx, const void* block); -void blake384_lastBlock(blake384_ctx_t* ctx, const void* block, uint16_t length_b); +void blake384_nextBlock(blake384_ctx_t *ctx, const void *block); +void blake384_lastBlock(blake384_ctx_t *ctx, const void *block, uint16_t length_b); -void blake512_nextBlock(blake512_ctx_t* ctx, const void* block); -void blake512_lastBlock(blake512_ctx_t* ctx, const void* block, uint16_t length_b); +void blake512_nextBlock(blake512_ctx_t *ctx, const void *block); +void blake512_lastBlock(blake512_ctx_t *ctx, const void *block, uint16_t length_b); -void blake384_ctx2hash(void* dest, const blake384_ctx_t* ctx); -void blake512_ctx2hash(void* dest, const blake512_ctx_t* ctx); +void blake384_ctx2hash(void *dest, const blake384_ctx_t *ctx); +void blake512_ctx2hash(void *dest, const blake512_ctx_t *ctx); -void blake384(void* dest, const void* msg, uint32_t length_b); -void blake512(void* dest, const void* msg, uint32_t length_b); +void blake384(void *dest, const void *msg, uint32_t length_b); +void blake512(void *dest, const void *msg, uint32_t length_b); #endif /* BLAKE_LARGE_H_ */