Home | History | Annotate | Download | only in lib

Lines Matching full:ctxt

521   MD5_context *ctxt;
524 ctxt = malloc(sizeof *ctxt);
526 if(!ctxt)
527 return ctxt;
529 ctxt->md5_hashctx = malloc(md5params->md5_ctxtsize);
531 if(!ctxt->md5_hashctx) {
532 free(ctxt);
536 ctxt
538 (*md5params->md5_init_func)(ctxt->md5_hashctx);
540 return ctxt;