/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/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()
|
D | x_crl.c | 141 ASN1_OPT(X509_CRL_INFO, nextUpdate, ASN1_TIME),
|
/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/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 535 #define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate)
|
/external/conscrypt/common/src/jni/main/cpp/ |
D | NativeCrypto.cpp | 4271 ASN1_TIME* nextUpdate = X509_CRL_get_nextUpdate(crl); in NativeCrypto_X509_CRL_get_nextUpdate() local 4272 JNI_TRACE("X509_CRL_get_nextUpdate(%p) => %p", crl, nextUpdate); in NativeCrypto_X509_CRL_get_nextUpdate() 4273 return reinterpret_cast<uintptr_t>(nextUpdate); in NativeCrypto_X509_CRL_get_nextUpdate()
|