tbsCertList 468 source4/heimdal/lib/hx509/revoke.c t = _hx509_Time2time_t(&crl->tbsCertList.thisUpdate);
tbsCertList 475 source4/heimdal/lib/hx509/revoke.c if (crl->tbsCertList.nextUpdate == NULL) {
tbsCertList 481 source4/heimdal/lib/hx509/revoke.c t = _hx509_Time2time_t(crl->tbsCertList.nextUpdate);
tbsCertList 499 source4/heimdal/lib/hx509/revoke.c q.subject_name = &crl->tbsCertList.issuer;
tbsCertList 512 source4/heimdal/lib/hx509/revoke.c &crl->tbsCertList._save,
tbsCertList 778 source4/heimdal/lib/hx509/revoke.c &crl->crl.tbsCertList.issuer, &diff);
tbsCertList 807 source4/heimdal/lib/hx509/revoke.c if (crl->crl.tbsCertList.crlExtensions) {
tbsCertList 808 source4/heimdal/lib/hx509/revoke.c for (j = 0; j < crl->crl.tbsCertList.crlExtensions->len; j++) {
tbsCertList 809 source4/heimdal/lib/hx509/revoke.c if (crl->crl.tbsCertList.crlExtensions->val[j].critical) {
tbsCertList 818 source4/heimdal/lib/hx509/revoke.c if (crl->crl.tbsCertList.revokedCertificates == NULL)
tbsCertList 822 source4/heimdal/lib/hx509/revoke.c for (j = 0; j < crl->crl.tbsCertList.revokedCertificates->len; j++) {
tbsCertList 825 source4/heimdal/lib/hx509/revoke.c ret = der_heim_integer_cmp(&crl->crl.tbsCertList.revokedCertificates->val[j].userCertificate,
tbsCertList 830 source4/heimdal/lib/hx509/revoke.c t = _hx509_Time2time_t(&crl->crl.tbsCertList.revokedCertificates->val[j].revocationDate);
tbsCertList 834 source4/heimdal/lib/hx509/revoke.c if (crl->crl.tbsCertList.revokedCertificates->val[j].crlEntryExtensions)
tbsCertList 835 source4/heimdal/lib/hx509/revoke.c for (k = 0; k < crl->crl.tbsCertList.revokedCertificates->val[j].crlEntryExtensions->len; k++)
tbsCertList 836 source4/heimdal/lib/hx509/revoke.c if (crl->crl.tbsCertList.revokedCertificates->val[j].crlEntryExtensions->val[k].critical)
tbsCertList 1442 source4/heimdal/lib/hx509/revoke.c c.tbsCertList.version = malloc(sizeof(*c.tbsCertList.version));
tbsCertList 1443 source4/heimdal/lib/hx509/revoke.c if (c.tbsCertList.version == NULL) {
tbsCertList 1448 source4/heimdal/lib/hx509/revoke.c *c.tbsCertList.version = 1;
tbsCertList 1450 source4/heimdal/lib/hx509/revoke.c ret = copy_AlgorithmIdentifier(sigalg, &c.tbsCertList.signature);
tbsCertList 1457 source4/heimdal/lib/hx509/revoke.c &c.tbsCertList.issuer);
tbsCertList 1463 source4/heimdal/lib/hx509/revoke.c c.tbsCertList.thisUpdate.element = choice_Time_generalTime;
tbsCertList 1464 source4/heimdal/lib/hx509/revoke.c c.tbsCertList.thisUpdate.u.generalTime = time(NULL) - 24 * 3600;
tbsCertList 1466 source4/heimdal/lib/hx509/revoke.c c.tbsCertList.nextUpdate = malloc(sizeof(*c.tbsCertList.nextUpdate));
tbsCertList 1467 source4/heimdal/lib/hx509/revoke.c if (c.tbsCertList.nextUpdate == NULL) {
tbsCertList 1478 source4/heimdal/lib/hx509/revoke.c c.tbsCertList.nextUpdate->element = choice_Time_generalTime;
tbsCertList 1479 source4/heimdal/lib/hx509/revoke.c c.tbsCertList.nextUpdate->u.generalTime = next;
tbsCertList 1482 source4/heimdal/lib/hx509/revoke.c c.tbsCertList.revokedCertificates =
tbsCertList 1483 source4/heimdal/lib/hx509/revoke.c calloc(1, sizeof(*c.tbsCertList.revokedCertificates));
tbsCertList 1484 source4/heimdal/lib/hx509/revoke.c if (c.tbsCertList.revokedCertificates == NULL) {
tbsCertList 1489 source4/heimdal/lib/hx509/revoke.c c.tbsCertList.crlExtensions = NULL;
tbsCertList 1491 source4/heimdal/lib/hx509/revoke.c ret = hx509_certs_iter(context, crl->revoked, add_revoked, &c.tbsCertList);
tbsCertList 1496 source4/heimdal/lib/hx509/revoke.c if (c.tbsCertList.revokedCertificates->len == 0) {
tbsCertList 1497 source4/heimdal/lib/hx509/revoke.c free(c.tbsCertList.revokedCertificates);
tbsCertList 1498 source4/heimdal/lib/hx509/revoke.c c.tbsCertList.revokedCertificates = NULL;
tbsCertList 1502 source4/heimdal/lib/hx509/revoke.c &c.tbsCertList, &size, ret);