aboutsummaryrefslogtreecommitdiff
path: root/src/hash/md5/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/md5/md5.h')
-rw-r--r--src/hash/md5/md5.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/hash/md5/md5.h b/src/hash/md5/md5.h
index 11b3ddd..d41b8fb 100644
--- a/src/hash/md5/md5.h
+++ b/src/hash/md5/md5.h
@@ -21,6 +21,8 @@ without express or implied warranty of any kind.
These notices must be retained in any copies of any part of this
documentation and/or software.
+
+Functions signatures changed as to not conflict with other libraries
*/
#include "global.h"
@@ -32,7 +34,7 @@ typedef struct {
unsigned char buffer[64]; /* input buffer */
} MD5_CTX;
-void MD5Init PROTO_LIST ((MD5_CTX *));
-void MD5Update PROTO_LIST
+void MD5_Init PROTO_LIST ((MD5_CTX *));
+void MD5_Update PROTO_LIST
((MD5_CTX *, unsigned char *, unsigned int));
-void MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *));
+void MD5_Final PROTO_LIST ((unsigned char [16], MD5_CTX *));