-
- All Superinterfaces:
-
Destroyable
,Key
,Serializable
- All Known Subinterfaces:
-
DHPrivateKey
,DSAPrivateKey
,ECPrivateKey
,RSAMultiPrimePrivateCrtKey
,RSAPrivateCrtKey
,RSAPrivateKey
public interface PrivateKey extends Key, Destroyable
私钥。 该接口的目的是为所有私钥接口分组(并提供类型安全性)。注意:专用私钥接口扩展了这个接口。 参见,例如,
DSAPrivateKey
接口在java.security.interfaces
中 。实现应该覆盖来自
Destroyable
接口的默认destroy
和isDestroyed
方法,以使敏感密钥信息被销毁,清除,或者在这些信息是不可变的,未被引用的情况下。 最后,由于PrivateKey
是Serializable
,实现也应该覆盖ObjectOutputStream.writeObject(java.lang.Object)
,以防止被破坏的密钥被序列化。- 从以下版本开始:
- 1.1
- 另请参见:
-
Key
,PublicKey
,Certificate
,Signature.initVerify(java.security.PublicKey)
,DSAPrivateKey
,RSAPrivateKey
,RSAPrivateCrtKey
-
-
Field Summary
Fields Modifier and Type Field 描述 static long
serialVersionUID
类指纹被设置为指示与以前版本的类的序列化兼容性。
-
方法摘要
-
Methods inherited from interface javax.security.auth.Destroyable
destroy, isDestroyed
-
Methods inherited from interface java.security.Key
getAlgorithm, getEncoded, getFormat
-
-
-
-
字段详细信息
-
serialVersionUID
static final long serialVersionUID
类指纹被设置为指示与以前版本的类的序列化兼容性。- 另请参见:
- Constant Field Values
-
-