HomeSort by: relevance | last modified time | path
    Searched refs:nextUpdate (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/crypto/external/apache2/openssl/dist/crypto/x509/
x509cset.c 54 return ossl_x509_set1_time(&x->crl.enc.modified, &x->crl.nextUpdate, tm);
98 return crl->crl.nextUpdate;
109 return crl->crl.nextUpdate;
  /src/crypto/external/bsd/openssl/dist/crypto/x509/
x509cset.c 48 return ossl_x509_set1_time(&x->crl.nextUpdate, tm);
91 return crl->crl.nextUpdate;
102 return crl->crl.nextUpdate;
x_crl.c 72 ASN1_OPT(X509_CRL_INFO, nextUpdate, ASN1_TIME),
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509/
x509cset.c 48 return x509_set1_time(&x->crl.nextUpdate, tm);
91 return crl->crl.nextUpdate;
102 return crl->crl.nextUpdate;
  /src/crypto/external/bsd/heimdal/dist/lib/hx509/
revoke.c 478 if (crl->tbsCertList.nextUpdate == NULL) {
480 "CRL missing nextUpdate");
484 t = _hx509_Time2time_t(crl->tbsCertList.nextUpdate);
793 if (ocsp->ocsp.tbsResponseData.responses.val[j].nextUpdate) {
794 if (*ocsp->ocsp.tbsResponseData.responses.val[j].nextUpdate < now)
1162 if (ocsp->ocsp.tbsResponseData.responses.val[i].nextUpdate)
1347 if (basic.tbsResponseData.responses.val[i].nextUpdate) {
1348 if (*basic.tbsResponseData.responses.val[i].nextUpdate < now)
1350 *expiration = *basic.tbsResponseData.responses.val[i].nextUpdate;
1576 c.tbsCertList.nextUpdate = malloc(sizeof(*c.tbsCertList.nextUpdate))
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/ocsp/
ocsp_local.h 139 * nextUpdate [0] EXPLICIT GeneralizedTime OPTIONAL,
146 ASN1_GENERALIZEDTIME *nextUpdate;
ocsp_prn.c 221 if (single->nextUpdate) {
224 if (!ASN1_GENERALIZEDTIME_print(bp, single->nextUpdate))
ocsp_asn.c 97 ASN1_EXP_OPT(OCSP_SINGLERESP, nextUpdate, ASN1_GENERALIZEDTIME, 0),
ocsp_cl.c 275 *nextupd = single->nextUpdate;
303 * Check validity of thisUpdate and nextUpdate fields. It is possible that
307 * accepting very old responses without a nextUpdate field an optional maxage
344 /* Check nextUpdate is valid and not more than nsec in the past */
356 /* Also don't allow nextUpdate to precede thisUpdate */
ocsp_srv.c 106 if (nextupd && !ASN1_TIME_to_generalizedtime(nextupd, &single->nextUpdate))
  /src/crypto/external/bsd/openssl/dist/crypto/ocsp/
ocsp_local.h 139 * nextUpdate [0] EXPLICIT GeneralizedTime OPTIONAL,
146 ASN1_GENERALIZEDTIME *nextUpdate;
ocsp_prn.c 216 if (single->nextUpdate) {
219 if (!ASN1_GENERALIZEDTIME_print(bp, single->nextUpdate))
ocsp_asn.c 97 ASN1_EXP_OPT(OCSP_SINGLERESP, nextUpdate, ASN1_GENERALIZEDTIME, 0),
ocsp_cl.c 275 *nextupd = single->nextUpdate;
303 * Check validity of thisUpdate and nextUpdate fields. It is possible that
307 * accepting very old responses without a nextUpdate field an optional maxage
344 /* Check nextUpdate is valid and not more than nsec in the past */
356 /* Also don't allow nextUpdate to precede thisUpdate */
ocsp_srv.c 107 !ASN1_TIME_to_generalizedtime(nextupd, &single->nextUpdate))
  /src/crypto/external/bsd/openssl.old/dist/crypto/ocsp/
ocsp_local.h 137 * nextUpdate [0] EXPLICIT GeneralizedTime OPTIONAL,
144 ASN1_GENERALIZEDTIME *nextUpdate;
ocsp_prn.c 216 if (single->nextUpdate) {
219 if (!ASN1_GENERALIZEDTIME_print(bp, single->nextUpdate))
ocsp_asn.c 97 ASN1_EXP_OPT(OCSP_SINGLERESP, nextUpdate, ASN1_GENERALIZEDTIME, 0),
ocsp_srv.c 108 !ASN1_TIME_to_generalizedtime(nextupd, &single->nextUpdate))
ocsp_cl.c 301 *nextupd = single->nextUpdate;
330 * Check validity of thisUpdate and nextUpdate fields. It is possible that
334 * accepting very old responses without a nextUpdate field an optional maxage
371 /* Check nextUpdate is valid and not more than nsec in the past */
383 /* Also don't allow nextUpdate to precede thisUpdate */
  /src/external/bsd/openldap/dist/contrib/slapd-modules/comp_match/
crl.c 581 if(COMPONENTNOT_NULL( ((ComponentTBSCertList*)csi_attr)->nextUpdate ) ) {
582 rc = MatchingComponentTime ( oid, (ComponentSyntaxInfo*)((ComponentTBSCertList*)csi_attr)->nextUpdate, (ComponentSyntaxInfo*)((ComponentTBSCertList*)csi_assert)->nextUpdate );
633 if ( ( comp->nextUpdate->identifier.bv_val && strncmp(comp->nextUpdate->identifier.bv_val, cr->cr_curr->ci_val.ci_identifier.bv_val,cr->cr_curr->ci_val.ci_identifier.bv_len) == 0 ) || ( strncmp(comp->nextUpdate->id_buf, cr->cr_curr->ci_val.ci_identifier.bv_val,cr->cr_curr->ci_val.ci_identifier.bv_len) == 0 ) ) {
635 return comp->nextUpdate;
638 return ExtractingComponentTime ( mem_op, cr, comp->nextUpdate );
757 rc = BDecComponentTime (mem_op, b, tagId1, elmtLen1, (&k->nextUpdate), &totalElmtsLen1, mode);
759 (k->nextUpdate)->identifier.bv_val = (k->nextUpdate)->id_buf
    [all...]
  /src/external/bsd/wpa/dist/src/crypto/
tls_openssl_ocsp.c 128 * nextUpdate [0] EXPLICIT GeneralizedTime OPTIONAL,
135 ASN1_GENERALIZEDTIME *nextUpdate;
196 ASN1_EXP_OPT(SingleResponse, nextUpdate, ASN1_GENERALIZEDTIME, 0),
368 "OpenSSL: Invalid OCSP response nextUpdate");
380 "OpenSSL: OCSP response nextUpdate before thisUpdate");
384 /* Both thisUpdate and nextUpdate are valid */
755 if (sresp->nextUpdate) {
756 txt = generalizedtime_str(sresp->nextUpdate);
758 wpa_printf(MSG_DEBUG, "OpenSSL: nextUpdate: %s",
809 matching_resp->nextUpdate)) {
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/include/crypto/
x509.h 83 ASN1_TIME *nextUpdate; /* nextUpdate field: optional */
  /src/crypto/external/apache2/openssl/dist/include/crypto/
x509.h 94 ASN1_TIME *nextUpdate; /* nextUpdate field: optional */
  /src/crypto/external/bsd/openssl/dist/include/crypto/
x509.h 94 ASN1_TIME *nextUpdate; /* nextUpdate field: optional */

Completed in 45 milliseconds

1 2