2003-10-11 Michael Koch <konqueror@gmx.de>

* java/security/Key.java,
	* java/security/PrivateKey.java,
	* java/security/PublicKey.java,
	* java/security/acl/Acl.java,
	* java/security/acl/AclEntry.java,
	* java/security/acl/Group.java,
	* java/security/acl/Owner.java,
	* java/security/acl/Permission.java,
	* java/security/cert/X509Extension.java,
	* java/security/interfaces/DSAKey.java,
	* java/security/interfaces/DSAKeyPairGenerator.java,
	* java/security/interfaces/DSAParams.java,
	* java/security/interfaces/DSAPrivateKey.java,
	* java/security/interfaces/DSAPublicKey.java,
	* java/security/interfaces/RSAKey.java,
	* java/security/interfaces/RSAPrivateCrtKey.java,
	* java/security/interfaces/RSAPrivateKey.java,
	* java/security/interfaces/RSAPublicKey.java:
	Removed redundant modifiers.

From-SVN: r72360
This commit is contained in:
Michael Koch 2003-10-11 19:00:07 +00:00 committed by Michael Koch
parent 6233cbbc88
commit e3ff2b2bb6
19 changed files with 82 additions and 55 deletions

View file

@ -54,40 +54,40 @@ public interface RSAPrivateCrtKey extends RSAPrivateKey
*
* @return The public exponent for this key
*/
public abstract BigInteger getPublicExponent();
BigInteger getPublicExponent();
/**
* Returns the primeP value
*
* @return The primeP value
*/
public abstract BigInteger getPrimeP();
BigInteger getPrimeP();
/**
* Returns the primeQ value
*
* @return The primeQ value
*/
public abstract BigInteger getPrimeQ();
BigInteger getPrimeQ();
/**
* Returns the primeExponentP
*
* @return The primeExponentP
*/
public abstract BigInteger getPrimeExponentP();
BigInteger getPrimeExponentP();
/**
* Returns the primeExponentQ
*
* @return The primeExponentQ
*/
public abstract BigInteger getPrimeExponentQ();
BigInteger getPrimeExponentQ();
/**
* Returns the CRT coefficient
*
* @return The CRT coefficient
*/
public abstract BigInteger getCrtCoefficient();
BigInteger getCrtCoefficient();
}