public class DHPrivateKeySpec
extends Object
implements KeySpec
java.lang.Object | |
↳ | javax.crypto.spec.DHPrivateKeySpec |
此类指定具有相关参数的Diffie-Hellman私钥。
请注意,此类不会对指定的参数执行任何验证。 因此,即使它们为空,指定的值也会直接返回。
也可以看看:
Public constructors |
|
---|---|
DHPrivateKeySpec(BigInteger x, BigInteger p, BigInteger g) 构造函数采用私有值 |
Public methods |
|
---|---|
BigInteger |
getG() 返回基本生成器 |
BigInteger |
getP() 返回质数模 |
BigInteger |
getX() 返回私有值 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
DHPrivateKeySpec (BigInteger x, BigInteger p, BigInteger g)
构造函数采用私有值 x
,质数模 p
和基本生成器 g
。
Parameters | |
---|---|
x |
BigInteger : private value x |
p |
BigInteger : prime modulus p |
g |
BigInteger : base generator g |