jdk/test/sun/security/validator/CertReplace.java
changeset 5753 e0ee3917e318
parent 5613 1146efa21514
child 5782 50575882b36f
equal deleted inserted replaced
5752:02bd145a47f6 5753:e0ee3917e318
       
     1 /*
       
     2  * Copyright 2010 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  * This test is called by certreplace.sh
       
    26  */
       
    27 
       
    28 import java.io.FileInputStream;
       
    29 import java.security.KeyStore;
       
    30 import java.security.cert.Certificate;
       
    31 import java.security.cert.CertificateFactory;
       
    32 import java.security.cert.X509Certificate;
       
    33 import java.util.Arrays;
       
    34 import java.util.ArrayList;
       
    35 import java.util.List;
       
    36 import sun.security.validator.Validator;
       
    37 
       
    38 public class CertReplace {
       
    39 
       
    40     private final static String cacerts = "certreplace.jks";
       
    41     private final static String certs = "certreplace.certs";
       
    42 
       
    43     public static void main(String[] args) throws Exception {
       
    44 
       
    45         KeyStore ks = KeyStore.getInstance("JKS");
       
    46         ks.load(new FileInputStream(cacerts), "changeit".toCharArray());
       
    47         Validator v = Validator.getInstance
       
    48             (Validator.TYPE_PKIX, Validator.VAR_GENERIC, ks);
       
    49         X509Certificate[] chain = createPath();
       
    50         System.out.println(Arrays.toString(v.validate(chain)));
       
    51 
       
    52     }
       
    53 
       
    54     public static X509Certificate[] createPath() throws Exception {
       
    55         CertificateFactory cf = CertificateFactory.getInstance("X.509");
       
    56         List list = new ArrayList();
       
    57         for (Certificate c: cf.generateCertificates(
       
    58                 new FileInputStream(certs))) {
       
    59             list.add((X509Certificate)c);
       
    60         }
       
    61         return (X509Certificate[]) list.toArray(new X509Certificate[0]);
       
    62     }
       
    63 }