| |
|
| java.lang.Object org.apache.harmony.security.x509.ExtensionValue org.apache.harmony.security.x509.InvalidityDate
InvalidityDate | public class InvalidityDate extends ExtensionValue (Code) | | CRL Entry's Invalidity Date Extension (OID = 2.5.29.24).
id-ce-invalidityDate OBJECT IDENTIFIER ::= { id-ce 24 }
invalidityDate ::= GeneralizedTime
(as specified in RFC 3280 http://www.ietf.org/rfc/rfc3280.txt)
|
Field Summary | |
final public static ASN1Type | ASN1 ASN.1 Encoder/Decoder. |
Constructor Summary | |
public | InvalidityDate(Date date) Constructs the object on the base of the invalidity date value. | public | InvalidityDate(byte[] encoding) Constructs the object on the base of its encoded form. |
Method Summary | |
public void | dumpValue(StringBuffer buffer, String prefix) Places the string representation of extension value
into the StringBuffer object. | public Date | getDate() Returns the invalidity date. | public byte[] | getEncoded() Returns ASN.1 encoded form of this X.509 InvalidityDate value. |
InvalidityDate | public InvalidityDate(Date date)(Code) | | Constructs the object on the base of the invalidity date value.
|
InvalidityDate | public InvalidityDate(byte[] encoding) throws IOException(Code) | | Constructs the object on the base of its encoded form.
|
dumpValue | public void dumpValue(StringBuffer buffer, String prefix)(Code) | | Places the string representation of extension value
into the StringBuffer object.
|
getDate | public Date getDate()(Code) | | Returns the invalidity date.
|
getEncoded | public byte[] getEncoded()(Code) | | Returns ASN.1 encoded form of this X.509 InvalidityDate value.
a byte array containing ASN.1 encoded form. |
Fields inherited from org.apache.harmony.security.x509.ExtensionValue | protected byte[] encoding(Code)(Java Doc)
|
|
|
|