diff options
Diffstat (limited to 'libjava/classpath/java/security/spec/DSAPublicKeySpec.java')
-rw-r--r-- | libjava/classpath/java/security/spec/DSAPublicKeySpec.java | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/libjava/classpath/java/security/spec/DSAPublicKeySpec.java b/libjava/classpath/java/security/spec/DSAPublicKeySpec.java index ac1310c..751844b 100644 --- a/libjava/classpath/java/security/spec/DSAPublicKeySpec.java +++ b/libjava/classpath/java/security/spec/DSAPublicKeySpec.java @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -40,14 +40,14 @@ package java.security.spec; import java.math.BigInteger; /** - DSA Public Key class Specification. Used to maintain the DSA - Public Keys. + DSA Public Key class Specification. Used to maintain the DSA + Public Keys. - @since JDK 1.2 + @since JDK 1.2 - @author Mark Benvenuto + @author Mark Benvenuto */ -public class DSAPublicKeySpec implements KeySpec +public class DSAPublicKeySpec implements KeySpec { private BigInteger y = null; private BigInteger p = null; @@ -62,7 +62,7 @@ public class DSAPublicKeySpec implements KeySpec @param q the sub-prime @param g the base */ - public DSAPublicKeySpec(BigInteger y, BigInteger p, BigInteger q, BigInteger g) + public DSAPublicKeySpec(BigInteger y, BigInteger p, BigInteger q, BigInteger g) { this.y = y; this.p = p; @@ -75,7 +75,7 @@ public class DSAPublicKeySpec implements KeySpec @return Returns the requested BigInteger */ - public BigInteger getY() + public BigInteger getY() { return this.y; } @@ -85,7 +85,7 @@ public class DSAPublicKeySpec implements KeySpec @return Returns the requested BigInteger */ - public BigInteger getP() + public BigInteger getP() { return this.p; } @@ -95,7 +95,7 @@ public class DSAPublicKeySpec implements KeySpec @return Returns the requested BigInteger */ - public BigInteger getQ() + public BigInteger getQ() { return this.q; } @@ -105,7 +105,7 @@ public class DSAPublicKeySpec implements KeySpec @return Returns the requested BigInteger */ - public BigInteger getG() + public BigInteger getG() { return this.g; } |