X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=sha2%2Fsha384.h;h=bb0ae21099c729c54c9d56f16a7b1c71cb8e09a9;hb=1f6be6ce98d01772fbb1f4d5205a13bea896a1f1;hp=59829b4ba5b2530f891233fc747abfb8017e0d82;hpb=38e12ca0d3a9df2ca6809ab88fb2ea32e5aed8f8;p=avr-crypto-lib.git diff --git a/sha2/sha384.h b/sha2/sha384.h index 59829b4..bb0ae21 100644 --- a/sha2/sha384.h +++ b/sha2/sha384.h @@ -1,7 +1,7 @@ /* sha384.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 @@ -33,10 +33,10 @@ typedef sha2_large_common_ctx_t sha384_ctx_t; void sha384_init(sha384_ctx_t *ctx); -void sha384_nextBlock (sha384_ctx_t* ctx, const void* block); -void sha384_lastBlock(sha384_ctx_t* ctx, const void* block, uint16_t length_b); -void sha384_ctx2hash(void* dest, const sha384_ctx_t* ctx); -void sha384(void* dest, const void* msg, uint32_t length_b); +void sha384_nextBlock (sha384_ctx_t *ctx, const void *block); +void sha384_lastBlock(sha384_ctx_t *ctx, const void *block, uint16_t length_b); +void sha384_ctx2hash(void *dest, const sha384_ctx_t *ctx); +void sha384(void *dest, const void *msg, uint32_t length_b); #endif /* SHA384_H_ */