Home | History | Annotate | Download | only in x509

Lines Matching defs:date

21 import java.util.Date;
26 * CRL Entry's Invalidity Date Extension (OID = 2.5.29.24).
36 // invalidity date value
37 private final Date date;
40 * Constructs the object on the base of the invalidity date value.
42 public InvalidityDate(Date date) {
43 this.date = date;
51 date = (Date) ASN1.decode(encoding);
55 * Returns the invalidity date.
57 public Date getDate() {
58 return date;
67 encoding = ASN1.encode(date);
77 buffer.append(prefix).append("Invalidity Date: [ ")
78 .append(date).append(" ]\n");