public static final class KeyStore.PrivateKeyEntry extends Object implements KeyStore.Entry
KeyStore
条目,其中包含一个
PrivateKey
和相应的证书链。
KeyStore.Entry.Attribute
Constructor and Description |
---|
PrivateKeyEntry(PrivateKey privateKey, Certificate[] chain)
构造一个
PrivateKeyEntry 与
PrivateKey 和相应的证书链。
|
PrivateKeyEntry(PrivateKey privateKey, Certificate[] chain, Set<KeyStore.Entry.Attribute> attributes)
构造一个
PrivateKeyEntry 与
PrivateKey 和相应的证书链和相关的条目属性。
|
Modifier and Type | Method and Description |
---|---|
Set<KeyStore.Entry.Attribute> |
getAttributes()
检索与条目关联的属性。
|
Certificate |
getCertificate()
从该条目中的证书链中获取终端实体
Certificate 。
|
Certificate[] |
getCertificateChain()
从此条目获取
Certificate 链。
|
PrivateKey |
getPrivateKey()
从此条目获取
PrivateKey 。
|
String |
toString()
返回此PrivateKeyEntry的字符串表示形式。
|
public PrivateKeyEntry(PrivateKey privateKey, Certificate[] chain)
PrivateKeyEntry
与PrivateKey
和相应的证书链。
指定的chain
在存储在新的PrivateKeyEntry
对象之前被克隆。
privateKey
-
PrivateKey
chain
- 代表证书链的Certificate
s数组。
必须对该链进行排序,并在索引0处包含与Certificate
。
NullPointerException
- 如果
privateKey
或
chain
是
null
IllegalArgumentException
-如果指定的链具有的长度为0,如果指定的链不包含
Certificate
S中的相同的类型,或者如果
PrivateKey
算法不所述的算法匹配
PublicKey
到底实体
Certificate
(索引0)
public PrivateKeyEntry(PrivateKey privateKey, Certificate[] chain, Set<KeyStore.Entry.Attribute> attributes)
PrivateKeyEntry
与PrivateKey
和相应的证书链和相关的条目属性。
指定的chain
和attributes
在被存储在新的PrivateKeyEntry
对象之前被克隆。
privateKey
-
PrivateKey
chain
- 表示证书链的Certificate
s的数组。
必须对该链进行排序,并在索引0处包含与Certificate
。
attributes
- 属性
NullPointerException
-如果
privateKey
,
chain
或
attributes
是
null
IllegalArgumentException
-如果指定的链具有的长度为0,如果指定的链不包含
Certificate
S中的相同的类型,或者如果
PrivateKey
算法不所述的算法匹配
PublicKey
到底实体
Certificate
(索引0)
public PrivateKey getPrivateKey()
PrivateKey
。
PrivateKey
public Certificate[] getCertificateChain()
Certificate
链。
存储链在被返回之前被克隆。
Certificate
的数组对应于公钥的证书链。
如果证书的类型为X.509,则返回的数组的运行时类型为X509Certificate[]
。
public Certificate getCertificate()
Certificate
。
Certificate
(在索引0处)。
如果证书的类型为X.509,则返回的证书的运行时类型为X509Certificate
。
public Set<KeyStore.Entry.Attribute> getAttributes()
getAttributes
在接口
KeyStore.Entry
Set
的属性Set可能是空的
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.