Home
last modified time | relevance | path

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

/third_party/curl/lib/
Dmd5.c619 ctxt->md5_hashctx = malloc(md5params->md5_ctxtsize); in Curl_MD5_init()
621 if(!ctxt->md5_hashctx) { in Curl_MD5_init()
628 if((*md5params->md5_init_func)(ctxt->md5_hashctx)) { in Curl_MD5_init()
629 free(ctxt->md5_hashctx); in Curl_MD5_init()
641 (*context->md5_hash->md5_update_func)(context->md5_hashctx, data, len); in Curl_MD5_update()
648 (*context->md5_hash->md5_final_func)(result, context->md5_hashctx); in Curl_MD5_final()
650 free(context->md5_hashctx); in Curl_MD5_final()
Dcurl_md5.h50 void *md5_hashctx; /* Hash function context */ member