Most visited

Recently visited

Added in API level 1

DSAPrivateKey

public interface DSAPrivateKey
implements DSAKey, PrivateKey

java.security.interfaces.DSAPrivateKey


DSA私钥的标准接口。 DSA(数字签名算法)在NIST的FIPS-186中定义。

也可以看看:

摘要(Summary)

常量(Constants)

long serialVersionUID

类别指纹设置为表示与该类的以前版本的序列化兼容性。

Inherited constants

From interface java.security.PrivateKey
From interface java.security.Key

公共方法(Public methods)

abstract BigInteger getX()

返回私钥的值, x

继承方法(Inherited methods)

From interface java.security.interfaces.DSAKey
From interface java.security.Key

常量(Constants)

serialVersionUID

Added in API level 1
long serialVersionUID

类别指纹设置为表示与该类的以前版本的序列化兼容性。

常量值:7776497482533790279(0x6bebab423b256247)

公共方法(Public methods)

getX

Added in API level 1
BigInteger getX ()

返回私钥的值, x

返回(Returns)
BigInteger the value of the private key, x.

Hooray!