Searched refs:thisUpdate (Results 1 - 3 of 3) sorted by relevance

/openjdk9/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DOCSPResponse.java102 * thisUpdate GeneralizedTime,
601 sr.thisUpdate + until);
607 // [ thisUpdate - MAX_CLOCK_SKEW,
608 // MAX(thisUpdate, nextUpdate) + MAX_CLOCK_SKEW ]
609 if (nowPlusSkew.before(sr.thisUpdate) ||
611 sr.nextUpdate != null ? sr.nextUpdate : sr.thisUpdate))
773 private final Date thisUpdate; field in class:OCSPResponse.SingleResponse
825 thisUpdate = tmp.getGeneralizedTime();
827 debug.println("thisUpdate: " + thisUpdate);
[all...]
/openjdk9/jdk/src/java.base/share/classes/sun/security/x509/
H A DX509CRLImpl.java76 * thisUpdate ChoiceOfTime,
105 private Date thisUpdate = null; field in class:X509CRLImpl
193 this.thisUpdate = thisDate;
212 this.thisUpdate = thisDate;
298 if (thisUpdate.getTime() < YR_2050)
299 tmp.putUTCTime(thisUpdate);
301 tmp.putGeneralizedTime(thisUpdate);
558 if (thisUpdate != null)
560 .append(thisUpdate)
694 * Gets the thisUpdate dat
[all...]
/openjdk9/jdk/test/java/security/testlibrary/
H A DSimpleOCSPServer.java1463 private final Date thisUpdate; field in class:SimpleOCSPServer.LocalOcspResponse.LocalSingleResponse
1472 // For now, we'll keep things simple and make the thisUpdate
1474 thisUpdate = producedAtDate;
1507 sb.append(utcDateFmt.format(thisUpdate)).append("\n");
1565 srStream.putGeneralizedTime(thisUpdate);

Completed in 201 milliseconds