Lines Matching defs:date
38 * The invalidity date is a non-critical CRL entry extension that
39 * provides the date on which it is known or suspected that the private
41 * This date may be earlier than the revocation date in the CRL entry,
42 * which is the date at which the CA processed the revocation. When a
44 * date may precede the date of issue of earlier CRLs, but the
45 * revocation date SHOULD NOT precede the date of issue of earlier CRLs.
67 public static final String DATE = "date";
69 private Date date;
72 if (date == null) {
77 dos.putGeneralizedTime(date);
82 * Create a InvalidityDateExtension with the passed in date.
85 * @param date the invalidity date
87 public InvalidityDateExtension(Date date) throws IOException {
88 this(false, date);
92 * Create a InvalidityDateExtension with the passed in date.
95 * @param date the invalidity date
97 public InvalidityDateExtension(boolean critical, Date date)
101 this.date = date;
119 this.date = val.getGeneralizedTime();
130 date = (Date) obj;
143 if (date == null) {
146 return (new Date(date.getTime())); // clone
159 date = null;
171 return super.toString() + " Invalidity Date: " + String.valueOf(date);