|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object java.security.spec.EncodedKeySpec java.security.spec.X509EncodedKeySpec
public class X509EncodedKeySpec
此类表示根据 ASN.1 类型 SubjectPublicKeyInfo
进行编码的公用密钥的 ASN.1 编码。X.509 标准中定义的 SubjectPublicKeyInfo
语法如下:
SubjectPublicKeyInfo ::= SEQUENCE { algorithm AlgorithmIdentifier, subjectPublicKey BIT STRING }
Key
,
KeyFactory
,
KeySpec
,
EncodedKeySpec
,
PKCS8EncodedKeySpec
构造方法摘要 | |
---|---|
X509EncodedKeySpec(byte[] encodedKey) 根据给定的编码密钥创建一个新的 X509EncodedKeySpec。 |
方法摘要 | |
---|---|
byte[] |
getEncoded() 返回按照 X.509 标准进行编码的密钥的字节。 |
String |
getFormat() 返回与此密钥规范关联的编码格式的名称。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
public X509EncodedKeySpec(byte[] encodedKey)
encodedKey
- 假设按照 X.509 标准对其进行编码的密钥。复制数组的内容,以防随后进行修改。
NullPointerException
- 如果
encodedKey
为 null。
方法详细信息 |
---|
public byte[] getEncoded()
EncodedKeySpec
中的
getEncoded
public final String getFormat()
EncodedKeySpec
中的
getFormat
"X.509"
。
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。