summaryrefslogtreecommitdiffstats
path: root/libjava/java/security/interfaces/RSAPrivateCrtKey.java
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-11 19:00:07 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-11 19:00:07 +0000
commitd3d22a6a9f061b1903c6ec839ee1acaca063a23e (patch)
tree2af671e2772212be2424269d3f7cca08b3fe5238 /libjava/java/security/interfaces/RSAPrivateCrtKey.java
parent92bd88b4f48c77bf7b44fec48e0a3886af89b68d (diff)
downloadppe42-gcc-d3d22a6a9f061b1903c6ec839ee1acaca063a23e.tar.gz
ppe42-gcc-d3d22a6a9f061b1903c6ec839ee1acaca063a23e.zip
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72360 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/security/interfaces/RSAPrivateCrtKey.java')
-rw-r--r--libjava/java/security/interfaces/RSAPrivateCrtKey.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/libjava/java/security/interfaces/RSAPrivateCrtKey.java b/libjava/java/security/interfaces/RSAPrivateCrtKey.java
index 1e2dfa05248..8af1bb9168e 100644
--- a/libjava/java/security/interfaces/RSAPrivateCrtKey.java
+++ b/libjava/java/security/interfaces/RSAPrivateCrtKey.java
@@ -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();
}
OpenPOWER on IntegriCloud