Lines Matching defs:notBefore
46 * notBefore and notAfter. The private key associated with the
52 * notBefore [0] GeneralizedTime OPTIONAL,
79 private Date notBefore = null;
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)
117 this.notBefore = notBefore;
151 if (notBefore != null) {
153 "Duplicate notBefore in PrivateKeyUsage.");
157 notBefore = str.getGeneralizedTime();
180 ((notBefore == null) ? "" : "From: " + notBefore.toString() + ", ")
214 if (notBefore.after(now)) {
216 notBefore.toString());
251 notBefore = (Date)obj;
267 return (new Date(notBefore.getTime()));
282 notBefore = null;