author | xuelei |
Wed, 09 Apr 2014 12:49:51 +0000 | |
changeset 23733 | b9b80421cfa7 |
parent 22309 | 1990211a42e5 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
22309 | 2 |
* Copyright (c) 2005, 2013, 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.pkcs11; |
|
27 |
||
28 |
import java.security.*; |
|
29 |
import java.security.spec.AlgorithmParameterSpec; |
|
30 |
||
31 |
import javax.crypto.*; |
|
32 |
import javax.crypto.spec.*; |
|
33 |
||
34 |
import sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec; |
|
35 |
||
36 |
import static sun.security.pkcs11.TemplateManager.*; |
|
37 |
import sun.security.pkcs11.wrapper.*; |
|
38 |
import static sun.security.pkcs11.wrapper.PKCS11Constants.*; |
|
39 |
||
40 |
/** |
|
41 |
* KeyGenerator for the SSL/TLS RSA premaster secret. |
|
42 |
* |
|
43 |
* @author Andreas Sterbenz |
|
44 |
* @since 1.6 |
|
45 |
*/ |
|
46 |
final class P11TlsRsaPremasterSecretGenerator extends KeyGeneratorSpi { |
|
47 |
||
48 |
private final static String MSG = "TlsRsaPremasterSecretGenerator must be " |
|
49 |
+ "initialized using a TlsRsaPremasterSecretParameterSpec"; |
|
50 |
||
51 |
// token instance |
|
52 |
private final Token token; |
|
53 |
||
54 |
// algorithm name |
|
55 |
private final String algorithm; |
|
56 |
||
57 |
// mechanism id |
|
58 |
private long mechanism; |
|
59 |
||
60 |
private TlsRsaPremasterSecretParameterSpec spec; |
|
61 |
||
62 |
P11TlsRsaPremasterSecretGenerator(Token token, String algorithm, long mechanism) |
|
63 |
throws PKCS11Exception { |
|
64 |
super(); |
|
65 |
this.token = token; |
|
66 |
this.algorithm = algorithm; |
|
67 |
this.mechanism = mechanism; |
|
68 |
} |
|
69 |
||
70 |
protected void engineInit(SecureRandom random) { |
|
71 |
throw new InvalidParameterException(MSG); |
|
72 |
} |
|
73 |
||
74 |
protected void engineInit(AlgorithmParameterSpec params, |
|
75 |
SecureRandom random) throws InvalidAlgorithmParameterException { |
|
23733
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
76 |
if (!(params instanceof TlsRsaPremasterSecretParameterSpec)) { |
2 | 77 |
throw new InvalidAlgorithmParameterException(MSG); |
78 |
} |
|
79 |
this.spec = (TlsRsaPremasterSecretParameterSpec)params; |
|
80 |
} |
|
81 |
||
82 |
protected void engineInit(int keysize, SecureRandom random) { |
|
83 |
throw new InvalidParameterException(MSG); |
|
84 |
} |
|
85 |
||
23733
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
86 |
// Only can be used in client side to generate TLS RSA premaster secret. |
2 | 87 |
protected SecretKey engineGenerateKey() { |
88 |
if (spec == null) { |
|
89 |
throw new IllegalStateException |
|
90 |
("TlsRsaPremasterSecretGenerator must be initialized"); |
|
91 |
} |
|
22309 | 92 |
|
23733
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
93 |
CK_VERSION version = new CK_VERSION( |
22309 | 94 |
spec.getMajorVersion(), spec.getMinorVersion()); |
23733
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
95 |
Session session = null; |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
96 |
try { |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
97 |
session = token.getObjSession(); |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
98 |
CK_ATTRIBUTE[] attributes = token.getAttributes( |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
99 |
O_GENERATE, CKO_SECRET_KEY, |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
100 |
CKK_GENERIC_SECRET, new CK_ATTRIBUTE[0]); |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
101 |
long keyID = token.p11.C_GenerateKey(session.id(), |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
102 |
new CK_MECHANISM(mechanism, version), attributes); |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
103 |
SecretKey key = P11Key.secretKey(session, |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
104 |
keyID, "TlsRsaPremasterSecret", 48 << 3, attributes); |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
105 |
return key; |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
106 |
} catch (PKCS11Exception e) { |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
107 |
throw new ProviderException( |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
108 |
"Could not generate premaster secret", e); |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
109 |
} finally { |
b9b80421cfa7
8028192: Use of PKCS11-NSS provider in FIPS mode broken
xuelei
parents:
22309
diff
changeset
|
110 |
token.releaseSession(session); |
2 | 111 |
} |
112 |
} |
|
113 |
||
114 |
} |