diff options
Diffstat (limited to 'java/security/interfaces/RSAKey.java')
-rw-r--r-- | java/security/interfaces/RSAKey.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/java/security/interfaces/RSAKey.java b/java/security/interfaces/RSAKey.java index 1541884e7..83cc286cf 100644 --- a/java/security/interfaces/RSAKey.java +++ b/java/security/interfaces/RSAKey.java @@ -37,6 +37,8 @@ exception statement from your version. */ package java.security.interfaces; +import java.math.BigInteger; + /** A generic RSA Key interface for public and private keys @@ -51,5 +53,5 @@ public interface RSAKey @returns a modulus */ - public java.math.BigInteger getModulus(); + BigInteger getModulus(); } |