JavaTM 2 Platform
Standard Ed. 6

java.security.spec
類別 X509EncodedKeySpec

java.lang.Object
  繼承者 java.security.spec.EncodedKeySpec
      繼承者 java.security.spec.X509EncodedKeySpec
所有已實作的介面:
KeySpec

public class X509EncodedKeySpec
extends EncodedKeySpec

此類別表示根據 ASN.1 型別 SubjectPublicKeyInfo 進行編碼的公用密鑰的 ASN.1 編碼。X.509 標準中定義的 SubjectPublicKeyInfo 語法如下:

 SubjectPublicKeyInfo ::= SEQUENCE {
   algorithm AlgorithmIdentifier,
   subjectPublicKey BIT STRING }
 

從以下版本開始:
1.2
另請參見:
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
 

建構子詳細資訊

X509EncodedKeySpec

public X509EncodedKeySpec(byte[] encodedKey)
根據給定的編碼密鑰創建一個新的 X509EncodedKeySpec。

參數:
encodedKey - 假設按照 X.509 標準對其進行編碼的密鑰。複製陣列的內容,以防隨後進行修改。
拋出:
NullPointerException - 如果 encodedKey 為 null。
方法詳細資訊

getEncoded

public byte[] getEncoded()
返回按照 X.509 標準進行編碼的密鑰的位元組。

覆寫:
類別 EncodedKeySpec 中的 getEncoded
返回:
密鑰的 X.509 編碼。每次調用此方法時,都返回一個新陣列。

getFormat

public final String getFormat()
返回與此密鑰規範關聯的編碼格式的名稱。

指定者:
類別 EncodedKeySpec 中的 getFormat
返回:
字元串 "X.509"

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

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