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

/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DAdaptableX509CertSelector.java49 private Date startDate; field in class:AdaptableX509CertSelector
78 * @param startDate the start date of a validity period that must fall
83 void setValidityPeriod(Date startDate, Date endDate) { argument
84 this.startDate = startDate;
150 if (startDate != null) {
152 xcert.checkValidity(startDate);
193 if (startDate != null) {
194 copy.startDate = (Date)startDate
[all...]
/libcore/luni/src/test/java/libcore/java/security/cert/
H A DCertificateFactoryTest.java525 Date startDate = new Date();
563 certGen.setNotBefore(startDate);
H A DX509CertificateTest.java180 final Date startDate = sdf.parse(line.substring(index + 1));
187 assertTrue(startDate.before(endDate));
188 assertTrue(endDate.after(startDate));
190 return new Date[] { startDate, endDate };

Completed in 132 milliseconds