id-ce-invalidityDate OBJECT IDENTIFIER ::= { id-ce 24 } invalidityDate ::= GeneralizedTime
Constructs the object on the base of the invalidity date value. this.date = date;
this.date = date;
Constructs the object on the base of its encoded form. super(encoding); date = (Date) ASN1.decode(encoding);
super(encoding); date = (Date) ASN1.decode(encoding);
Places the string representation of extension value into the StringBuffer object. buffer.append(prefix).append("Invalidity Date: [ ") //$NON-NLS-1$ .append(date).append(" ]\n"); //$NON-NLS-1$
buffer.append(prefix).append("Invalidity Date: [ ") //$NON-NLS-1$ .append(date).append(" ]\n"); //$NON-NLS-1$
Returns the invalidity date. return date;
return date;
Returns ASN.1 encoded form of this X.509 InvalidityDate value.returna byte array containing ASN.1 encoded form. if (encoding == null) { encoding = ASN1.encode(date); } return encoding;
if (encoding == null) { encoding = ASN1.encode(date); } return encoding;