HomeSort by relevance Sort by last modified time
    Searched refs:nextUpdate (Results 1 - 12 of 12) sorted by null

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ocsp/
SingleResponse.java 20 private ASN1GeneralizedTime nextUpdate;
28 * @param nextUpdate
35 ASN1GeneralizedTime nextUpdate,
38 this(certID, certStatus, thisUpdate, nextUpdate, Extensions.getInstance(singleExtensions));
45 ASN1GeneralizedTime nextUpdate,
51 this.nextUpdate = nextUpdate;
64 this.nextUpdate = ASN1GeneralizedTime.getInstance(
75 this.nextUpdate = ASN1GeneralizedTime.getInstance(o, true);
123 return nextUpdate;
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
BasicOCSPRespBuilder.java 43 ASN1GeneralizedTime nextUpdate;
50 Date nextUpdate,
81 if (nextUpdate != null)
83 this.nextUpdate = new DERGeneralizedTime(nextUpdate);
87 this.nextUpdate = null;
96 return new SingleResponse(certId.toASN1Primitive(), certStatus, thisUpdate, nextUpdate, extensions);
159 * @param nextUpdate date when next update should be requested
166 Date nextUpdate,
169 this.addResponse(certID, certStatus, new Date(), nextUpdate, singleExtensions)
    [all...]
  /external/boringssl/src/crypto/x509/
x509cset.c 105 in = x->crl->nextUpdate;
109 M_ASN1_TIME_free(x->crl->nextUpdate);
110 x->crl->nextUpdate = in;
145 return crl->crl->nextUpdate;
x_crl.c 141 ASN1_OPT(X509_CRL_INFO, nextUpdate, ASN1_TIME),
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
TBSCertList.java 27 * nextUpdate Time OPTIONAL,
144 Time nextUpdate;
198 nextUpdate = Time.getInstance(seq.getObjectAt(seqPos++));
245 return nextUpdate;
292 if (nextUpdate != null)
294 v.add(nextUpdate);
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/
TBSCertList.java 28 * nextUpdate Time OPTIONAL,
149 Time nextUpdate;
203 nextUpdate = Time.getInstance(seq.getObjectAt(seqPos++));
250 return nextUpdate;
297 if (nextUpdate != null)
299 v.add(nextUpdate);
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLX509CRL.java 52 private final Date nextUpdate;
59 nextUpdate = toDate(NativeCrypto.X509_CRL_get_nextUpdate(mContext, this));
281 return (Date) nextUpdate.clone();
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
OpenSSLX509CRL.java 53 private final Date nextUpdate;
60 nextUpdate = toDate(NativeCrypto.X509_CRL_get_nextUpdate(mContext, this));
282 return (Date) nextUpdate.clone();
  /external/wpa_supplicant_8/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),
374 "OpenSSL: Invalid OCSP response nextUpdate");
386 "OpenSSL: OCSP response nextUpdate before thisUpdate");
390 /* Both thisUpdate and nextUpdate are valid */
760 if (sresp->nextUpdate) {
761 txt = generalizedtime_str(sresp->nextUpdate);
763 wpa_printf(MSG_DEBUG, "OpenSSL: nextUpdate: %s",
814 matching_resp->nextUpdate)) {
    [all...]
  /external/scapy/scapy/layers/tls/
cert.py 782 self.nextUpdate = None
786 nextUpdate = tbsCertList.next_update.val
787 if nextUpdate[-1] == "Z":
788 nextUpdate = nextUpdate[:-1]
790 self.nextUpdate = time.strptime(nextUpdate, "%y%m%d%H%M%S")
793 self.nextUpdate_str_simple = time.strftime("%x", self.nextUpdate)
835 print("nextUpdate: %s" % self.nextUpdate_str)
    [all...]
  /external/boringssl/src/include/openssl/
x509.h 409 ASN1_TIME *nextUpdate;
537 #define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate)
    [all...]
  /external/conscrypt/common/src/jni/main/cpp/conscrypt/
native_crypto.cc     [all...]

Completed in 5313 milliseconds