jdk/test/sun/security/pkcs11/rsa/TestCACerts.java
changeset 2 90ce3da70b43
child 5506 202f599c92aa
equal deleted inserted replaced
0:fd16c54261b3 2:90ce3da70b43
       
     1 /*
       
     2  * Copyright 2003 Sun Microsystems, Inc.  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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
       
    20  * CA 95054 USA or visit www.sun.com if you need additional information or
       
    21  * have any 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 
       
    34 import java.io.*;
       
    35 import java.util.*;
       
    36 
       
    37 import java.security.*;
       
    38 import java.security.cert.*;
       
    39 
       
    40 public 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         String PROVIDER = p.getName();
       
    52         String javaHome = System.getProperty("java.home");
       
    53         String caCerts = javaHome + SEP + "lib" + SEP + "security" + SEP + "cacerts";
       
    54         InputStream in = new FileInputStream(caCerts);
       
    55         KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType());
       
    56         ks.load(in, null);
       
    57         in.close();
       
    58         for (Enumeration e = ks.aliases(); e.hasMoreElements(); ) {
       
    59             String alias = (String)e.nextElement();
       
    60             if (ks.isCertificateEntry(alias)) {
       
    61                 System.out.println("* Testing " + alias + "...");
       
    62                 X509Certificate cert = (X509Certificate)ks.getCertificate(alias);
       
    63                 PublicKey key = cert.getPublicKey();
       
    64                 String alg = key.getAlgorithm();
       
    65                 if (alg.equals("RSA")) {
       
    66                     System.out.println("Signature algorithm: " + cert.getSigAlgName());
       
    67                     cert.verify(key, PROVIDER);
       
    68                 } else {
       
    69                     System.out.println("Skipping cert with key: " + alg);
       
    70                 }
       
    71             } else {
       
    72                 System.out.println("Skipping alias " + alias);
       
    73             }
       
    74         }
       
    75         long stop = System.currentTimeMillis();
       
    76         System.out.println("All tests passed (" + (stop - start) + " ms).");
       
    77     }
       
    78 
       
    79 }