X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=whirlpool%2Fwhirlpool.h;h=3c13d1e838224f82ed23674e9d76fe7d69af7e15;hb=6c688ee8a14c2452afb4e3c855939b9d0dc858d7;hp=bc80f9e0e98935424350b6584ba18aa1c38192ae;hpb=1de7784dc5fe0e2ebac23c0ee883a38f65a96b62;p=avr-crypto-lib.git diff --git a/whirlpool/whirlpool.h b/whirlpool/whirlpool.h index bc80f9e..3c13d1e 100644 --- a/whirlpool/whirlpool.h +++ b/whirlpool/whirlpool.h @@ -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_ */