| java.lang.Object java.security.spec.EncodedKeySpec java.security.spec.X509EncodedKeySpec
X509EncodedKeySpec | public class X509EncodedKeySpec extends EncodedKeySpec (Code) | | This class represents the ASN.1 encoding of a public key,
encoded according to the ASN.1 type SubjectPublicKeyInfo .
The SubjectPublicKeyInfo syntax is defined in the X.509
standard as follows:
SubjectPublicKeyInfo ::= SEQUENCE {
algorithm AlgorithmIdentifier,
subjectPublicKey BIT STRING }
version: 1.17, 01/23/03 See Also: java.security.Key See Also: java.security.KeyFactory See Also: KeySpec See Also: EncodedKeySpec since: 1.2 |
Constructor Summary | |
public | X509EncodedKeySpec(byte[] encodedKey) Creates a new X509EncodedKeySpec with the given encoded key. |
Method Summary | |
public byte[] | getEncoded() Returns the key bytes, encoded according to the X.509 standard. | final public String | getFormat() Returns the name of the encoding format associated with this
key specification. |
X509EncodedKeySpec | public X509EncodedKeySpec(byte[] encodedKey)(Code) | | Creates a new X509EncodedKeySpec with the given encoded key.
Parameters: encodedKey - the key, which is assumed to beencoded according to the X.509 standard. |
getEncoded | public byte[] getEncoded()(Code) | | Returns the key bytes, encoded according to the X.509 standard.
the X.509 encoding of the key. |
getFormat | final public String getFormat()(Code) | | Returns the name of the encoding format associated with this
key specification.
the string "X.509" . |
|
|