Home
last modified time | relevance | path

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

/external/curl/lib/
Dmd5.c534 ctxt->md5_hashctx = malloc(md5params->md5_ctxtsize); in Curl_MD5_init()
536 if(!ctxt->md5_hashctx) { in Curl_MD5_init()
543 (*md5params->md5_init_func)(ctxt->md5_hashctx); in Curl_MD5_init()
552 (*context->md5_hash->md5_update_func)(context->md5_hashctx, data, len); in Curl_MD5_update()
559 (*context->md5_hash->md5_final_func)(result, context->md5_hashctx); in Curl_MD5_final()
561 free(context->md5_hashctx); in Curl_MD5_final()
Dcurl_md5.h46 void *md5_hashctx; /* Hash function context */ member