Example usage for Java java.security.spec DSAPublicKeySpec fields, constructors, methods, implement or subclass
The text is from its open source code.
DSAPublicKeySpec(BigInteger y, BigInteger p, BigInteger q, BigInteger g) Creates a new DSAPublicKeySpec with the specified parameter values. |
BigInteger | getG() Returns the base g . |
BigInteger | getP() Returns the prime p . |
BigInteger | getQ() Returns the sub-prime q . |
BigInteger | getY() Returns the public key y . |