X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=whirlpool%2Fwhirlpool.h;h=e1fd1a2b8d5d7c7318b0982c38e1da273f43ea1f;hp=bc80f9e0e98935424350b6584ba18aa1c38192ae;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=1de7784dc5fe0e2ebac23c0ee883a38f65a96b62 diff --git a/whirlpool/whirlpool.h b/whirlpool/whirlpool.h index bc80f9e..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 @@ -27,11 +27,10 @@ typedef struct { uint32_t blocks; } whirlpool_ctx_t; -uint8_t whirlpool_sbox(uint8_t a); -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_ */