Home
last modified time | relevance | path

Searched refs:md5_hashctx (Results 1 – 2 of 2) sorted by relevance

/curl/lib/
H A Dcurl_md5.h50 void *md5_hashctx; /* Hash function context */ member
H A Dmd5.c611 ctxt->md5_hashctx = malloc(md5params->md5_ctxtsize); in Curl_MD5_init()
613 if(!ctxt->md5_hashctx) { in Curl_MD5_init()
620 if((*md5params->md5_init_func)(ctxt->md5_hashctx)) { in Curl_MD5_init()
621 free(ctxt->md5_hashctx); in Curl_MD5_init()
633 (*context->md5_hash->md5_update_func)(context->md5_hashctx, data, len); in Curl_MD5_update()
640 (*context->md5_hash->md5_final_func)(result, context->md5_hashctx); in Curl_MD5_final()
642 free(context->md5_hashctx); in Curl_MD5_final()

Completed in 5 milliseconds