X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=sha2%2Fsha512.h;fp=sha2%2Fsha512.h;h=15a0ae340c2ae556813fe2b54cb7b58dd94fdfe7;hp=7484dad98a54398cd88578f5e4101b94705b47fd;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/sha2/sha512.h b/sha2/sha512.h index 7484dad..15a0ae3 100644 --- a/sha2/sha512.h +++ b/sha2/sha512.h @@ -32,10 +32,10 @@ typedef sha2_large_common_ctx_t sha512_ctx_t; void sha512_init(sha512_ctx_t *ctx); -void sha512_nextBlock (sha512_ctx_t* ctx, const void* block); -void sha512_lastBlock(sha512_ctx_t* ctx, const void* block, uint16_t length_b); -void sha512_ctx2hash(void* dest, const sha512_ctx_t* ctx); -void sha512(void* dest, const void* msg, uint32_t length_b); +void sha512_nextBlock (sha512_ctx_t *ctx, const void *block); +void sha512_lastBlock(sha512_ctx_t *ctx, const void *block, uint16_t length_b); +void sha512_ctx2hash(void *dest, const sha512_ctx_t *ctx); +void sha512(void *dest, const void *msg, uint32_t length_b); #endif /* SHA512_H_ */