JavaTM 2 Platform
Standard Ed. 6

java.security
類別 KeyPair

java.lang.Object
  繼承者 java.security.KeyPair
所有已實作的介面:
Serializable

public final class KeyPair
extends Object
implements Serializable

此類別是簡單的密鑰對(公鑰和私鑰)持有者。它沒有增強任何安全性,另外初始化時應該將它當作 PrivateKey 對待。

另請參見:
PublicKey, PrivateKey, 序列化表格

建構子摘要
KeyPair(PublicKey publicKey, PrivateKey privateKey)
          根據給定的公鑰和私鑰建構密鑰對。
 
方法摘要
 PrivateKey getPrivate()
          返回對此密鑰對的私鑰元件的參考。
 PublicKey getPublic()
          返回對此密鑰對的公鑰元件的參考。
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

建構子詳細資訊

KeyPair

public KeyPair(PublicKey publicKey,
               PrivateKey privateKey)
根據給定的公鑰和私鑰建構密鑰對。

注意,此建構子只在產生的密鑰對中存儲對公鑰和私鑰元件的參考。這是安全的,因為 Key 物件是不可變的。

參數:
publicKey - 公鑰。
privateKey - 私鑰。
方法詳細資訊

getPublic

public PublicKey getPublic()
返回對此密鑰對的公鑰元件的參考。

返回:
對公鑰的一個參考。

getPrivate

public PrivateKey getPrivate()
返回對此密鑰對的私鑰元件的參考。

返回:
對私鑰的一個參考。

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

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