Home | History | Annotate | Download | only in asn1

Lines Matching refs:meth

224 		crl->meth = default_crl_method;
285 if (crl->meth->crl_init)
287 if (crl->meth->crl_init(crl) == 0)
293 if (crl->meth->crl_free)
295 if (!crl->meth->crl_free(crl))
388 if (crl->meth->crl_verify)
389 return crl->meth->crl_verify(crl, r);
396 if (crl->meth->crl_lookup)
397 return crl->meth->crl_lookup(crl, ret, serial, NULL);
403 if (crl->meth->crl_lookup)
404 return crl->meth->crl_lookup(crl, ret,
481 void X509_CRL_set_default_method(const X509_CRL_METHOD *meth)
483 if (meth == NULL)
486 default_crl_method = meth;