]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - whirlpool/whirlpool.h
fixing style, typos and uart
[avr-crypto-lib.git] / whirlpool / whirlpool.h
index bc80f9e0e98935424350b6584ba18aa1c38192ae..3c13d1e838224f82ed23674e9d76fe7d69af7e15 100644 (file)
@@ -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_ */