author | xuelei |
Mon, 25 Jun 2018 08:14:11 -0700 | |
branch | JDK-8145252-TLS13-branch |
changeset 56806 | 32a737f51e37 |
parent 56692 | 7b0bde908f58 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
56542 | 2 |
* Copyright (c) 2001, 2018, 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.ssl; |
|
27 |
||
28 |
import java.math.BigInteger; |
|
29 |
import java.security.*; |
|
30 |
import java.security.interfaces.RSAPublicKey; |
|
31 |
import java.security.spec.*; |
|
56542 | 32 |
import java.util.*; |
2 | 33 |
import javax.crypto.*; |
56542 | 34 |
import sun.security.jca.ProviderList; |
2 | 35 |
import sun.security.jca.Providers; |
56542 | 36 |
import static sun.security.ssl.SunJSSE.cryptoProvider; |
17491
7a33824ec8c5
7194075: Various classes of sunec.jar are duplicated in rt.jar
vinnie
parents:
16913
diff
changeset
|
37 |
import sun.security.util.ECUtil; |
40416
5d91b2fd668c
8130181: Deprecate java.security.Provider(String, double, String), add Provider(Strin
valeriep
parents:
39563
diff
changeset
|
38 |
import static sun.security.util.SecurityConstants.PROVIDER_VER; |
2 | 39 |
|
40 |
/** |
|
41 |
* This class contains a few static methods for interaction with the JCA/JCE |
|
42 |
* to obtain implementations, etc. |
|
43 |
* |
|
44 |
* @author Andreas Sterbenz |
|
45 |
*/ |
|
46 |
final class JsseJce { |
|
56542 | 47 |
static final boolean ALLOW_ECC = |
48 |
Utilities.getBooleanProperty("com.sun.net.ssl.enableECC", true); |
|
2 | 49 |
|
32649
2ee9017c7597
8136583: Core libraries should use blessed modifier order
martin
parents:
30905
diff
changeset
|
50 |
private static final ProviderList fipsProviderList; |
2 | 51 |
|
52 |
static { |
|
53 |
// force FIPS flag initialization |
|
54 |
// Because isFIPS() is synchronized and cryptoProvider is not modified |
|
55 |
// after it completes, this also eliminates the need for any further |
|
56 |
// synchronization when accessing cryptoProvider |
|
57 |
if (SunJSSE.isFIPS() == false) { |
|
58 |
fipsProviderList = null; |
|
59 |
} else { |
|
60 |
// Setup a ProviderList that can be used by the trust manager |
|
61 |
// during certificate chain validation. All the crypto must be |
|
62 |
// from the FIPS provider, but we also allow the required |
|
63 |
// certificate related services from the SUN provider. |
|
64 |
Provider sun = Security.getProvider("SUN"); |
|
65 |
if (sun == null) { |
|
66 |
throw new RuntimeException |
|
67 |
("FIPS mode: SUN provider must be installed"); |
|
68 |
} |
|
69 |
Provider sunCerts = new SunCertificates(sun); |
|
70 |
fipsProviderList = ProviderList.newList(cryptoProvider, sunCerts); |
|
71 |
} |
|
72 |
} |
|
73 |
||
74 |
private static final class SunCertificates extends Provider { |
|
10336
0bb1999251f8
7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents:
9691
diff
changeset
|
75 |
private static final long serialVersionUID = -3284138292032213752L; |
0bb1999251f8
7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents:
9691
diff
changeset
|
76 |
|
2 | 77 |
SunCertificates(final Provider p) { |
40416
5d91b2fd668c
8130181: Deprecate java.security.Provider(String, double, String), add Provider(Strin
valeriep
parents:
39563
diff
changeset
|
78 |
super("SunCertificates", PROVIDER_VER, "SunJSSE internal"); |
2 | 79 |
AccessController.doPrivileged(new PrivilegedAction<Object>() { |
14664
e71aa0962e70
8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents:
10336
diff
changeset
|
80 |
@Override |
2 | 81 |
public Object run() { |
82 |
// copy certificate related services from the Sun provider |
|
83 |
for (Map.Entry<Object,Object> entry : p.entrySet()) { |
|
84 |
String key = (String)entry.getKey(); |
|
85 |
if (key.startsWith("CertPathValidator.") |
|
86 |
|| key.startsWith("CertPathBuilder.") |
|
87 |
|| key.startsWith("CertStore.") |
|
88 |
|| key.startsWith("CertificateFactory.")) { |
|
89 |
put(key, entry.getValue()); |
|
90 |
} |
|
91 |
} |
|
92 |
return null; |
|
93 |
} |
|
94 |
}); |
|
95 |
} |
|
96 |
} |
|
97 |
||
98 |
/** |
|
99 |
* JCE transformation string for RSA with PKCS#1 v1.5 padding. |
|
100 |
* Can be used for encryption, decryption, signing, verifying. |
|
101 |
*/ |
|
32649
2ee9017c7597
8136583: Core libraries should use blessed modifier order
martin
parents:
30905
diff
changeset
|
102 |
static final String CIPHER_RSA_PKCS1 = "RSA/ECB/PKCS1Padding"; |
56806 | 103 |
|
2 | 104 |
/** |
105 |
* JCE transformation string for the stream cipher RC4. |
|
106 |
*/ |
|
32649
2ee9017c7597
8136583: Core libraries should use blessed modifier order
martin
parents:
30905
diff
changeset
|
107 |
static final String CIPHER_RC4 = "RC4"; |
56806 | 108 |
|
2 | 109 |
/** |
110 |
* JCE transformation string for DES in CBC mode without padding. |
|
111 |
*/ |
|
32649
2ee9017c7597
8136583: Core libraries should use blessed modifier order
martin
parents:
30905
diff
changeset
|
112 |
static final String CIPHER_DES = "DES/CBC/NoPadding"; |
56806 | 113 |
|
2 | 114 |
/** |
115 |
* JCE transformation string for (3-key) Triple DES in CBC mode |
|
116 |
* without padding. |
|
117 |
*/ |
|
32649
2ee9017c7597
8136583: Core libraries should use blessed modifier order
martin
parents:
30905
diff
changeset
|
118 |
static final String CIPHER_3DES = "DESede/CBC/NoPadding"; |
56806 | 119 |
|
2 | 120 |
/** |
121 |
* JCE transformation string for AES in CBC mode |
|
122 |
* without padding. |
|
123 |
*/ |
|
32649
2ee9017c7597
8136583: Core libraries should use blessed modifier order
martin
parents:
30905
diff
changeset
|
124 |
static final String CIPHER_AES = "AES/CBC/NoPadding"; |
56806 | 125 |
|
2 | 126 |
/** |
16913 | 127 |
* JCE transformation string for AES in GCM mode |
128 |
* without padding. |
|
129 |
*/ |
|
32649
2ee9017c7597
8136583: Core libraries should use blessed modifier order
martin
parents:
30905
diff
changeset
|
130 |
static final String CIPHER_AES_GCM = "AES/GCM/NoPadding"; |
56806 | 131 |
|
16913 | 132 |
/** |
2 | 133 |
* JCA identifier string for DSA, i.e. a DSA with SHA-1. |
134 |
*/ |
|
32649
2ee9017c7597
8136583: Core libraries should use blessed modifier order
martin
parents:
30905
diff
changeset
|
135 |
static final String SIGNATURE_DSA = "DSA"; |
56806 | 136 |
|
2 | 137 |
/** |
138 |
* JCA identifier string for ECDSA, i.e. a ECDSA with SHA-1. |
|
139 |
*/ |
|
32649
2ee9017c7597
8136583: Core libraries should use blessed modifier order
martin
parents:
30905
diff
changeset
|
140 |
static final String SIGNATURE_ECDSA = "SHA1withECDSA"; |
56806 | 141 |
|
2 | 142 |
/** |
143 |
* JCA identifier string for Raw DSA, i.e. a DSA signature without |
|
144 |
* hashing where the application provides the SHA-1 hash of the data. |
|
145 |
* Note that the standard name is "NONEwithDSA" but we use "RawDSA" |
|
146 |
* for compatibility. |
|
147 |
*/ |
|
32649
2ee9017c7597
8136583: Core libraries should use blessed modifier order
martin
parents:
30905
diff
changeset
|
148 |
static final String SIGNATURE_RAWDSA = "RawDSA"; |
56806 | 149 |
|
2 | 150 |
/** |
151 |
* JCA identifier string for Raw ECDSA, i.e. a DSA signature without |
|
152 |
* hashing where the application provides the SHA-1 hash of the data. |
|
153 |
*/ |
|
32649
2ee9017c7597
8136583: Core libraries should use blessed modifier order
martin
parents:
30905
diff
changeset
|
154 |
static final String SIGNATURE_RAWECDSA = "NONEwithECDSA"; |
56806 | 155 |
|
2 | 156 |
/** |
157 |
* JCA identifier string for Raw RSA, i.e. a RSA PKCS#1 v1.5 signature |
|
158 |
* without hashing where the application provides the hash of the data. |
|
159 |
* Used for RSA client authentication with a 36 byte hash. |
|
160 |
*/ |
|
32649
2ee9017c7597
8136583: Core libraries should use blessed modifier order
martin
parents:
30905
diff
changeset
|
161 |
static final String SIGNATURE_RAWRSA = "NONEwithRSA"; |
56806 | 162 |
|
2 | 163 |
/** |
164 |
* JCA identifier string for the SSL/TLS style RSA Signature. I.e. |
|
165 |
* an signature using RSA with PKCS#1 v1.5 padding signing a |
|
166 |
* concatenation of an MD5 and SHA-1 digest. |
|
167 |
*/ |
|
32649
2ee9017c7597
8136583: Core libraries should use blessed modifier order
martin
parents:
30905
diff
changeset
|
168 |
static final String SIGNATURE_SSLRSA = "MD5andSHA1withRSA"; |
2 | 169 |
|
170 |
private JsseJce() { |
|
171 |
// no instantiation of this class |
|
172 |
} |
|
173 |
||
34826 | 174 |
static boolean isEcAvailable() { |
175 |
return EcAvailability.isAvailable; |
|
2 | 176 |
} |
177 |
||
178 |
/** |
|
179 |
* Return an JCE cipher implementation for the specified algorithm. |
|
180 |
*/ |
|
181 |
static Cipher getCipher(String transformation) |
|
182 |
throws NoSuchAlgorithmException { |
|
183 |
try { |
|
184 |
if (cryptoProvider == null) { |
|
185 |
return Cipher.getInstance(transformation); |
|
186 |
} else { |
|
187 |
return Cipher.getInstance(transformation, cryptoProvider); |
|
188 |
} |
|
189 |
} catch (NoSuchPaddingException e) { |
|
190 |
throw new NoSuchAlgorithmException(e); |
|
191 |
} |
|
192 |
} |
|
193 |
||
194 |
/** |
|
195 |
* Return an JCA signature implementation for the specified algorithm. |
|
196 |
* The algorithm string should be one of the constants defined |
|
197 |
* in this class. |
|
198 |
*/ |
|
199 |
static Signature getSignature(String algorithm) |
|
200 |
throws NoSuchAlgorithmException { |
|
201 |
if (cryptoProvider == null) { |
|
202 |
return Signature.getInstance(algorithm); |
|
203 |
} else { |
|
204 |
// reference equality |
|
205 |
if (algorithm == SIGNATURE_SSLRSA) { |
|
206 |
// The SunPKCS11 provider currently does not support this |
|
207 |
// special algorithm. We allow a fallback in this case because |
|
208 |
// the SunJSSE implementation does the actual crypto using |
|
209 |
// a NONEwithRSA signature obtained from the cryptoProvider. |
|
210 |
if (cryptoProvider.getService("Signature", algorithm) == null) { |
|
9246
c459f79af46b
6976117: SSLContext.getInstance("TLSv1.1") returns SSLEngines/SSLSockets without TLSv1.1 enabled
xuelei
parents:
5506
diff
changeset
|
211 |
// Calling Signature.getInstance() and catching the |
c459f79af46b
6976117: SSLContext.getInstance("TLSv1.1") returns SSLEngines/SSLSockets without TLSv1.1 enabled
xuelei
parents:
5506
diff
changeset
|
212 |
// exception would be cleaner, but exceptions are a little |
c459f79af46b
6976117: SSLContext.getInstance("TLSv1.1") returns SSLEngines/SSLSockets without TLSv1.1 enabled
xuelei
parents:
5506
diff
changeset
|
213 |
// expensive. So we check directly via getService(). |
2 | 214 |
try { |
215 |
return Signature.getInstance(algorithm, "SunJSSE"); |
|
216 |
} catch (NoSuchProviderException e) { |
|
217 |
throw new NoSuchAlgorithmException(e); |
|
218 |
} |
|
219 |
} |
|
220 |
} |
|
221 |
return Signature.getInstance(algorithm, cryptoProvider); |
|
222 |
} |
|
223 |
} |
|
224 |
||
225 |
static KeyGenerator getKeyGenerator(String algorithm) |
|
226 |
throws NoSuchAlgorithmException { |
|
227 |
if (cryptoProvider == null) { |
|
228 |
return KeyGenerator.getInstance(algorithm); |
|
229 |
} else { |
|
230 |
return KeyGenerator.getInstance(algorithm, cryptoProvider); |
|
231 |
} |
|
232 |
} |
|
233 |
||
234 |
static KeyPairGenerator getKeyPairGenerator(String algorithm) |
|
235 |
throws NoSuchAlgorithmException { |
|
236 |
if (cryptoProvider == null) { |
|
237 |
return KeyPairGenerator.getInstance(algorithm); |
|
238 |
} else { |
|
239 |
return KeyPairGenerator.getInstance(algorithm, cryptoProvider); |
|
240 |
} |
|
241 |
} |
|
242 |
||
243 |
static KeyAgreement getKeyAgreement(String algorithm) |
|
244 |
throws NoSuchAlgorithmException { |
|
245 |
if (cryptoProvider == null) { |
|
246 |
return KeyAgreement.getInstance(algorithm); |
|
247 |
} else { |
|
248 |
return KeyAgreement.getInstance(algorithm, cryptoProvider); |
|
249 |
} |
|
250 |
} |
|
251 |
||
252 |
static Mac getMac(String algorithm) |
|
253 |
throws NoSuchAlgorithmException { |
|
254 |
if (cryptoProvider == null) { |
|
255 |
return Mac.getInstance(algorithm); |
|
256 |
} else { |
|
257 |
return Mac.getInstance(algorithm, cryptoProvider); |
|
258 |
} |
|
259 |
} |
|
260 |
||
261 |
static KeyFactory getKeyFactory(String algorithm) |
|
262 |
throws NoSuchAlgorithmException { |
|
263 |
if (cryptoProvider == null) { |
|
264 |
return KeyFactory.getInstance(algorithm); |
|
265 |
} else { |
|
266 |
return KeyFactory.getInstance(algorithm, cryptoProvider); |
|
267 |
} |
|
268 |
} |
|
269 |
||
39563
1449ed425710
8148516: Improve the default strength of EC in JDK
xuelei
parents:
34826
diff
changeset
|
270 |
static AlgorithmParameters getAlgorithmParameters(String algorithm) |
1449ed425710
8148516: Improve the default strength of EC in JDK
xuelei
parents:
34826
diff
changeset
|
271 |
throws NoSuchAlgorithmException { |
1449ed425710
8148516: Improve the default strength of EC in JDK
xuelei
parents:
34826
diff
changeset
|
272 |
if (cryptoProvider == null) { |
1449ed425710
8148516: Improve the default strength of EC in JDK
xuelei
parents:
34826
diff
changeset
|
273 |
return AlgorithmParameters.getInstance(algorithm); |
1449ed425710
8148516: Improve the default strength of EC in JDK
xuelei
parents:
34826
diff
changeset
|
274 |
} else { |
1449ed425710
8148516: Improve the default strength of EC in JDK
xuelei
parents:
34826
diff
changeset
|
275 |
return AlgorithmParameters.getInstance(algorithm, cryptoProvider); |
1449ed425710
8148516: Improve the default strength of EC in JDK
xuelei
parents:
34826
diff
changeset
|
276 |
} |
1449ed425710
8148516: Improve the default strength of EC in JDK
xuelei
parents:
34826
diff
changeset
|
277 |
} |
1449ed425710
8148516: Improve the default strength of EC in JDK
xuelei
parents:
34826
diff
changeset
|
278 |
|
2 | 279 |
static SecureRandom getSecureRandom() throws KeyManagementException { |
280 |
if (cryptoProvider == null) { |
|
281 |
return new SecureRandom(); |
|
282 |
} |
|
283 |
// Try "PKCS11" first. If that is not supported, iterate through |
|
284 |
// the provider and return the first working implementation. |
|
285 |
try { |
|
286 |
return SecureRandom.getInstance("PKCS11", cryptoProvider); |
|
287 |
} catch (NoSuchAlgorithmException e) { |
|
288 |
// ignore |
|
289 |
} |
|
290 |
for (Provider.Service s : cryptoProvider.getServices()) { |
|
291 |
if (s.getType().equals("SecureRandom")) { |
|
292 |
try { |
|
56542 | 293 |
return SecureRandom.getInstance( |
294 |
s.getAlgorithm(), cryptoProvider); |
|
2 | 295 |
} catch (NoSuchAlgorithmException ee) { |
296 |
// ignore |
|
297 |
} |
|
298 |
} |
|
299 |
} |
|
300 |
throw new KeyManagementException("FIPS mode: no SecureRandom " |
|
301 |
+ " implementation found in provider " + cryptoProvider.getName()); |
|
302 |
} |
|
303 |
||
304 |
static MessageDigest getMD5() { |
|
305 |
return getMessageDigest("MD5"); |
|
306 |
} |
|
307 |
||
308 |
static MessageDigest getSHA() { |
|
309 |
return getMessageDigest("SHA"); |
|
310 |
} |
|
311 |
||
312 |
static MessageDigest getMessageDigest(String algorithm) { |
|
313 |
try { |
|
314 |
if (cryptoProvider == null) { |
|
315 |
return MessageDigest.getInstance(algorithm); |
|
316 |
} else { |
|
317 |
return MessageDigest.getInstance(algorithm, cryptoProvider); |
|
318 |
} |
|
319 |
} catch (NoSuchAlgorithmException e) { |
|
320 |
throw new RuntimeException |
|
321 |
("Algorithm " + algorithm + " not available", e); |
|
322 |
} |
|
323 |
} |
|
324 |
||
325 |
static int getRSAKeyLength(PublicKey key) { |
|
326 |
BigInteger modulus; |
|
327 |
if (key instanceof RSAPublicKey) { |
|
328 |
modulus = ((RSAPublicKey)key).getModulus(); |
|
329 |
} else { |
|
330 |
RSAPublicKeySpec spec = getRSAPublicKeySpec(key); |
|
331 |
modulus = spec.getModulus(); |
|
332 |
} |
|
333 |
return modulus.bitLength(); |
|
334 |
} |
|
335 |
||
336 |
static RSAPublicKeySpec getRSAPublicKeySpec(PublicKey key) { |
|
337 |
if (key instanceof RSAPublicKey) { |
|
338 |
RSAPublicKey rsaKey = (RSAPublicKey)key; |
|
339 |
return new RSAPublicKeySpec(rsaKey.getModulus(), |
|
340 |
rsaKey.getPublicExponent()); |
|
341 |
} |
|
342 |
try { |
|
343 |
KeyFactory factory = JsseJce.getKeyFactory("RSA"); |
|
51 | 344 |
return factory.getKeySpec(key, RSAPublicKeySpec.class); |
2 | 345 |
} catch (Exception e) { |
10336
0bb1999251f8
7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents:
9691
diff
changeset
|
346 |
throw new RuntimeException(e); |
2 | 347 |
} |
348 |
} |
|
349 |
||
350 |
static ECParameterSpec getECParameterSpec(String namedCurveOid) { |
|
17491
7a33824ec8c5
7194075: Various classes of sunec.jar are duplicated in rt.jar
vinnie
parents:
16913
diff
changeset
|
351 |
return ECUtil.getECParameterSpec(cryptoProvider, namedCurveOid); |
2 | 352 |
} |
353 |
||
354 |
static String getNamedCurveOid(ECParameterSpec params) { |
|
17491
7a33824ec8c5
7194075: Various classes of sunec.jar are duplicated in rt.jar
vinnie
parents:
16913
diff
changeset
|
355 |
return ECUtil.getCurveName(cryptoProvider, params); |
2 | 356 |
} |
357 |
||
358 |
static ECPoint decodePoint(byte[] encoded, EllipticCurve curve) |
|
359 |
throws java.io.IOException { |
|
17491
7a33824ec8c5
7194075: Various classes of sunec.jar are duplicated in rt.jar
vinnie
parents:
16913
diff
changeset
|
360 |
return ECUtil.decodePoint(encoded, curve); |
2 | 361 |
} |
362 |
||
363 |
static byte[] encodePoint(ECPoint point, EllipticCurve curve) { |
|
17491
7a33824ec8c5
7194075: Various classes of sunec.jar are duplicated in rt.jar
vinnie
parents:
16913
diff
changeset
|
364 |
return ECUtil.encodePoint(point, curve); |
2 | 365 |
} |
366 |
||
367 |
// In FIPS mode, set thread local providers; otherwise a no-op. |
|
368 |
// Must be paired with endFipsProvider. |
|
369 |
static Object beginFipsProvider() { |
|
370 |
if (fipsProviderList == null) { |
|
371 |
return null; |
|
372 |
} else { |
|
373 |
return Providers.beginThreadProviderList(fipsProviderList); |
|
374 |
} |
|
375 |
} |
|
376 |
||
377 |
static void endFipsProvider(Object o) { |
|
378 |
if (fipsProviderList != null) { |
|
379 |
Providers.endThreadProviderList((ProviderList)o); |
|
380 |
} |
|
381 |
} |
|
382 |
||
34826 | 383 |
|
384 |
// lazy initialization holder class idiom for static default parameters |
|
385 |
// |
|
386 |
// See Effective Java Second Edition: Item 71. |
|
387 |
private static class EcAvailability { |
|
388 |
// Is EC crypto available? |
|
56542 | 389 |
private static final boolean isAvailable; |
34826 | 390 |
|
391 |
static { |
|
392 |
boolean mediator = true; |
|
393 |
try { |
|
394 |
JsseJce.getSignature(SIGNATURE_ECDSA); |
|
395 |
JsseJce.getSignature(SIGNATURE_RAWECDSA); |
|
396 |
JsseJce.getKeyAgreement("ECDH"); |
|
397 |
JsseJce.getKeyFactory("EC"); |
|
398 |
JsseJce.getKeyPairGenerator("EC"); |
|
39563
1449ed425710
8148516: Improve the default strength of EC in JDK
xuelei
parents:
34826
diff
changeset
|
399 |
JsseJce.getAlgorithmParameters("EC"); |
34826 | 400 |
} catch (Exception e) { |
401 |
mediator = false; |
|
402 |
} |
|
403 |
||
404 |
isAvailable = mediator; |
|
405 |
} |
|
406 |
} |
|
2 | 407 |
} |