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