/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ocsp/ |
D | SingleResponse.java | 20 private ASN1GeneralizedTime nextUpdate; field in SingleResponse 35 ASN1GeneralizedTime nextUpdate, in SingleResponse() argument 38 this(certID, certStatus, thisUpdate, nextUpdate, Extensions.getInstance(singleExtensions)); in SingleResponse() 45 ASN1GeneralizedTime nextUpdate, in SingleResponse() argument 51 this.nextUpdate = nextUpdate; in SingleResponse() 64 this.nextUpdate = ASN1GeneralizedTime.getInstance( in SingleResponse() 75 this.nextUpdate = ASN1GeneralizedTime.getInstance(o, true); in SingleResponse() 123 return nextUpdate; in getNextUpdate() 150 if (nextUpdate != null) in toASN1Primitive() 152 v.add(new DERTaggedObject(true, 0, nextUpdate)); in toASN1Primitive()
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/ |
D | BasicOCSPRespBuilder.java | 43 ASN1GeneralizedTime nextUpdate; field in BasicOCSPRespBuilder.ResponseObject 50 Date nextUpdate, in ResponseObject() argument 81 if (nextUpdate != null) in ResponseObject() 83 this.nextUpdate = new DERGeneralizedTime(nextUpdate); in ResponseObject() 87 this.nextUpdate = null; in ResponseObject() 96 …return new SingleResponse(certId.toASN1Primitive(), certStatus, thisUpdate, nextUpdate, extensions… in toResponse() 166 Date nextUpdate, in addResponse() argument 169 this.addResponse(certID, certStatus, new Date(), nextUpdate, singleExtensions); in addResponse() 186 Date nextUpdate) in addResponse() argument 188 this.addResponse(certID, certStatus, thisUpdate, nextUpdate, null); in addResponse() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
D | TBSCertList.java | 144 Time nextUpdate; field in TBSCertList 198 nextUpdate = Time.getInstance(seq.getObjectAt(seqPos++)); in TBSCertList() 245 return nextUpdate; in getNextUpdate() 292 if (nextUpdate != null) in toASN1Primitive() 294 v.add(nextUpdate); in toASN1Primitive()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/ |
D | TBSCertList.java | 149 Time nextUpdate; field in TBSCertList 203 nextUpdate = Time.getInstance(seq.getObjectAt(seqPos++)); in TBSCertList() 250 return nextUpdate; in getNextUpdate() 297 if (nextUpdate != null) in toASN1Primitive() 299 v.add(nextUpdate); in toASN1Primitive()
|
/external/boringssl/src/crypto/x509/ |
D | x509cset.c | 105 in = x->crl->nextUpdate; in X509_CRL_set_nextUpdate() 109 M_ASN1_TIME_free(x->crl->nextUpdate); in X509_CRL_set_nextUpdate() 110 x->crl->nextUpdate = in; in X509_CRL_set_nextUpdate() 145 return crl->crl->nextUpdate; in X509_CRL_get0_nextUpdate()
|
D | x_crl.c | 141 ASN1_OPT(X509_CRL_INFO, nextUpdate, ASN1_TIME),
|
/external/scapy/scapy/layers/tls/ |
D | 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)
|
/external/wpa_supplicant_8/src/crypto/ |
D | tls_openssl_ocsp.c | 135 ASN1_GENERALIZEDTIME *nextUpdate; member 196 ASN1_EXP_OPT(SingleResponse, nextUpdate, ASN1_GENERALIZEDTIME, 0), 760 if (sresp->nextUpdate) { in check_ocsp_resp() 761 txt = generalizedtime_str(sresp->nextUpdate); in check_ocsp_resp() 814 matching_resp->nextUpdate)) { in check_ocsp_resp()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | OpenSSLX509CRL.java | 52 private final Date nextUpdate; field in OpenSSLX509CRL 59 nextUpdate = toDate(NativeCrypto.X509_CRL_get_nextUpdate(mContext, this)); in OpenSSLX509CRL() 281 return (Date) nextUpdate.clone(); in getNextUpdate()
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | OpenSSLX509CRL.java | 53 private final Date nextUpdate; field in OpenSSLX509CRL 60 nextUpdate = toDate(NativeCrypto.X509_CRL_get_nextUpdate(mContext, this)); in OpenSSLX509CRL() 282 return (Date) nextUpdate.clone(); in getNextUpdate()
|
/external/scapy/test/ |
D | cert.uts | 289 = CRL class : Checking nextUpdate date extraction in tuple format 290 x.nextUpdate == (2007, 2, 17, 23, 59, 59, 5, 48, -1)
|
D | x509.uts | 250 assert(singleResponse.nextUpdate == ASN1_GENERALIZED_TIME("20160921112500Z"))
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
D | CertPathReviewerMessages.properties | 328 # {1} nextUpdate of the CRL 337 # {1} nextUpdate of the CRL 345 # {1} nextUpdate of the CRL 354 # {1} nextUpdate of the CRL
|
/external/boringssl/src/include/openssl/ |
D | x509.h | 409 ASN1_TIME *nextUpdate; member 537 #define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate)
|
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | native_crypto.cc | 4631 ASN1_TIME* nextUpdate = X509_CRL_get_nextUpdate(crl); in NativeCrypto_X509_CRL_get_nextUpdate() local 4632 JNI_TRACE("X509_CRL_get_nextUpdate(%p) => %p", crl, nextUpdate); in NativeCrypto_X509_CRL_get_nextUpdate() 4633 return reinterpret_cast<uintptr_t>(nextUpdate); in NativeCrypto_X509_CRL_get_nextUpdate()
|