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

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
TBSCertList.java 54 * thisUpdate Time,
74 /** the value of thisUpdate of the structure */
75 private final Date thisUpdate;
195 Name issuer, Date thisUpdate, Date nextUpdate,
201 this.thisUpdate = thisUpdate;
230 * Returns the value of thisUpdate field of the structure.
233 return thisUpdate;
275 && thisUpdate.getTime() / 1000
276 == that.thisUpdate.getTime() / 100
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
CertificateListTest.java 66 private static Date thisUpdate = new Date();
69 nextUpdate = new Date(thisUpdate.getTime()+100000);
134 new TBSCertList(2, signature, issuer, thisUpdate,
162 new TBSCertList(signature, issuer, thisUpdate);
169 tbscl = new TBSCertList(2, signature, issuer, thisUpdate,
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
TBSCertList.java 22 * thisUpdate Time,
127 Time thisUpdate;
177 thisUpdate = Time.getInstance(seq.getObjectAt(seqPos++));
222 return thisUpdate;
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CRLSelectorTest.java 59 private Date thisUpdate = null;
66 public TestCRL(Date thisUpdate, Date nextUpdate) {
67 setUpdateDates(thisUpdate, nextUpdate);
74 public void setUpdateDates(Date thisUpdate, Date nextUpdate) {
75 this.thisUpdate = thisUpdate;
143 return thisUpdate;
  /libcore/luni/src/test/java/tests/security/cert/
X509CRLSelector2Test.java 518 private Date thisUpdate = null;
529 public TestCRL(Date thisUpdate, Date nextUpdate) {
530 setUpdateDates(thisUpdate, nextUpdate);
537 public void setUpdateDates(Date thisUpdate, Date nextUpdate) {
538 this.thisUpdate = thisUpdate;
605 return thisUpdate;
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/
X509CRLImplTest.java 91 private static Date thisUpdate = new Date();
94 nextUpdate = new Date(thisUpdate.getTime()+100000);
202 new TBSCertList(2, signature, issuer, thisUpdate,
328 assertTrue("Incorrect thisUpdate value",
329 thisUpdate.getTime()/1000 == crl.getThisUpdate().getTime()/1000);
  /external/openssl/crypto/ocsp/
ocsp_asn.c 143 ASN1_SIMPLE(OCSP_SINGLERESP, thisUpdate, ASN1_GENERALIZEDTIME),
ocsp_cl.c 279 if(thisupd) *thisupd = single->thisUpdate;
305 /* Check validity of thisUpdate and nextUpdate fields. It is possible that the request will
309 * parameter specifies the maximum age the thisUpdate field can be.
317 /* Check thisUpdate is valid and not more than nsec in the future */
332 /* If maxsec specified check thisUpdate is not more than maxsec in the past */
363 /* Also don't allow nextUpdate to precede thisUpdate */
ocsp_prn.c 259 if (!ASN1_GENERALIZEDTIME_print(bp, single->thisUpdate))
ocsp_srv.c 143 if (!ASN1_TIME_to_generalizedtime(thisupd, &single->thisUpdate))
ocsp.h 249 * thisUpdate GeneralizedTime,
257 ASN1_GENERALIZEDTIME *thisUpdate;
  /external/openssl/include/openssl/
ocsp.h 249 * thisUpdate GeneralizedTime,
257 ASN1_GENERALIZEDTIME *thisUpdate;

Completed in 2310 milliseconds