Home
last modified time | relevance | path

Searched refs:nextUpdate (Results 1 – 9 of 9) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ocsp/
DSingleResponse.java20 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/
DBasicOCSPRespBuilder.java43 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/
DTBSCertList.java144 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/
Dx509cset.c105 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()
Dx_crl.c141 ASN1_OPT(X509_CRL_INFO, nextUpdate, ASN1_TIME),
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl_ocsp.c135 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/
DCertPathReviewerMessages.properties328 # {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/
Dx509.h409 ASN1_TIME *nextUpdate; member
535 #define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate)
/external/conscrypt/common/src/jni/main/cpp/
DNativeCrypto.cpp4271 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()