Lines Matching refs:crl
68 if (x->crl->version == NULL) {
69 if ((x->crl->version = M_ASN1_INTEGER_new()) == NULL)
72 return (ASN1_INTEGER_set(x->crl->version, version));
77 if ((x == NULL) || (x->crl == NULL))
79 return (X509_NAME_set(&x->crl->issuer, name));
88 in = x->crl->lastUpdate;
92 M_ASN1_TIME_free(x->crl->lastUpdate);
93 x->crl->lastUpdate = in;
105 in = x->crl->nextUpdate;
109 M_ASN1_TIME_free(x->crl->nextUpdate);
110 x->crl->nextUpdate = in;
123 sk_X509_REVOKED_sort(c->crl->revoked);
124 for (i = 0; i < sk_X509_REVOKED_num(c->crl->revoked); i++) {
125 r = sk_X509_REVOKED_value(c->crl->revoked, i);
128 c->crl->enc.modified = 1;
132 int X509_CRL_up_ref(X509_CRL *crl)
134 CRYPTO_refcount_inc(&crl->references);