size_t-fication of message digest APIs. We should size_t-fy more APIs...
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user