diff options
Diffstat (limited to 'libjava/classpath/java/security/AlgorithmParameterGenerator.java')
-rw-r--r-- | libjava/classpath/java/security/AlgorithmParameterGenerator.java | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/libjava/classpath/java/security/AlgorithmParameterGenerator.java b/libjava/classpath/java/security/AlgorithmParameterGenerator.java index da1ea46d214..a92552b9edc 100644 --- a/libjava/classpath/java/security/AlgorithmParameterGenerator.java +++ b/libjava/classpath/java/security/AlgorithmParameterGenerator.java @@ -48,7 +48,7 @@ import java.security.spec.AlgorithmParameterSpec; /** * <code>AlgorithmParameterGenerator</code> is used to generate algorithm * parameters for specified algorithms. - * + * * <p>In case the client does not explicitly initialize the * <code>AlgorithmParameterGenerator</code> (via a call to an * <code>init()</code> method), each provider must supply (and document) a @@ -73,7 +73,7 @@ public class AlgorithmParameterGenerator /** * Constructs a new instance of <code>AlgorithmParameterGenerator</code>. - * + * * @param paramGenSpi * the generator to use. * @param provider @@ -82,8 +82,8 @@ public class AlgorithmParameterGenerator * the algorithm to use. */ protected AlgorithmParameterGenerator(AlgorithmParameterGeneratorSpi - paramGenSpi, Provider provider, - String algorithm) + paramGenSpi, Provider provider, + String algorithm) { this.paramGenSpi = paramGenSpi; this.provider = provider; @@ -99,7 +99,7 @@ public class AlgorithmParameterGenerator /** * Returns a new <code>AlgorithmParameterGenerator</code> instance which * generates algorithm parameters for the specified algorithm. - * + * * @param algorithm the name of algorithm to use. * @return the new instance. * @throws NoSuchAlgorithmException if <code>algorithm</code> is not @@ -129,7 +129,7 @@ public class AlgorithmParameterGenerator /** * Returns a new <code>AlgorithmParameterGenerator</code> instance which * generates algorithm parameters for the specified algorithm. - * + * * @param algorithm the name of algorithm to use. * @param provider the name of the {@link Provider} to use. * @return the new instance. @@ -157,7 +157,7 @@ public class AlgorithmParameterGenerator /** * Returns a new <code>AlgorithmParameterGenerator</code> instance which * generates algorithm parameters for the specified algorithm. - * + * * @param algorithm the name of algorithm to use. * @param provider the {@link Provider} to use. * @return the new instance. @@ -213,7 +213,7 @@ public class AlgorithmParameterGenerator /** * Initializes this instance with the specified size. Since no source of * randomness is supplied, a default one will be used. - * + * * @param size * size (in bits) to use. */ @@ -225,7 +225,7 @@ public class AlgorithmParameterGenerator /** * Initializes this instance with the specified key-size and source of * randomness. - * + * * @param size * the size (in bits) to use. * @param random @@ -239,7 +239,7 @@ public class AlgorithmParameterGenerator /** * Initializes this instance with the specified {@link AlgorithmParameterSpec}. * Since no source of randomness is supplied, a default one will be used. - * + * * @param genParamSpec * the {@link AlgorithmParameterSpec} to use. * @throws InvalidAlgorithmParameterException @@ -254,7 +254,7 @@ public class AlgorithmParameterGenerator /** * Initializes this instance with the specified {@link AlgorithmParameterSpec} * and source of randomness. - * + * * @param genParamSpec * the {@link AlgorithmParameterSpec} to use. * @param random |