- java.lang.Object
-
- java.security.KeyStore.SecretKeyEntry
-
- All Implemented Interfaces:
-
KeyStore.Entry
- Enclosing class:
- KeyStore
public static final class KeyStore.SecretKeyEntry extends Object implements KeyStore.Entry
AKeyStore
条目,其中包含一个SecretKey
。- 从以下版本开始:
- 1.5
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface java.security.KeyStore.Entry
KeyStore.Entry.Attribute
-
-
构造方法摘要
构造方法 Constructor 描述 SecretKeyEntry(SecretKey secretKey)
构造一个SecretKeyEntry
与SecretKey
。SecretKeyEntry(SecretKey secretKey, Set<KeyStore.Entry.Attribute> attributes)
构造一个SecretKeyEntry
与一个SecretKey
和相关联的条目属性。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 Set<KeyStore.Entry.Attribute>
getAttributes()
检索与条目关联的属性。SecretKey
getSecretKey()
从此条目获取SecretKey
。String
toString()
返回此SecretKeyEntry的字符串表示形式。
-
-
-
构造方法详细信息
-
SecretKeyEntry
public SecretKeyEntry(SecretKey secretKey)
构造一个SecretKeyEntry
与一个SecretKey
。- 参数
-
secretKey
-SecretKey
- 异常
-
NullPointerException
- 如果secretKey
是null
-
SecretKeyEntry
public SecretKeyEntry(SecretKey secretKey, Set<KeyStore.Entry.Attribute> attributes)
构造一个SecretKeyEntry
与SecretKey
及相关条目中的属性。指定的
attributes
在存储在新的SecretKeyEntry
对象之前被克隆。- 参数
-
secretKey
-SecretKey
-
attributes
- 属性 - 异常
-
NullPointerException
- 如果是secretKey
或attributes
是null
- 从以下版本开始:
- 1.8
-
-
方法详细信息
-
getSecretKey
public SecretKey getSecretKey()
从此条目获取SecretKey
。- 结果
-
SecretKey
目的SecretKey
-
getAttributes
public Set<KeyStore.Entry.Attribute> getAttributes()
检索与条目关联的属性。- Specified by:
-
getAttributes
在接口KeyStore.Entry
- 结果
-
一个不可修改的属性
Set
,可能是空的 - 从以下版本开始:
- 1.8
-
-