File: WriteP12Test.java

package info (click to toggle)
openjdk-11 11.0.4%2B11-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 757,028 kB
  • sloc: java: 5,016,041; xml: 1,191,974; cpp: 934,731; ansic: 555,697; sh: 24,299; objc: 12,703; python: 3,602; asm: 3,415; makefile: 2,772; awk: 351; sed: 172; perl: 114; jsp: 24; csh: 3
file content (371 lines) | stat: -rw-r--r-- 18,058 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
/*
 * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

import static java.lang.System.out;

import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.security.Key;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
import java.security.UnrecoverableKeyException;
import java.security.cert.Certificate;
import java.security.cert.CertificateException;
import java.security.cert.CertificateFactory;
import java.security.cert.X509Certificate;
import java.util.Arrays;
import java.util.Base64;
import java.util.Enumeration;

/*
 * @test
 * @bug 8048618
 * @summary Write different types p12 key store to Check the write related
 *  APIs.
 * @run main WriteP12Test
 */

public class WriteP12Test {

    private static final String IN_KEYSTORE_TYPE = "jks";
    private static final String IN_KEYSTORE_PRV = "SUN";

    private static final String IN_KEYSTORE_ENDUSER = "keystoreEU.jks.data";
    private static final String IN_KEYSTORE_CA = "keystoreCA.jks.data";
    private static final String OUT_KEYSTORE = "outKeyStore.p12";

    private static final String IN_STORE_PASS = "storepass";
    private static final String IN_KEY_PASS = "keypass";

    private static final String CERT_PATH = System.getProperty("test.src", ".")
            + File.separator + "certs" + File.separator + "writeP12"
            + File.separator;

    private static final String CA_CERT_STR = "-----BEGIN CERTIFICATE-----\n"
            + "MIIDFzCCAf8CBD8+0nAwDQYJKoZIhvcNAQEFBQAwUDELMAkGA1UEBhMCV\n"
            + "VMxETAPBgNVBAoTCEphdmFTb2Z0MRUwEwYDVQQLEwxTZWN1cml0eSBTUU\n"
            + "UxFzAVBgNVBAMTDlBLQ1MxMiBUZXN0IENBMB4XDTAzMDgxNzAwNTUxMlo\n"
            + "XDTEzMDgxNDAwNTUxMlowUDELMAkGA1UEBhMCVVMxETAPBgNVBAoTCEph\n"
            + "dmFTb2Z0MRUwEwYDVQQLEwxTZWN1cml0eSBTUUUxFzAVBgNVBAMTDlBLQ\n"
            + "1MxMiBUZXN0IENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQ\n"
            + "EAk7Sh+K/yGsmJacZnjfkZfuWxGNJCPW0q69exwoRP+eBHMQwG00yi9aL\n"
            + "SsZAqNpJSCDvpgySOAUmBd+f8WFhHqJfRVREVfv3mradDKZCjhqtsUI7I\n"
            + "wRTYYy9clFkeeK4dHaxbuFMPpUu7yQfwSTXgvOA/UJ4kJuGtaYAdTJI4e\n"
            + "f1mUASo6+dea0UZA/FHCuV7O6z3hr5VHlyhJL2/o/8M5tGBTBISODJSnn\n"
            + "GNBvtQLNHnWYvs470UAE2BtuCGYh1V/3HAH1tRirS3MBBcb1XnIkiiXR3\n"
            + "tjaBSB+XhoCfuG8KtInXXFaAnvKfY9mYFw6VJt9JYQpY2VDC7281/Pbz0\n"
            + "dQIDAQABMA0GCSqGSIb3DQEBBQUAA4IBAQBzXZ8zHWrnC8/E+N/n2Czhx\n"
            + "i18YQc2LPWBDLYTTxoFEazWmYLv1k/JT7Nta1qu1quvxXJ4uV1XHbd9NF\n"
            + "AJWKwtFQEpfv4o6I7qWUPoxnfA+jyqKXxv27z25tzt+Y4xOEhqvO03G0Q\n"
            + "imhkiNt9MF7L69y2U0/U73+uFNGzdAEDiI9EibvICiOnr1TeQ5GekK3Yb\n"
            + "k5qe3lviMZPkkSXepTJI8m0AiXCji+eXj97jVLeH+RxeBchBY+uELrqUr\n"
            + "sVOVWh7IBCqC/V7FqUTkmD1IFlzkkinatpl42s1MbhJId2yQkzaeBRc\n"
            + "suE63bDEtuRWp9ynMO3QA4Yu85uBRWGzQ1Di\n"
            + "-----END CERTIFICATE-----";
    private static final String LEAD_CERT = "-----BEGIN CERTIFICATE-----\n"
            + "MIICwDCCAaigAwIBAgIEPz7S1jANBgkqhkiG9w0BAQQFADBQMQswCQYDV\n"
            + "QQGEwJVUzERMA8GA1UEChMISmF2YVNvZnQxFTATBgNVBAsTDFNlY3VyaX\n"
            + "R5IFNRRTEXMBUGA1UEAxMOUEtDUzEyIFRlc3QgQ0EwHhcNMDAwODA5MDc\n"
            + "wMDAwWhcNMTAwODA3MDcwMDAwWjBSMQswCQYDVQQGEwJVUzERMA8GA1UE\n"
            + "ChMISmF2YVNvZnQxFTATBgNVBAsTDFNlY3VyaXR5IFNRRTEZMBcGA1UEA\n"
            + "xMQUEtDUzEyIFRlc3QgTGVhZDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgY\n"
            + "kCgYEAzq9X2USz/WjDhT+jUyZWqB5h4A33tS11YqH5qYvqjTXjcUI6gOp\n"
            + "moXMafDG9RHRlIccvp51xLp7Ap3WMrv411lWBttqtZi5c1/DEC1cEM/Sl\n"
            + "PCk1r2zFbkJu7QKieXeMcrjZEo6LcBHMwQjIpI+up9cr3VjuyqG/olQkU\n"
            + "mXVuS0CAwEAAaMkMCIwDwYDVR0PAQH/BAUDAweAADAPBgNVHRMBAf8EBT\n"
            + "ADAQH/MA0GCSqGSIb3DQEBBAUAA4IBAQBhbuim98TWmtv9vSldRE7RvQ8\n"
            + "FlS0TyZVO7kcSNtfCUE4R76J1ElN74Koc5pQnUtduLeQJs2ao/mEcCZsE\n"
            + "zVcwI3mSZrSzPhc8s7w5gOQA4TUwVLSSjKgBCaZ7R3+qJ3QeqPJ5O6sFz\n"
            + "pvBYkgSa4MWptK41jbmT8cwZQJXFCi8WxFFJ+p97F1Ppm3LgmYmtiUP4M\n"
            + "ZQwOBvpTZWXU0WrqFXpzWQx0mg4SX19fZm4nLcJAerCEUphf8ILagtpQM\n"
            + "EErT3/jg6mfCdT3Rj055QXPfF4OiRFevPF5a1fZgrCePCukRQZcd7s8K5\n"
            + "OBIaryuM0MdFtlzxi6XWeUNpVFFHURcy\n"
            + "-----END CERTIFICATE-----";
    private static final String END_CERT = "-----BEGIN CERTIFICATE-----\n"
            + "MIICNjCCAZ+gAwIBAgIEPz7WtzANBgkqhkiG9w0BAQQFADBSMQswCQYDV\n"
            + "QQGEwJVUzERMA8GA1UEChMISmF2YVNvZnQxFTATBgNVBAsTDFNlY3VyaX\n"
            + "R5IFNRRTEZMBcGA1UEAxMQUEtDUzEyIFRlc3QgTGVhZDAeFw0wMDA4MDk\n"
            + "wNzAwMDBaFw0xMDA4MDcwNzAwMDBaMFgxCzAJBgNVBAYTAlVTMREwDwYD\n"
            + "VQQKEwhKYXZhU29mdDEVMBMGA1UECxMMU2VjdXJpdHkgU1FFMR8wHQYDV\n"
            + "QQDExZQS0NTMTIgVGVzdCBFbmQgVXNlciAxMIGfMA0GCSqGSIb3DQEBAQ\n"
            + "UAA4GNADCBiQKBgQDIKomSYomDzH/V63eDQEG7od0DLcnnVZ81pbWhDss\n"
            + "8gHV2m8pADdRqdihBmnSQEaMW4D3uZ4sFE1LtkQls6hjd7SdOsG5Y24L8\n"
            + "15jot9a2JcB73H8H0VKirrObL5BZdt7BtASPDnYtW4Spt++YjDoJFxyF0\n"
            + "HchkavzXaVTlexakwIDAQABoxMwETAPBgNVHQ8BAf8EBQMDB4AAMA0GCS\n"
            + "qGSIb3DQEBBAUAA4GBAIFA3JXEmb9AXn3RD7t+Mn6DoyVDIy5jsn6xOKT\n"
            + "JV25I0obpDUzgw4QaAMmM0ZvusOmZ2wZNS8MtyTUgdANyakbzn5SdxbTy\n"
            + "TLEqQsFbX8UVC38fx5ZM6ExA5YSAvgmXudZpOVC0ATccoZS3JFU8CxSfW\n"
            + "+Q3IC2MLh+QTg3hUJ5b\n-----END CERTIFICATE-----";

    private final Certificate testerCert;
    private final Certificate testLeadCert;
    private final Certificate caCert;

    WriteP12Test() throws CertificateException {
        CertificateFactory cf = CertificateFactory.getInstance("X.509");
        caCert = cf.generateCertificate(new ByteArrayInputStream(CA_CERT_STR
                .getBytes()));
        testLeadCert = cf.generateCertificate(new ByteArrayInputStream(
                LEAD_CERT.getBytes()));
        testerCert = cf.generateCertificate(new ByteArrayInputStream(END_CERT
                .getBytes()));
    }

    public static void main(String[] args) throws CertificateException,
            UnrecoverableKeyException, KeyStoreException,
            NoSuchProviderException, NoSuchAlgorithmException, IOException {
        WriteP12Test jstest = new WriteP12Test();
        out.println("test WriteP12CertChain");
        /*
         * WriteP12CertChain: This test creates a p12 keystore contains one
         * entry with private key and a certificate chains contains three
         * certificates in the order of user->lead->ca. This case expects to
         * pass.
         */
        jstest.test(new Certificate[] { jstest.testerCert, jstest.testLeadCert,
                jstest.caCert }, IN_KEYSTORE_ENDUSER, "pkcs12testenduser1",
                "pass", "pass");

        /*
         * WriteP12CertChainBad: same as WriteP12CertChain but chains order is
         * user-ca-lead, the order is wrong so expects to fail.
         */
        out.println("test WriteP12CertChainBad");
        try {
            jstest.test(new Certificate[] { jstest.testerCert, jstest.caCert,
                    jstest.testLeadCert }, IN_KEYSTORE_ENDUSER,
                    "pkcs12testenduser1", "pass", "pass");
            throw new RuntimeException(
                    " Certificate chain is not valid, test should not pass."
                            + " Test failed.");
        } catch (KeyStoreException e) {
            e.printStackTrace();
            out.println(" Certificate chain is not valid,exception is"
                    + " expected. Test passed.");
        }
        /*
         * WriteP12PrivateKey:This test creates a p12 contains a self-signed
         * cert and private key,expects no exception
         */
        out.println("test WriteP12PrivateKey");
        jstest.test(null, IN_KEYSTORE_ENDUSER, "pkcs12testenduser1", "pass",
                "pass");

        /*
         * WriteP12TwoEntry: This test creates a p12 keystore with different
         * storepass and keypass, and contains two entries.
         */
        out.println("test WriteP12TwoEntry");
        jstest.testTwoEntry(IN_KEYSTORE_ENDUSER, IN_KEYSTORE_CA,
                "pkcs12testenduser1", "pass", "pass");
        /*
         * WriteP12TwoPass: This test creates a p12 keystore with different
         * storepass and keypass, and contains one entry with private key and a
         * certificate
         */
        out.println("test WriteP12TwoPass");
        jstest.test(null, IN_KEYSTORE_CA, "pkcs12testCA", "storepass",
                "keypass");
    }

    private void test(Certificate certs[], String inKeyStorePath,
            String userAlias, String outStorePass, String outKeyPass)
            throws KeyStoreException, NoSuchProviderException, IOException,
            CertificateException, UnrecoverableKeyException,
            NoSuchAlgorithmException {
        // init output key store
        KeyStore outputKeyStore = KeyStore.getInstance("pkcs12", "SunJSSE");
        outputKeyStore.load(null, null);
        try (FileOutputStream fout = new FileOutputStream(OUT_KEYSTORE)) {
            // KeyStore have encoded by Base64.getMimeEncoder().encode(),need
            // decode first.
            byte[] input = Files.readAllBytes(Paths.get(CERT_PATH,
                    inKeyStorePath));
            ByteArrayInputStream arrayIn = new ByteArrayInputStream(Base64
                    .getMimeDecoder().decode(input));
            // input key store
            KeyStore inputKeyStore = KeyStore.getInstance(IN_KEYSTORE_TYPE,
                    IN_KEYSTORE_PRV);
            inputKeyStore.load(arrayIn, IN_STORE_PASS.toCharArray());
            // add key/certificate to output key store
            Key key = inputKeyStore
                    .getKey(userAlias, IN_KEY_PASS.toCharArray());
            out.println("Input Key Algorithm " + key.getAlgorithm());
            out.println("====Input Certs=====");
            if (certs == null) {
                certs = new Certificate[] { inputKeyStore
                        .getCertificate(userAlias) };
            }
            for (Certificate cert : certs) {
                out.println(((X509Certificate) cert).getSubjectDN());
            }
            outputKeyStore.setKeyEntry(userAlias, key,
                    outKeyPass.toCharArray(), certs);
            Certificate retCerts[] = outputKeyStore
                    .getCertificateChain(userAlias);
            out.println("====Output Certs=====");
            for (Certificate retCert : retCerts) {
                out.println(((X509Certificate) retCert).getSubjectDN());
            }
            out.println("====Output Key Algorithm=====");
            Key outKey = outputKeyStore.getKey(userAlias,
                    outKeyPass.toCharArray());
            out.println(outKey.getAlgorithm());

            if (!key.equals(outKey)) {
                throw new RuntimeException("key don't match");
            }
            if (!Arrays.equals(certs, retCerts)) {
                throw new RuntimeException("certs don't match");
            }
            // save output
            outputKeyStore.store(fout, outStorePass.toCharArray());
            // test output
            testKeyStore(outputKeyStore, outKeyPass.toCharArray());
        }
    }

    private void testTwoEntry(String inKeyStoreOnePath,
            String inKeyStoreTwoPath, String userAlias, String outStorePass,
            String outKeyPass) throws KeyStoreException,
            NoSuchProviderException, NoSuchAlgorithmException,
            CertificateException, IOException, UnrecoverableKeyException {
        // initial KeyStore
        KeyStore outputKeyStore = KeyStore.getInstance("pkcs12", "SunJSSE");
        try (FileOutputStream fout = new FileOutputStream(OUT_KEYSTORE);) {
            outputKeyStore.load(null, null);
            KeyStore inputKeyStoreOne, inputKeyStoreTwo;
            inputKeyStoreOne = KeyStore.getInstance(IN_KEYSTORE_TYPE,
                    IN_KEYSTORE_PRV);
            // KeyStore have encoded by Base64.getMimeEncoder().encode(),need
            // decode first.
            byte[] inputBytes = Files.readAllBytes(Paths.get(CERT_PATH,
                    inKeyStoreOnePath));
            ByteArrayInputStream arrayIn = new ByteArrayInputStream(Base64
                    .getMimeDecoder().decode(inputBytes));
            // input key store
            inputKeyStoreOne.load(arrayIn, IN_STORE_PASS.toCharArray());

            inputBytes = Files.readAllBytes(Paths.get(CERT_PATH,
                    inKeyStoreTwoPath));
            arrayIn = new ByteArrayInputStream(Base64.getMimeDecoder().decode(
                    inputBytes));
            inputKeyStoreTwo = KeyStore.getInstance(IN_KEYSTORE_TYPE,
                    IN_KEYSTORE_PRV);
            inputKeyStoreTwo.load(arrayIn, IN_STORE_PASS.toCharArray());

            // add key/certificate to output key store
            out.println("====First Entry=====");
            Key inputKey = inputKeyStoreOne.getKey(userAlias,
                    IN_KEY_PASS.toCharArray());
            Certificate cert = inputKeyStoreOne.getCertificate(userAlias);
            Certificate certs[] = new Certificate[1];
            certs[0] = cert;

            out.println("====Input1 Key=====");
            out.println(inputKey.getAlgorithm());
            out.println("====Input1 Certs=====");
            out.println("Certificate :");
            out.println(((X509Certificate) cert).getSubjectDN());
            outputKeyStore.setKeyEntry("USER", inputKey,
                    outKeyPass.toCharArray(), certs);
            out.println("====Second Entry=====");
            String caAlias = "pkcs12testca";
            inputKey = inputKeyStoreTwo.getKey(caAlias,
                    IN_KEY_PASS.toCharArray());
            cert = inputKeyStoreTwo.getCertificate(caAlias);
            certs[0] = cert;
            out.println("====Input2 Key=====");
            out.println(inputKey.getAlgorithm());
            out.println("====Input2 Certs=====");
            out.println("Certificate :");
            out.println(((X509Certificate) cert).getSubjectDN());
            outputKeyStore.setKeyEntry("CA", inputKey,
                    outKeyPass.toCharArray(), certs);
            // save output
            outputKeyStore.store(fout, outStorePass.toCharArray());
            // test output
            testKeyStore(outputKeyStore, outKeyPass.toCharArray());
        }
    }

    private void testKeyStore(KeyStore inputKeyStore, char[] keypass)
            throws KeyStoreException, UnrecoverableKeyException,
            NoSuchAlgorithmException {
        out.println("========== Key Store ==========");
        out.println("getProvider : " + inputKeyStore.getProvider());
        out.println("getType : " + inputKeyStore.getType());
        out.println("getDefaultType : " + KeyStore.getDefaultType());

        int idx = 0;
        Enumeration<String> e = inputKeyStore.aliases();
        String alias;
        while (e.hasMoreElements()) {
            alias = e.nextElement();
            if (!inputKeyStore.containsAlias(alias)) {
                throw new RuntimeException("Alias not found");
            }
            out.println("Alias " + idx + " : " + alias);
            out.println("getCreationDate : "
                    + inputKeyStore.getCreationDate(alias));
            X509Certificate cert = (X509Certificate) inputKeyStore
                    .getCertificate(alias);
            out.println("getCertificate : " + cert.getSubjectDN());
            String retAlias = inputKeyStore.getCertificateAlias(cert);
            if (!retAlias.equals(alias)) {
                throw new RuntimeException("Alias mismatch, actually "
                        + retAlias + ", expected " + alias);
            }
            out.println("getCertificateAlias : " + retAlias);
            Certificate[] certs = inputKeyStore.getCertificateChain(alias);
            int i = 0;
            for (Certificate certification : certs) {
                out.println("getCertificateChain " + i
                        + ((X509Certificate) certification).getSubjectDN());
                i++;
            }
            if (inputKeyStore.isCertificateEntry(alias)) {
                throw new RuntimeException(
                        "inputKeystore should not be certEntry because this"
                                + " keystore only contain key pair entries.");
            }
            if (!inputKeyStore.isKeyEntry(alias)) {
                throw new RuntimeException("Entry type unknown.");
            }
            idx++;
        }
        int size = inputKeyStore.size();
        if (idx != size) {
            throw new RuntimeException("Size not match, actually " + idx
                    + ", expected " + size);
        }
    }

}