summaryrefslogtreecommitdiffstats
path: root/crypto/md5
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2000-02-16 12:09:17 +0000
committerBen Laurie <ben@openssl.org>2000-02-16 12:09:17 +0000
commitbd44570322940cf1d1e01ad27c9e1949806a06cd (patch)
tree66a398cee6044bacb5e87c4e5792f8fd7983de23 /crypto/md5
parente1c55191cbd1e21bbf4d95d2e51670158b64f9cd (diff)
Fix signed/unsigned warnings.
Diffstat (limited to 'crypto/md5')
-rw-r--r--crypto/md5/md5.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/md5/md5.h b/crypto/md5/md5.h
index d9b7383446..d10bc8397f 100644
--- a/crypto/md5/md5.h
+++ b/crypto/md5/md5.h
@@ -103,7 +103,7 @@ typedef struct MD5state_st
} MD5_CTX;
void MD5_Init(MD5_CTX *c);
-void MD5_Update(MD5_CTX *c, const unsigned char *data, unsigned long len);
+void MD5_Update(MD5_CTX *c, const void *data, unsigned long len);
void MD5_Final(unsigned char *md, MD5_CTX *c);
unsigned char *MD5(const unsigned char *d, unsigned long n, unsigned char *md);
void MD5_Transform(MD5_CTX *c, const unsigned char *b);