| |
|
| java.lang.Object org.apache.harmony.security.x509.ExtensionValue org.apache.harmony.security.x509.ExtendedKeyUsage
ExtendedKeyUsage | public class ExtendedKeyUsage extends ExtensionValue (Code) | | Extended Key Usage Extension (OID == 2.5.29.37).
The ASN.1 definition for Extended Key Usage Extension is:
id-ce-extKeyUsage OBJECT IDENTIFIER ::= { id-ce 37 }
ExtKeyUsageSyntax ::= SEQUENCE SIZE (1..MAX) OF KeyPurposeId
KeyPurposeId ::= OBJECT IDENTIFIER
(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 | ExtendedKeyUsage(List keys) Creates an object on the base of list of integer arrays representing
key purpose IDs. | public | ExtendedKeyUsage(byte[] encoding) Creates the extension 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 the encoded form of the object. | public List | getExtendedKeyUsage() Returns the list of string representation of OIDs corresponding
to key purpose IDs. |
ExtendedKeyUsage | public ExtendedKeyUsage(List keys)(Code) | | Creates an object on the base of list of integer arrays representing
key purpose IDs.
|
ExtendedKeyUsage | public ExtendedKeyUsage(byte[] encoding)(Code) | | Creates the extension 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 the encoded form of the object.
|
getExtendedKeyUsage | public List getExtendedKeyUsage() throws IOException(Code) | | Returns the list of string representation of OIDs corresponding
to key purpose IDs.
|
Fields inherited from org.apache.harmony.security.x509.ExtensionValue | protected byte[] encoding(Code)(Java Doc)
|
|
|
|