JavaTM 2 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 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only