Searched defs:notAfter (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCertificateValidity.java53 public static final String NOT_AFTER = "notAfter";
58 private Date notAfter; field in class:CertificateValidity
67 return (new Date(notAfter.getTime()));
94 notAfter = derVal.data.getUTCTime();
96 notAfter = derVal.data.getGeneralizedTime();
112 * @param notAfter the date and time after which the certificate is
115 public CertificateValidity(Date notBefore, Date notAfter) { argument
117 this.notAfter = notAfter;
135 if (notBefore == null || notAfter
[all...]
H A DPrivateKeyUsageExtension.java46 * notBefore and notAfter. The private key associated with the
53 * notAfter [1] GeneralizedTime OPTIONAL }
80 private Date notAfter = null; field in class:PrivateKeyUsageExtension
84 if (notBefore == null && notAfter == null) {
97 if (notAfter != null) {
99 tmp.putGeneralizedTime(notAfter);
112 * @param notAfter the date/time after which the private key
115 public PrivateKeyUsageExtension(Date notBefore, Date notAfter) argument
118 this.notAfter = notAfter;
[all...]

Completed in 626 milliseconds