Added in API level 1
Summary: Methods
DSAParams
public 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 | getG() Returns the base, |
abstract BigInteger | getP() Returns the prime, |
abstract BigInteger | getQ() Returns the subprime, |
Public methods
getG
Added in API level 1
public abstract BigInteger getG ()
Returns the base, g.
| Returns | |
|---|---|
BigInteger | the base, g. |
getP
Added in API level 1
public abstract BigInteger getP ()
Returns the prime, p.
| Returns | |
|---|---|
BigInteger | the prime, p. |
getQ
Added in API level 1
public abstract BigInteger getQ ()
Returns the subprime, q.
| Returns | |
|---|---|
BigInteger | the subprime, q. |