Lines Matching defs:crl
37 {"nocrl", OPT_NOCRL, '-', "No crl to load, just certs from '-certfile'"},
57 X509_CRL *crl = NULL;
117 crl = d2i_X509_CRL_bio(in, NULL);
119 crl = PEM_read_bio_X509_CRL(in, NULL, NULL, NULL);
120 if (crl == NULL) {
138 if (crl != NULL) {
141 p7s->crl = crl_stack;
142 sk_X509_CRL_push(crl_stack, crl);
143 crl = NULL; /* now part of p7 for OPENSSL_freeing */
180 X509_CRL_free(crl);
209 /* This loads from a file, a stack of x509/crl/pkey sets */