-
- All Superinterfaces:
-
Destroyable
,Key
,Serializable
- All Known Subinterfaces:
-
DHPrivateKey
,DSAPrivateKey
,ECPrivateKey
,RSAMultiPrimePrivateCrtKey
,RSAPrivateCrtKey
,RSAPrivateKey
,XECPrivateKey
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
-
-
字段汇总
字段 变量和类型 字段 描述 static long
serialVersionUID
设置的类指纹,用于指示与该类的先前版本的序列化兼容性。
-
方法摘要
-
声明方法的接口 javax.security.auth.Destroyable
destroy, isDestroyed
-
声明方法的接口 java.security.Key
getAlgorithm, getEncoded, getFormat
-
-
-
-
字段详细信息
-
serialVersionUID
static final long serialVersionUID
设置的类指纹,用于指示与该类的先前版本的序列化兼容性。- 另请参见:
- 常数字段值
-
-