summaryrefslogtreecommitdiffstats
path: root/libjava/java/security/interfaces/RSAPrivateCrtKey.java
diff options
context:
space:
mode:
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