| |
|
| java.lang.Object org.apache.harmony.security.x509.ExtensionValue org.apache.harmony.security.x509.CRLNumber
CRLNumber | public class CRLNumber extends ExtensionValue (Code) | | CRL Entry's CRL Number Extension (OID = 2.5.29.20).
id-ce-cRLNumber OBJECT IDENTIFIER ::= { id-ce 20 }
CRLNumber ::= INTEGER (0..MAX)
(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 | CRLNumber(BigInteger number) Constructs the object on the base of the invalidity date value. | public | CRLNumber(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 byte[] | getEncoded() Returns ASN.1 encoded form of this X.509 CRLNumber value. | public BigInteger | getNumber() Returns the invalidity date. |
CRLNumber | public CRLNumber(BigInteger number)(Code) | | Constructs the object on the base of the invalidity date value.
|
CRLNumber | public CRLNumber(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.
|
getEncoded | public byte[] getEncoded()(Code) | | Returns ASN.1 encoded form of this X.509 CRLNumber value.
a byte array containing ASN.1 encoded form. |
Fields inherited from org.apache.harmony.security.x509.ExtensionValue | protected byte[] encoding(Code)(Java Doc)
|
|
|
|