From: Andy Polyakov Date: Mon, 28 Sep 2015 13:56:34 +0000 (+0200) Subject: Fix prototypes in e_ossttest.c. X-Git-Tag: OpenSSL_1_1_0-pre1~491 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=16a9542a1723828c5b2dbe854a2864aa3ed2b11e;p=oweals%2Fopenssl.git Fix prototypes in e_ossttest.c. Problem was exposed in mingw64 build, or in other words on P64 platform. Reviewed-by: Rich Salz --- diff --git a/engines/e_ossltest.c b/engines/e_ossltest.c index c3390268a5..e9a071ce65 100644 --- a/engines/e_ossltest.c +++ b/engines/e_ossltest.c @@ -94,7 +94,7 @@ static int ossltest_digest_nids[] = { /* MD5 */ static int digest_md5_init(EVP_MD_CTX *ctx); static int digest_md5_update(EVP_MD_CTX *ctx, const void *data, - unsigned long count); + size_t count); static int digest_md5_final(EVP_MD_CTX *ctx, unsigned char *md); static const EVP_MD digest_md5 = { @@ -115,7 +115,7 @@ static const EVP_MD digest_md5 = { /* SHA1 */ static int digest_sha1_init(EVP_MD_CTX *ctx); static int digest_sha1_update(EVP_MD_CTX *ctx, const void *data, - unsigned long count); + size_t count); static int digest_sha1_final(EVP_MD_CTX *ctx, unsigned char *md); static const EVP_MD digest_sha1 = { @@ -136,7 +136,7 @@ static const EVP_MD digest_sha1 = { /* SHA256 */ static int digest_sha256_init(EVP_MD_CTX *ctx); static int digest_sha256_update(EVP_MD_CTX *ctx, const void *data, - unsigned long count); + size_t count); static int digest_sha256_final(EVP_MD_CTX *ctx, unsigned char *md); static const EVP_MD digest_sha256 = { @@ -158,7 +158,7 @@ static const EVP_MD digest_sha256 = { static int digest_sha384_init(EVP_MD_CTX *ctx); static int digest_sha512_init(EVP_MD_CTX *ctx); static int digest_sha512_update(EVP_MD_CTX *ctx, const void *data, - unsigned long count); + size_t count); static int digest_sha384_final(EVP_MD_CTX *ctx, unsigned char *md); static int digest_sha512_final(EVP_MD_CTX *ctx, unsigned char *md); @@ -377,7 +377,7 @@ static int digest_md5_init(EVP_MD_CTX *ctx) } static int digest_md5_update(EVP_MD_CTX *ctx, const void *data, - unsigned long count) + size_t count) { return MD5_Update(data(ctx), data, (size_t)count); } @@ -404,7 +404,7 @@ static int digest_sha1_init(EVP_MD_CTX *ctx) } static int digest_sha1_update(EVP_MD_CTX *ctx, const void *data, - unsigned long count) + size_t count) { return SHA1_Update(data(ctx), data, (size_t)count); } @@ -431,7 +431,7 @@ static int digest_sha256_init(EVP_MD_CTX *ctx) } static int digest_sha256_update(EVP_MD_CTX *ctx, const void *data, - unsigned long count) + size_t count) { return SHA256_Update(data(ctx), data, (size_t)count); } @@ -463,7 +463,7 @@ static int digest_sha512_init(EVP_MD_CTX *ctx) } static int digest_sha512_update(EVP_MD_CTX *ctx, const void *data, - unsigned long count) + size_t count) { return SHA512_Update(data(ctx), data, (size_t)count); }