aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/security/spec/RSAKeyGenParameterSpec.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/java/security/spec/RSAKeyGenParameterSpec.java')
-rw-r--r--libjava/classpath/java/security/spec/RSAKeyGenParameterSpec.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/classpath/java/security/spec/RSAKeyGenParameterSpec.java b/libjava/classpath/java/security/spec/RSAKeyGenParameterSpec.java
index ad55111..5a1dafe 100644
--- a/libjava/classpath/java/security/spec/RSAKeyGenParameterSpec.java
+++ b/libjava/classpath/java/security/spec/RSAKeyGenParameterSpec.java
@@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
-
+
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
@@ -63,7 +63,7 @@ public class RSAKeyGenParameterSpec implements AlgorithmParameterSpec
public static final BigInteger F4 = BigInteger.valueOf(65537L);
/**
- Create a new RSAKeyGenParameterSpec to store the RSA key's keysize
+ Create a new RSAKeyGenParameterSpec to store the RSA key's keysize
and public exponent
@param keysize Modulus size of key in bits
@@ -74,7 +74,7 @@ public class RSAKeyGenParameterSpec implements AlgorithmParameterSpec
this.keysize = keysize;
this.publicExponent = publicExponent;
}
-
+
/**
Return the size of the key.
@@ -84,7 +84,7 @@ public class RSAKeyGenParameterSpec implements AlgorithmParameterSpec
{
return keysize;
}
-
+
/**
Return the public exponent.