summaryrefslogtreecommitdiffstats
path: root/crypto/md5/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/md5/md5.h')
-rw-r--r--crypto/md5/md5.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/md5/md5.h b/crypto/md5/md5.h
index c08d509861..52cb753e6a 100644
--- a/crypto/md5/md5.h
+++ b/crypto/md5/md5.h
@@ -102,9 +102,9 @@ typedef struct MD5state_st
int num;
} MD5_CTX;
-void MD5_Init(MD5_CTX *c);
-void MD5_Update(MD5_CTX *c, const void *data, unsigned long len);
-void MD5_Final(unsigned char *md, MD5_CTX *c);
+int MD5_Init(MD5_CTX *c);
+int MD5_Update(MD5_CTX *c, const void *data, unsigned long len);
+int 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);
#ifdef __cplusplus