Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/sun/security/ssl/rsa/CheckProviderEntries.java
41152 views
1
/*
2
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
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
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
import java.security.*;
25
import java.util.Iterator;
26
import java.security.Provider.Service;
27
28
/*
29
* @test
30
* @bug 8220016
31
* @summary This test checks the RSA-related services in SunJSSE provider
32
*/
33
public class CheckProviderEntries {
34
35
private static boolean testResult = true;
36
37
private static void error(String msg) {
38
testResult = false;
39
System.out.println(msg);
40
}
41
public static void main(String[] args) throws NoSuchAlgorithmException,
42
InvalidKeyException, SignatureException {
43
Provider p = Security.getProvider("SunJSSE");
44
Iterator<Provider.Service> iter = p.getServices().iterator();
45
while (iter.hasNext()) {
46
Service s = iter.next();
47
String type = s.getType();
48
String algo = s.getAlgorithm();
49
System.out.println("Type: " + type + " " + algo);
50
try {
51
if (algo.indexOf("RSA") != -1) {
52
// only MD5andSHA1withRSA signature support
53
// error out on any other RSA support
54
if (type.equals("Signature") &&
55
algo.equals("MD5andSHA1withRSA")) {
56
s.newInstance(null);
57
continue;
58
}
59
error("Error: unexpected RSA services");
60
}
61
} catch (NoSuchAlgorithmException | InvalidParameterException e) {
62
error("Error: cannot create obj " + e);
63
}
64
}
65
if (testResult) {
66
System.out.println("Test Passed");
67
} else {
68
throw new RuntimeException("One or more tests failed");
69
}
70
}
71
}
72
73