2
|
1 |
/*
|
5506
|
2 |
* Copyright (c) 2005, 2008, Oracle and/or its affiliates. All rights reserved.
|
2
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
4 |
*
|
|
5 |
* This code is free software; you can redistribute it and/or modify it
|
|
6 |
* under the terms of the GNU General Public License version 2 only, as
|
5506
|
7 |
* published by the Free Software Foundation. Oracle designates this
|
2
|
8 |
* particular file as subject to the "Classpath" exception as provided
|
5506
|
9 |
* by Oracle in the LICENSE file that accompanied this code.
|
2
|
10 |
*
|
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that
|
|
15 |
* accompanied this code).
|
|
16 |
*
|
|
17 |
* You should have received a copy of the GNU General Public License version
|
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
20 |
*
|
5506
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
22 |
* or visit www.oracle.com if you need additional information or have any
|
|
23 |
* questions.
|
2
|
24 |
*/
|
|
25 |
|
|
26 |
package sun.security.mscapi;
|
|
27 |
|
|
28 |
import java.util.UUID;
|
|
29 |
import java.security.*;
|
|
30 |
import java.security.spec.AlgorithmParameterSpec;
|
|
31 |
import java.security.spec.RSAKeyGenParameterSpec;
|
|
32 |
|
|
33 |
import sun.security.jca.JCAUtil;
|
2596
|
34 |
import sun.security.rsa.RSAKeyFactory;
|
2
|
35 |
|
|
36 |
/**
|
|
37 |
* RSA keypair generator.
|
|
38 |
*
|
|
39 |
* Standard algorithm, minimum key length is 512 bit, maximum is 16,384.
|
|
40 |
* Generates a private key that is exportable.
|
|
41 |
*
|
|
42 |
* @since 1.6
|
|
43 |
*/
|
|
44 |
public final class RSAKeyPairGenerator extends KeyPairGeneratorSpi {
|
|
45 |
|
|
46 |
// Supported by Microsoft Base, Strong and Enhanced Cryptographic Providers
|
2596
|
47 |
static final int KEY_SIZE_MIN = 512; // disallow MSCAPI min. of 384
|
|
48 |
static final int KEY_SIZE_MAX = 16384;
|
2
|
49 |
private static final int KEY_SIZE_DEFAULT = 1024;
|
|
50 |
|
|
51 |
// size of the key to generate, KEY_SIZE_MIN <= keySize <= KEY_SIZE_MAX
|
|
52 |
private int keySize;
|
|
53 |
|
|
54 |
public RSAKeyPairGenerator() {
|
|
55 |
// initialize to default in case the app does not call initialize()
|
|
56 |
initialize(KEY_SIZE_DEFAULT, null);
|
|
57 |
}
|
|
58 |
|
|
59 |
// initialize the generator. See JCA doc
|
|
60 |
// random is always ignored
|
|
61 |
public void initialize(int keySize, SecureRandom random) {
|
|
62 |
|
2596
|
63 |
try {
|
|
64 |
RSAKeyFactory.checkKeyLengths(keySize, null,
|
|
65 |
KEY_SIZE_MIN, KEY_SIZE_MAX);
|
|
66 |
} catch (InvalidKeyException e) {
|
|
67 |
throw new InvalidParameterException(e.getMessage());
|
|
68 |
}
|
|
69 |
|
|
70 |
this.keySize = keySize;
|
2
|
71 |
}
|
|
72 |
|
|
73 |
// second initialize method. See JCA doc
|
|
74 |
// random and exponent are always ignored
|
|
75 |
public void initialize(AlgorithmParameterSpec params, SecureRandom random)
|
|
76 |
throws InvalidAlgorithmParameterException {
|
|
77 |
|
2596
|
78 |
int tmpSize;
|
2
|
79 |
if (params == null) {
|
2596
|
80 |
tmpSize = KEY_SIZE_DEFAULT;
|
2
|
81 |
} else if (params instanceof RSAKeyGenParameterSpec) {
|
|
82 |
|
|
83 |
if (((RSAKeyGenParameterSpec) params).getPublicExponent() != null) {
|
|
84 |
throw new InvalidAlgorithmParameterException
|
|
85 |
("Exponent parameter is not supported");
|
|
86 |
}
|
2596
|
87 |
tmpSize = ((RSAKeyGenParameterSpec) params).getKeysize();
|
2
|
88 |
|
|
89 |
} else {
|
|
90 |
throw new InvalidAlgorithmParameterException
|
|
91 |
("Params must be an instance of RSAKeyGenParameterSpec");
|
|
92 |
}
|
2596
|
93 |
|
|
94 |
try {
|
|
95 |
RSAKeyFactory.checkKeyLengths(tmpSize, null,
|
|
96 |
KEY_SIZE_MIN, KEY_SIZE_MAX);
|
|
97 |
} catch (InvalidKeyException e) {
|
|
98 |
throw new InvalidAlgorithmParameterException(
|
|
99 |
"Invalid Key sizes", e);
|
|
100 |
}
|
|
101 |
|
|
102 |
this.keySize = tmpSize;
|
2
|
103 |
}
|
|
104 |
|
|
105 |
// generate the keypair. See JCA doc
|
|
106 |
public KeyPair generateKeyPair() {
|
|
107 |
|
|
108 |
// Generate each keypair in a unique key container
|
|
109 |
RSAKeyPair keys =
|
|
110 |
generateRSAKeyPair(keySize,
|
|
111 |
"{" + UUID.randomUUID().toString() + "}");
|
|
112 |
|
|
113 |
return new KeyPair(keys.getPublic(), keys.getPrivate());
|
|
114 |
}
|
|
115 |
|
|
116 |
private static native RSAKeyPair generateRSAKeyPair(int keySize,
|
|
117 |
String keyContainerName);
|
|
118 |
}
|