Added in API level 1

DSAParams

interface DSAParams
java.security.interfaces.DSAParams

Interface to a DSA-specific set of key parameters, which defines a DSA key family. DSA (Digital Signature Algorithm) is defined in NIST's FIPS-186.

Summary

Public methods
abstract BigInteger!

Returns the base, g.

abstract BigInteger!

Returns the prime, p.

abstract BigInteger!

Returns the subprime, q.

Public methods

getG

Added in API level 1
abstract fun getG(): BigInteger!

Returns the base, g.

Return
BigInteger! the base, g.

getP

Added in API level 1
abstract fun getP(): BigInteger!

Returns the prime, p.

Return
BigInteger! the prime, p.

getQ

Added in API level 1
abstract fun getQ(): BigInteger!

Returns the subprime, q.

Return
BigInteger! the subprime, q.