diff options
Diffstat (limited to 'libmd5/md5.h')
-rw-r--r-- | libmd5/md5.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmd5/md5.h b/libmd5/md5.h index e62aa07..8e85a8a 100644 --- a/libmd5/md5.h +++ b/libmd5/md5.h @@ -42,7 +42,7 @@ typedef struct { void MD5Init(MD5_CTX *ctx); void MD5Update (MD5_CTX *ctx, const unsigned char *buf, unsigned int len); void MD5Final (MD5_CTX *ctx, unsigned char sig[16]); -void MD5Buffer (const char *buf,unsigned int len,unsigned char sig[16]); +void MD5Buffer (const unsigned char *buf,unsigned int len,unsigned char sig[16]); void MD5SigToString(unsigned char sig[16],char *str,int len); #ifdef __cplusplus |