| |
|
| java.lang.Object org.apache.harmony.security.x509.ExtensionValue org.apache.harmony.security.x509.SubjectKeyIdentifier
SubjectKeyIdentifier | public class SubjectKeyIdentifier extends ExtensionValue (Code) | | Subject Key Identifier Extension (OID = 2.5.29.14).
The ASN.1 definition for extension is:
id-ce-subjectKeyIdentifier OBJECT IDENTIFIER ::= { id-ce 14 }
SubjectKeyIdentifier ::= KeyIdentifier
KeyIdentifier ::= OCTET STRING
(as specified in RFC 3280 http://www.ietf.org/rfc/rfc3280.txt)
|
Constructor Summary | |
public | SubjectKeyIdentifier(byte[] keyIdentifier) Creates the object on the base of the value of key identifier. |
Method Summary | |
public static SubjectKeyIdentifier | decode(byte[] encoding) Creates an object on the base of its encoded form. | 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 extension. |
SubjectKeyIdentifier | public SubjectKeyIdentifier(byte[] keyIdentifier)(Code) | | Creates the object on the base of the value of key identifier.
|
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 extension.
a byte array containing ASN.1 encoded form. |
Fields inherited from org.apache.harmony.security.x509.ExtensionValue | protected byte[] encoding(Code)(Java Doc)
|
|
|
|