Lines Matching defs:crl
35 {"nocrl", OPT_NOCRL, '-', "No crl to load, just certs from '-certfile'"},
49 X509_CRL *crl = NULL;
103 crl = d2i_X509_CRL_bio(in, NULL);
105 crl = PEM_read_bio_X509_CRL(in, NULL, NULL, NULL);
106 if (crl == NULL) {
107 BIO_printf(bio_err, "unable to load CRL\n");
124 if (crl != NULL) {
127 p7s->crl = crl_stack;
128 sk_X509_CRL_push(crl_stack, crl);
129 crl = NULL; /* now part of p7 for OPENSSL_freeing */
166 X509_CRL_free(crl);
195 /* This loads from a file, a stack of x509/crl/pkey sets */
202 /* scan over it and pull out the CRL's */