TestCACerts.java revision 4479:cb83fe13af98
1/*
2 * Copyright (c) 2003, 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/**
25 * @test
26 * @bug 4856966
27 * @summary Test the new RSA provider can verify all the RSA certs in the cacerts file
28 * @author Andreas Sterbenz
29 * @library ..
30 */
31
32// this test serves as our known answer test
33
34import java.io.*;
35import java.util.*;
36
37import java.security.*;
38import java.security.cert.*;
39
40public class TestCACerts extends PKCS11Test {
41
42    private final static char SEP = File.separatorChar;
43
44    public static void main(String[] args) throws Exception {
45        main(new TestCACerts());
46    }
47
48    public void main(Provider p) throws Exception {
49        long start = System.currentTimeMillis();
50        Security.addProvider(p);
51        try {
52            String PROVIDER = p.getName();
53            String javaHome = System.getProperty("java.home");
54            String caCerts = javaHome + SEP + "lib" + SEP + "security" + SEP + "cacerts";
55            InputStream in = new FileInputStream(caCerts);
56            KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType());
57            ks.load(in, null);
58            in.close();
59            for (Enumeration e = ks.aliases(); e.hasMoreElements(); ) {
60                String alias = (String)e.nextElement();
61                if (ks.isCertificateEntry(alias)) {
62                    System.out.println("* Testing " + alias + "...");
63                    X509Certificate cert = (X509Certificate)ks.getCertificate(alias);
64                    PublicKey key = cert.getPublicKey();
65                    String alg = key.getAlgorithm();
66                    if (alg.equals("RSA")) {
67                        System.out.println("Signature algorithm: " + cert.getSigAlgName());
68                        cert.verify(key, PROVIDER);
69                    } else {
70                        System.out.println("Skipping cert with key: " + alg);
71                    }
72                } else {
73                    System.out.println("Skipping alias " + alias);
74                }
75            }
76            long stop = System.currentTimeMillis();
77            System.out.println("All tests passed (" + (stop - start) + " ms).");
78        } finally {
79            Security.removeProvider(p.getName());
80        }
81    }
82}
83