DSAParameterSpec.java (getP): Return p, not q.
2002-12-03 Raif Naffah <raif@fl.net.au> * java/security/spec/DSAParameterSpec.java (getP): Return p, not q. * java/security/spec/DSAPrivateKeySpec.java (getP): Likewise. * java/security/spec/DSAPublicKeySpec.java (getP): Likewise. From-SVN: r59779
This commit is contained in:
committed by
Mark Wielaard
parent
c203334d6d
commit
b3eed2db61
@@ -74,7 +74,7 @@ public class DSAParameterSpec extends Object implements AlgorithmParameterSpec,
|
||||
*/
|
||||
public BigInteger getP()
|
||||
{
|
||||
return this.q;
|
||||
return this.p;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user