|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object java.security.KeyStore.PrivateKeyEntry
public static final class KeyStore.PrivateKeyEntry
保存 PrivateKey
和相應證書鏈的 KeyStore
項。
建構子摘要 | |
---|---|
KeyStore.PrivateKeyEntry(PrivateKey privateKey,
Certificate[] chain)
建構帶 PrivateKey 和相應證書鏈的 PrivateKeyEntry 。 |
方法摘要 | |
---|---|
Certificate |
getCertificate()
從此項中的證書鏈獲取終端實體 Certificate 。 |
Certificate[] |
getCertificateChain()
從此項獲取 Certificate 鏈。 |
PrivateKey |
getPrivateKey()
從此項獲取 PrivateKey 。 |
String |
toString()
返回此 PrivateKeyEntry 的字元串表示形式。 |
從類別 java.lang.Object 繼承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
建構子詳細資訊 |
---|
public KeyStore.PrivateKeyEntry(PrivateKey privateKey, Certificate[] chain)
PrivateKey
和相應證書鏈的 PrivateKeyEntry
。
在將指定的 chain
存儲進新的 PrivateKeyEntry
物件前將其複製。
privateKey
- PrivateKey
chain
- 表示證書鏈的 Certificate
陣列。證書鏈必須是有序的並且在索引 0 處包含與私鑰相對應的 Certificate
。
NullPointerException
- 如果 privateKey
或 chain
為 null
IllegalArgumentException
- 如果指定的證書鏈長度為 0、指定的證書鏈不包含相同型別的 Certificate
、或者 PrivateKey
演算法與在終端實體 Certificate
(索引 0 處)中 PublicKey
的演算法不比對方法詳細資訊 |
---|
public PrivateKey getPrivateKey()
PrivateKey
。
PrivateKey
public Certificate[] getCertificateChain()
Certificate
鏈。
存儲的鏈在返回前被複製。
Certificate
陣列。如果證書的型別是 X.509,返回陣列的運行時型別是 X509Certificate[]
。public Certificate getCertificate()
Certificate
。
Certificate
(索引 0 處)。如果證書的型別是 X.509,返回證書的運行時型別是 X509Certificate
。public String toString()
Object
中的 toString
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。