aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/md4/md4.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/md4/md4.h')
-rw-r--r--crypto/md4/md4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/md4/md4.h b/crypto/md4/md4.h
index 7a7b23682f..9a5b6603fe 100644
--- a/crypto/md4/md4.h
+++ b/crypto/md4/md4.h
@@ -105,9 +105,9 @@ typedef struct MD4state_st
} MD4_CTX;
int MD4_Init(MD4_CTX *c);
-int MD4_Update(MD4_CTX *c, const void *data, unsigned long len);
+int MD4_Update(MD4_CTX *c, const void *data, size_t len);
int MD4_Final(unsigned char *md, MD4_CTX *c);
-unsigned char *MD4(const unsigned char *d, unsigned long n, unsigned char *md);
+unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md);
void MD4_Transform(MD4_CTX *c, const unsigned char *b);
#ifdef __cplusplus
}