]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - md5/md5.h
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / md5 / md5.h
index 6b65c4a67888aa15118278cf7d149027108e7640..da44ad0cb9ee8c59ddd751848d8425639912113a 100644 (file)
--- a/md5/md5.h
+++ b/md5/md5.h
@@ -1,7 +1,7 @@
 /* md5.h */
 /*
     This file is part of the AVR-Crypto-Lib.
-    Copyright (C) 2008  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
@@ -47,9 +47,9 @@ typedef uint8_t md5_hash_t[MD5_HASH_BYTES];
 
  
 void md5_init(md5_ctx_t *s);
-void md5_nextBlock(md5_ctx_t *state, const voidblock);
-void md5_lastBlock(md5_ctx_t *state, const voidblock, uint16_t length);
-void md5_ctx2hash(md5_hash_t* dest, const md5_ctx_t* state);
-void md5(md5_hash_t* dest, const void* msg, uint32_t length_b);
+void md5_nextBlock(md5_ctx_t *state, const void *block);
+void md5_lastBlock(md5_ctx_t *state, const void *block, uint16_t length);
+void md5_ctx2hash(md5_hash_t *dest, const md5_ctx_t *state);
+void md5(md5_hash_t *dest, const void *msg, uint32_t length_b);
 
 #endif /*MD5_H_*/