src/share/classes/java/security/spec/DSAPublicKeySpec.java

Print this page

        

*** 67,106 **** this.q = q; this.g = g; } /** ! * Returns the public key <code>y</code>. * ! * @return the public key <code>y</code>. */ public BigInteger getY() { return this.y; } /** ! * Returns the prime <code>p</code>. * ! * @return the prime <code>p</code>. */ public BigInteger getP() { return this.p; } /** ! * Returns the sub-prime <code>q</code>. * ! * @return the sub-prime <code>q</code>. */ public BigInteger getQ() { return this.q; } /** ! * Returns the base <code>g</code>. * ! * @return the base <code>g</code>. */ public BigInteger getG() { return this.g; } } --- 67,106 ---- this.q = q; this.g = g; } /** ! * Returns the public key {@code y}. * ! * @return the public key {@code y}. */ public BigInteger getY() { return this.y; } /** ! * Returns the prime {@code p}. * ! * @return the prime {@code p}. */ public BigInteger getP() { return this.p; } /** ! * Returns the sub-prime {@code q}. * ! * @return the sub-prime {@code q}. */ public BigInteger getQ() { return this.q; } /** ! * Returns the base {@code g}. * ! * @return the base {@code g}. */ public BigInteger getG() { return this.g; } }