X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=whirlpool%2Fwhirlpool.h;h=e1fd1a2b8d5d7c7318b0982c38e1da273f43ea1f;hp=d65f6e61c39f114fd6c8d33aa86f1bf3edfbcf73;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=3f759a542ce8ba4ffbeb6d336a3557a8abbd3ad4 diff --git a/whirlpool/whirlpool.h b/whirlpool/whirlpool.h index d65f6e6..e1fd1a2 100644 --- a/whirlpool/whirlpool.h +++ b/whirlpool/whirlpool.h @@ -1,7 +1,7 @@ /* wirlpool.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 @@ -28,9 +28,9 @@ typedef struct { } whirlpool_ctx_t; -void whirlpool_init(whirlpool_ctx_t* ctx); -void whirlpool_nextBlock(whirlpool_ctx_t* ctx,const void* block); -void whirlpool_lastBlock(whirlpool_ctx_t* ctx, const void* block, uint16_t length_b); -void whirlpool_ctx2hash(void* dest, const whirlpool_ctx_t* ctx); +void whirlpool_init(whirlpool_ctx_t *ctx); +void whirlpool_nextBlock(whirlpool_ctx_t *ctx,const void *block); +void whirlpool_lastBlock(whirlpool_ctx_t *ctx, const void *block, uint16_t length_b); +void whirlpool_ctx2hash(void *dest, const whirlpool_ctx_t *ctx); #endif /* WIRLPOOL_H_ */