]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - sha2/sha512.h
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / sha2 / sha512.h
index 7484dad98a54398cd88578f5e4101b94705b47fd..5d52e77a5e44d55a3eb21a47faec310b96397d39 100644 (file)
@@ -1,7 +1,7 @@
 /* sha512.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
@@ -32,10 +32,10 @@ typedef sha2_large_common_ctx_t sha512_ctx_t;
 
 
 void sha512_init(sha512_ctx_t *ctx);
-void sha512_nextBlock (sha512_ctx_t* ctx, const void* block);
-void sha512_lastBlock(sha512_ctx_t* ctx, const void* block, uint16_t length_b);
-void sha512_ctx2hash(void* dest, const sha512_ctx_t* ctx);
-void sha512(void* dest, const void* msg, uint32_t length_b);
+void sha512_nextBlock (sha512_ctx_t *ctx, const void *block);
+void sha512_lastBlock(sha512_ctx_t *ctx, const void *block, uint16_t length_b);
+void sha512_ctx2hash(void *dest, const sha512_ctx_t *ctx);
+void sha512(void *dest, const void *msg, uint32_t length_b);
 
 
 #endif /* SHA512_H_ */