Home | History | Annotate | Download | only in x509

Lines Matching refs:crl

38 /* pkcs7_parse_header reads the non-certificate/non-CRL prefix of a PKCS#7
185 X509_CRL *crl;
196 crl = d2i_X509_CRL(NULL, &inp, (long)CBS_len(&crl_data));
197 if (!crl) {
203 if (sk_X509_CRL_push(out_crls, crl) == 0) {
204 X509_CRL_free(crl);
268 * |cb| with a CBB to which certificate or CRL data can be written, and the
341 X509_CRL *crl = sk_X509_CRL_value(crls, i);
343 int len = i2d_X509_CRL(crl, NULL);
347 i2d_X509_CRL(crl, &buf) < 0) {