Merge from the pain train
[official-gcc.git] / libjava / java / security / AlgorithmParameterGenerator.java
blobed2f344010bdd24695459a853a18207fd991e1b4
1 /* AlgorithmParameterGenerator.java --- Algorithm Parameter Generator
2 Copyright (C) 1999, 2003, 2004 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
39 package java.security;
41 import gnu.java.security.Engine;
43 import java.security.spec.AlgorithmParameterSpec;
45 /**
46 * <p>The <code>AlgorithmParameterGenerator</code> class is used to generate a
47 * set of parameters to be used with a certain algorithm. Parameter generators
48 * are constructed using the <code>getInstance()</code> factory methods (static
49 * methods that return instances of a given class).</p>
51 * <p>The object that will generate the parameters can be initialized in two
52 * different ways: in an algorithm-independent manner, or in an
53 * algorithm-specific manner:</p>
55 * <ul>
56 * <li>The algorithm-independent approach uses the fact that all parameter
57 * generators share the concept of a <i>"size"</i> and a <i>source of
58 * randomness</i>. The measure of <i>size</i> is universally shared by all
59 * algorithm parameters, though it is interpreted differently for different
60 * algorithms. For example, in the case of parameters for the <i>DSA</i>
61 * algorithm, <i>"size"</i> corresponds to the size of the prime modulus (in
62 * bits). When using this approach, algorithm-specific parameter generation
63 * values - if any - default to some standard values, unless they can be
64 * derived from the specified size.</li>
65 * <li>The other approach initializes a parameter generator object using
66 * algorithm-specific semantics, which are represented by a set of
67 * algorithm-specific parameter generation values. To generate Diffie-Hellman
68 * system parameters, for example, the parameter generation values usually
69 * consist of the size of the prime modulus and the size of the random
70 * exponent, both specified in number of bits.</li>
71 * </ul>
73 * <p>In case the client does not explicitly initialize the
74 * <code>AlgorithmParameterGenerator</code> (via a call to an <code>init()</code>
75 * method), each provider must supply (and document) a default initialization.
76 * For example, the <b>GNU</b> provider uses a default modulus prime size of
77 * <code>1024</code> bits for the generation of <i>DSA</i> parameters.
79 * @author Mark Benvenuto
80 * @since 1.2
81 * @see AlgorithmParameters
82 * @see AlgorithmParameterSpec
84 public class AlgorithmParameterGenerator
86 /** Service name for algorithm parameter generators. */
87 private static final String ALGORITHM_PARAMETER_GENERATOR =
88 "AlgorithmParameterGenerator";
90 private AlgorithmParameterGeneratorSpi paramGenSpi;
91 private Provider provider;
92 private String algorithm;
94 /**
95 * Creates an <code>AlgorithmParameterGenerator</code> object.
97 * @param paramGenSpi the delegate.
98 * @param provider the provider.
99 * @param algorithm the algorithm.
101 protected AlgorithmParameterGenerator(AlgorithmParameterGeneratorSpi
102 paramGenSpi, Provider provider,
103 String algorithm)
105 this.paramGenSpi = paramGenSpi;
106 this.provider = provider;
107 this.algorithm = algorithm;
111 * Returns the standard name of the algorithm this parameter generator is
112 * associated with.
114 * @return the string name of the algorithm.
116 public final String getAlgorithm()
118 return algorithm;
122 * Generates an <code>AlgorithmParameterGenerator</code> object that
123 * implements the specified digest algorithm. If the default provider package
124 * provides an implementation of the requested digest algorithm, an instance
125 * of <code>AlgorithmParameterGenerator</code> containing that implementation
126 * is returned. If the algorithm is not available in the default package,
127 * other packages are searched.
129 * @param algorithm the string name of the algorithm this parameter generator
130 * is associated with.
131 * @return the new <code>AlgorithmParameterGenerator</code> object.
132 * @throws NoSuchAlgorithmException if the algorithm is not available in the
133 * environment.
135 public static AlgorithmParameterGenerator getInstance(String algorithm)
136 throws NoSuchAlgorithmException
138 Provider[] p = Security.getProviders();
139 for (int i = 0; i < p.length; i++)
142 return getInstance(algorithm, p[i]);
144 catch (NoSuchAlgorithmException e)
146 // Ignore.
149 throw new NoSuchAlgorithmException(algorithm);
153 * Generates an <code>AlgorithmParameterGenerator</code> object for the
154 * requested algorithm, as supplied from the specified provider, if such a
155 * parameter generator is available from the provider.
157 * @param algorithm the string name of the algorithm.
158 * @param provider the string name of the provider.
159 * @return the new <code>AlgorithmParameterGenerator</code> object.
160 * @throws NoSuchAlgorithmException if the <code>algorithm</code> is not
161 * available from the <code>provider</code>.
162 * @throws NoSuchProviderException if the <code>provider</code> is not
163 * available in the environment.
164 * @throws IllegalArgumentException if the <code>provider</code> name is
165 * <code>null</code> or empty.
166 * @see Provider
168 public static AlgorithmParameterGenerator getInstance(String algorithm,
169 String provider)
170 throws NoSuchAlgorithmException, NoSuchProviderException
172 if (provider == null || provider.length() == 0)
173 throw new IllegalArgumentException("Illegal provider");
175 Provider p = Security.getProvider(provider);
176 if (p == null)
177 throw new NoSuchProviderException(provider);
179 return getInstance(algorithm, p);
183 * Generates an AlgorithmParameterGenerator object for the requested
184 * algorithm, as supplied from the specified provider, if such a parameter
185 * generator is available from the provider. Note: the <code>provider</code>
186 * doesn't have to be registered.
188 * @param algorithm the string name of the algorithm.
189 * @param provider the provider.
190 * @return the new AlgorithmParameterGenerator object.
191 * @throws NoSuchAlgorithmException if the algorithm is not available from
192 * the provider.
193 * @throws IllegalArgumentException if the provider is null.
194 * @since 1.4
195 * @see Provider
197 public static AlgorithmParameterGenerator getInstance(String algorithm,
198 Provider provider)
199 throws NoSuchAlgorithmException
201 if (provider == null)
202 throw new IllegalArgumentException("Illegal provider");
206 return new AlgorithmParameterGenerator(
207 (AlgorithmParameterGeneratorSpi) Engine.getInstance(
208 ALGORITHM_PARAMETER_GENERATOR, algorithm, provider),
209 provider, algorithm);
211 catch (java.lang.reflect.InvocationTargetException ite)
213 throw new NoSuchAlgorithmException(algorithm);
215 catch (ClassCastException cce)
217 throw new NoSuchAlgorithmException(algorithm);
222 * Returns the provider of this algorithm parameter generator object.
224 * @return the provider of this algorithm parameter generator object.
226 public final Provider getProvider()
228 return provider;
232 * Initializes this parameter generator for a certain <i>size</i>. To create
233 * the parameters, the {@link SecureRandom} implementation of the
234 * highest-priority installed provider is used as the source of randomness.
235 * (If none of the installed providers supply an implementation of
236 * {@link SecureRandom}, a system-provided source of randomness is used.)
238 * @param size the size (number of bits).
240 public final void init(int size)
242 init(size, new SecureRandom());
246 * Initializes this parameter generator for a certain size and source of
247 * randomness.
249 * @param size the size (number of bits).
250 * @param random the source of randomness.
252 public final void init(int size, SecureRandom random)
254 paramGenSpi.engineInit(size, random);
258 * Initializes this parameter generator with a set of algorithm-specific
259 * parameter generation values. To generate the parameters, the {@link
260 * SecureRandom} implementation of the highest-priority installed provider is
261 * used as the source of randomness. (If none of the installed providers
262 * supply an implementation of {@link SecureRandom}, a system-provided source
263 * of randomness is used.)
265 * @param genParamSpec the set of algorithm-specific parameter generation
266 * values.
267 * @throws InvalidAlgorithmParameterException if the given parameter
268 * generation values are inappropriate for this parameter generator.
270 public final void init(AlgorithmParameterSpec genParamSpec)
271 throws InvalidAlgorithmParameterException
273 init(genParamSpec, new SecureRandom());
277 * Initializes this parameter generator with a set of algorithm-specific
278 * parameter generation values.
280 * @param genParamSpec the set of algorithm-specific parameter generation
281 * values.
282 * @param random the source of randomness.
283 * @throws InvalidAlgorithmParameterException if the given parameter
284 * generation values are inappropriate for this parameter generator.
286 public final void init(AlgorithmParameterSpec genParamSpec,
287 SecureRandom random)
288 throws InvalidAlgorithmParameterException
290 paramGenSpi.engineInit(genParamSpec, random);
294 * Generates the parameters.
296 * @return the new {@link AlgorithmParameters} object.
298 public final AlgorithmParameters generateParameters()
300 return paramGenSpi.engineGenerateParameters();