java.lang.Object java.security.KeyPair
public final class KeyPair
此类是简单的密钥对(公钥和私钥)持有者。它没有增强任何安全性,另外初始化时应该将它当作 PrivateKey 对待。
PublicKey
,
PrivateKey
,
序列化表格
构造方法摘要 | |
---|---|
KeyPair(PublicKey publicKey, PrivateKey privateKey) 根据给定的公钥和私钥构造密钥对。 |
方法摘要 | |
---|---|
PrivateKey |
getPrivate() 返回对此密钥对的私钥组件的引用。 |
PublicKey |
getPublic() 返回对此密钥对的公钥组件的引用。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
public KeyPair(PublicKey publicKey, PrivateKey privateKey)
注意,此构造方法只在生成的密钥对中存储对公钥和私钥组件的引用。这是安全的,因为 Key
对象是不可变的。
publicKey
- 公钥。
privateKey
- 私钥。
方法详细信息 |
---|
public PublicKey getPublic()
public PrivateKey getPrivate()