size_t-fication of message digest APIs. We should size_t-fy more APIs...

This commit is contained in:
Andy Polyakov
2004-05-15 11:29:55 +00:00
parent 1c7a0e2856
commit 9e0aad9fd6
39 changed files with 82 additions and 82 deletions

View File

@@ -69,7 +69,7 @@
static int init(EVP_MD_CTX *ctx)
{ return SHA1_Init(ctx->md_data); }
static int update(EVP_MD_CTX *ctx,const void *data,unsigned long count)
static int update(EVP_MD_CTX *ctx,const void *data,size_t count)
{ return SHA1_Update(ctx->md_data,data,count); }
static int final(EVP_MD_CTX *ctx,unsigned char *md)