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!