Home | History | Annotate | Download | only in lib

Lines Matching full:ctxt

522   MD5_context *ctxt;
525 ctxt = malloc(sizeof *ctxt);
527 if(!ctxt)
528 return ctxt;
530 ctxt->md5_hashctx = malloc(md5params->md5_ctxtsize);
532 if(!ctxt->md5_hashctx) {
533 free(ctxt);
537 ctxt
539 (*md5params->md5_init_func)(ctxt->md5_hashctx);
541 return ctxt;