JavaTM Platform
Standard Ed. 6

java.security.spec
类 PKCS8EncodedKeySpec

java.lang.Object
  继承者 java.security.spec.EncodedKeySpec
      继承者 java.security.spec.PKCS8EncodedKeySpec
所有已实现的接口:
KeySpec

public class PKCS8EncodedKeySpec
     
extends EncodedKeySpec

此类表示按照 ASN.1 类型 PrivateKeyInfo 进行编码的专用密钥的 ASN.1 编码。PKCS#8 中定义的 PrivateKeyInfo 语法如下:

 PrivateKeyInfo ::= SEQUENCE {
   version Version,
   privateKeyAlgorithm PrivateKeyAlgorithmIdentifier,
   privateKey PrivateKey,
   attributes [0] IMPLICIT Attributes OPTIONAL }

 Version ::= INTEGER

 PrivateKeyAlgorithmIdentifier ::= AlgorithmIdentifier

 PrivateKey ::= OCTET STRING

 Attributes ::= SET OF Attribute
 

从以下版本开始:
1.2
另请参见:
Key, KeyFactory, KeySpec, EncodedKeySpec, X509EncodedKeySpec

构造方法摘要
PKCS8EncodedKeySpec(byte[] encodedKey)
          根据给定的编码密钥创建一个新的 PKCS8EncodedKeySpec。
 
方法摘要
 byte[] getEncoded()
          返回按照 PKCS #8 标准编码的密钥字节。
 String getFormat()
          返回与此密钥规范关联的编码格式的名称。
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

PKCS8EncodedKeySpec

public PKCS8EncodedKeySpec(byte[] encodedKey)
根据给定的编码密钥创建一个新的 PKCS8EncodedKeySpec。

参数:
encodedKey - 假设按照 PKCS #8 标准对其进行编码的密钥。复制数组的内容,以防随后的修改。
抛出:
NullPointerException - 如果 encodedKey 为 null。
方法详细信息

getEncoded

public byte[] getEncoded()
返回按照 PKCS #8 标准编码的密钥字节。

覆盖:
EncodedKeySpec 中的 getEncoded
返回:
密钥的 PKCS #8 编码。每次调用此方法时,都返回一个新数组。

getFormat

public final String getFormat()
返回与此密钥规范关联的编码格式的名称。

指定者:
EncodedKeySpec 中的 getFormat
返回:
字符串 "PKCS#8"

JavaTM Platform
Standard Ed. 6

提交错误或意见
有关更多的 API 参考资料和开发人员文档,请参阅 Java SE 开发人员文档。该文档包含更详细的、面向开发人员的描述,以及总体概述、术语定义、使用技巧和工作代码示例。

版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策