Home | History | Annotate | Download | only in x509

Lines Matching refs:crl

30 /* pkcs7_parse_header reads the non-certificate/non-CRL prefix of a PKCS#7
181 X509_CRL *crl;
192 crl = d2i_X509_CRL(NULL, &inp, (long)CBS_len(&crl_data));
193 if (!crl) {
199 if (sk_X509_CRL_push(out_crls, crl) == 0) {
200 X509_CRL_free(crl);
266 * |cb| with a CBB to which certificate or CRL data can be written, and the
337 X509_CRL *crl = sk_X509_CRL_value(crls, i);
339 int len = i2d_X509_CRL(crl, NULL);
343 i2d_X509_CRL(crl, &buf) < 0) {