| |
|
| java.lang.Object org.apache.harmony.security.x509.ExtensionValue org.apache.harmony.security.x509.InhibitAnyPolicy
InhibitAnyPolicy | public class InhibitAnyPolicy extends ExtensionValue (Code) | | InhibitAnyPolicy Certificate Extension (OID = 2.5.29.54)
Its ASN.1 notation is as follows:
id-ce-inhibitAnyPolicy OBJECT IDENTIFIER ::= { id-ce 54 }
InhibitAnyPolicy ::= SkipCerts
SkipCerts ::= INTEGER (0..MAX)
(as specified in RFC 3280 http://www.ietf.org/rfc/rfc3280.txt).
|
Constructor Summary | |
public | InhibitAnyPolicy(int skipCerts) Create the object on the base of SkipCerts value. | public | InhibitAnyPolicy(byte[] encoding) Creates an 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 the object. | public int | getSkipCerts() Return the value of the extension. |
InhibitAnyPolicy | public InhibitAnyPolicy(int skipCerts)(Code) | | Create the object on the base of SkipCerts value.
|
InhibitAnyPolicy | public InhibitAnyPolicy(byte[] encoding) throws IOException(Code) | | Creates an 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 the object.
a byte array containing ASN.1 encoded form. |
getSkipCerts | public int getSkipCerts()(Code) | | Return the value of the extension.
|
Fields inherited from org.apache.harmony.security.x509.ExtensionValue | protected byte[] encoding(Code)(Java Doc)
|
|
|
|