Most visited

Recently visited

Added in API level 1

DSAParams

public interface DSAParams

java.security.interfaces.DSAParams
Known Indirect Subclasses


与DSA特定的一组关键参数(定义DSA 密钥系列)的接口 DSA(数字签名算法)在NIST的FIPS-186中定义。

也可以看看:

摘要(Summary)

公共方法(Public methods)

abstract BigInteger getG()

返回基地, g

abstract BigInteger getP()

返回素数, p

abstract BigInteger getQ()

返回次级贷款, q

公共方法(Public methods)

getG

Added in API level 1
BigInteger getG ()

返回基地, g

返回(Returns)
BigInteger the base, g.

getP

Added in API level 1
BigInteger getP ()

返回素数, p

返回(Returns)
BigInteger the prime, p.

getQ

Added in API level 1
BigInteger getQ ()

返回次级贷款, q

返回(Returns)
BigInteger the subprime, q.

Hooray!