]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - whirlpool/whirlpool.h
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / whirlpool / whirlpool.h
index bc80f9e0e98935424350b6584ba18aa1c38192ae..e1fd1a2b8d5d7c7318b0982c38e1da273f43ea1f 100644 (file)
@@ -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_tctx);
-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_ */