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

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCertificateValidity.java52 public static final String NOT_BEFORE = "notBefore";
57 private Date notBefore; field in class:CertificateValidity
62 return (new Date(notBefore.getTime()));
86 notBefore = derVal.data.getUTCTime();
88 notBefore = derVal.data.getGeneralizedTime();
110 * @param notBefore the date and time before which the certificate
115 public CertificateValidity(Date notBefore, Date notAfter) { argument
116 this.notBefore = notBefore;
135 if (notBefore
[all...]
H A DPrivateKeyUsageExtension.java46 * notBefore and notAfter. The private key associated with the
52 * notBefore [0] GeneralizedTime OPTIONAL,
79 private Date notBefore = null; field in class:PrivateKeyUsageExtension
84 if (notBefore == null && notAfter == null) {
91 if (notBefore != null) {
93 tmp.putGeneralizedTime(notBefore);
110 * @param notBefore the date/time before which the private key
115 public PrivateKeyUsageExtension(Date notBefore, Date notAfter) argument
117 this.notBefore = notBefore;
[all...]

Completed in 23 milliseconds