X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=sha2%2Fsha512.h;h=5d52e77a5e44d55a3eb21a47faec310b96397d39;hb=1f6be6ce98d01772fbb1f4d5205a13bea896a1f1;hp=7484dad98a54398cd88578f5e4101b94705b47fd;hpb=38e12ca0d3a9df2ca6809ab88fb2ea32e5aed8f8;p=avr-crypto-lib.git diff --git a/sha2/sha512.h b/sha2/sha512.h index 7484dad..5d52e77 100644 --- a/sha2/sha512.h +++ b/sha2/sha512.h @@ -1,7 +1,7 @@ /* sha512.h */ /* This file is part of the AVR-Crypto-Lib. - Copyright (C) 2011 Daniel Otte (daniel.otte@rub.de) + Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -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_ */