Dead
[official-gcc.git] / gomp-20050608-branch / libjava / classpath / javax / crypto / KeyGenerator.java
blobc3f4cee9f5c1c938cebb571139782352f0e4f5e4
1 /* KeyGenerator.java -- Interface to a symmetric key generator.
2 Copyright (C) 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., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 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 javax.crypto;
41 import gnu.java.security.Engine;
43 import java.lang.reflect.InvocationTargetException;
44 import java.security.InvalidAlgorithmParameterException;
45 import java.security.NoSuchAlgorithmException;
46 import java.security.NoSuchProviderException;
47 import java.security.Provider;
48 import java.security.SecureRandom;
49 import java.security.Security;
50 import java.security.spec.AlgorithmParameterSpec;
52 /**
53 * A generic producer of keys for symmetric cryptography. The keys
54 * returned may be simple wrappers around byte arrays, or, if the
55 * target cipher requires them, more complex objects.
57 * @author Casey Marshall (csm@gnu.org)
58 * @since 1.4
59 * @see Cipher
60 * @see Mac
62 public class KeyGenerator
65 // Constants and fields.
66 // ------------------------------------------------------------------------
68 private static final String SERVICE = "KeyGenerator";
70 /** The underlying generator implementation. */
71 private KeyGeneratorSpi kgSpi;
73 /** The provider of the implementation. */
74 private Provider provider;
76 /** The name of the algorithm. */
77 private String algorithm;
79 // Constructor.
80 // ------------------------------------------------------------------------
82 /**
83 * Create a new key generator.
85 * @param kgSpi The underlying generator.
86 * @param provider The provider of this implementation.
87 * @param algorithm The algorithm's name.
89 protected KeyGenerator(KeyGeneratorSpi kgSpi, Provider provider,
90 String algorithm)
92 this.kgSpi = kgSpi;
93 this.provider = provider;
94 this.algorithm = algorithm;
97 // Class methods.
98 // ------------------------------------------------------------------------
101 * Create a new key generator, returning the first available
102 * implementation.
104 * @param algorithm The generator algorithm name.
105 * @throws java.security.NoSuchAlgorithmException If the specified
106 * algorithm does not exist.
108 public static final KeyGenerator getInstance(String algorithm)
109 throws NoSuchAlgorithmException
111 Provider[] provs = Security.getProviders();
112 String msg = algorithm;
113 for (int i = 0; i < provs.length; i++)
117 return getInstance(algorithm, provs[i]);
119 catch (NoSuchAlgorithmException nsae)
121 msg = nsae.getMessage();
124 throw new NoSuchAlgorithmException(msg);
128 * Create a new key generator from the named provider.
130 * @param algorithm The generator algorithm name.
131 * @param provider The name of the provider to use.
132 * @return An appropriate key generator, if found.
133 * @throws java.security.NoSuchAlgorithmException If the specified
134 * algorithm is not implemented by the named provider.
135 * @throws java.security.NoSuchProviderException If the named provider
136 * does not exist.
138 public static final KeyGenerator getInstance(String algorithm, String provider)
139 throws NoSuchAlgorithmException, NoSuchProviderException
141 Provider p = Security.getProvider(provider);
142 if (p == null)
144 throw new NoSuchProviderException(provider);
146 return getInstance(algorithm, p);
150 * Create a new key generator from the supplied provider.
152 * @param algorithm The generator algorithm name.
153 * @param provider The provider to use.
154 * @return An appropriate key generator, if found.
155 * @throws java.security.NoSuchAlgorithmException If the specified
156 * algorithm is not implemented by the provider.
158 public static final KeyGenerator getInstance(String algorithm, Provider provider)
159 throws NoSuchAlgorithmException
163 return new KeyGenerator((KeyGeneratorSpi)
164 Engine.getInstance(SERVICE, algorithm, provider),
165 provider, algorithm);
167 catch (InvocationTargetException ite)
169 if (ite.getCause() == null)
170 throw new NoSuchAlgorithmException(algorithm);
171 if (ite.getCause() instanceof NoSuchAlgorithmException)
172 throw (NoSuchAlgorithmException) ite.getCause();
173 throw new NoSuchAlgorithmException(algorithm);
175 catch (ClassCastException cce)
177 throw new NoSuchAlgorithmException(algorithm);
181 // Instance methods.
182 // ------------------------------------------------------------------------
185 * Generate a key.
187 * @return The new key.
189 public final SecretKey generateKey()
191 return kgSpi.engineGenerateKey();
195 * Return the name of this key generator.
197 * @return The algorithm name.
199 public final String getAlgorithm()
201 return algorithm;
205 * Return the provider of the underlying implementation.
207 * @return The provider.
209 public final Provider getProvider()
211 return provider;
215 * Initialize this key generator with a set of parameters; the
216 * highest-priority {@link java.security.SecureRandom} implementation
217 * will be used.
219 * @param params The algorithm parameters.
220 * @throws java.security.InvalidAlgorithmParameterException If the
221 * supplied parameters are inapproprate.
223 public final void init(AlgorithmParameterSpec params)
224 throws InvalidAlgorithmParameterException
226 init(params, new SecureRandom());
230 * Initialize this key generator with a set of parameters and a source
231 * of randomness.
233 * @param params The algorithm parameters.
234 * @param random The source of randomness.
235 * @throws java.security.InvalidAlgorithmParameterException If the
236 * supplied parameters are inapproprate.
238 public final void init(AlgorithmParameterSpec params, SecureRandom random)
239 throws InvalidAlgorithmParameterException
241 kgSpi.engineInit(params, random);
245 * Initialize this key generator with a key size (in bits); the
246 * highest-priority {@link java.security.SecureRandom} implementation
247 * will be used.
249 * @param keySize The target key size, in bits.
250 * @throws java.security.InvalidParameterException If the
251 * key size is unsupported.
253 public final void init(int keySize)
255 init(keySize, new SecureRandom());
259 * Initialize this key generator with a key size (in bits) and a
260 * source of randomness.
262 * @param keySize The target key size, in bits.
263 * @param random The source of randomness.
264 * @throws java.security.InvalidAlgorithmParameterException If the
265 * key size is unsupported.
267 public final void init(int keySize, SecureRandom random)
269 kgSpi.engineInit(keySize, random);
273 * Initialize this key generator with a source of randomness. The
274 * implementation-specific default parameters (such as key size) will
275 * be used.
277 * @param random The source of randomness.
279 public final void init(SecureRandom random)
281 kgSpi.engineInit(random);