test/jdk/sun/security/tools/keytool/ExportPrivateKeyNoPwd.java
author xuelei
Mon, 25 Jun 2018 13:41:39 -0700
changeset 50768 68fa3d4026ea
parent 47216 71c04702a3d5
permissions -rw-r--r--
8196584: TLS 1.3 Implementation Reviewed-by: ascarpino, coffeys, dfuchs, jjiang, jnimeh, mullan, rhalade, ssahoo, valeriep, weijun, wetmore, xuelei Contributed-by: Adam Petcher <adam.petcher@oracle.com>, Amanda Jiang <amanda.jiang@oracle.com>, Anthony Scarpino <anthony.scarpino@oracle.com>, Bradford Wetmore <bradford.wetmore@oracle.com>, Jamil Nimeh <jamil.j.nimeh@oracle.com>, John Jiang <sha.jiang@oracle.com>, Rajan Halade <rajan.halade@oracle.com>, Sibabrata Sahoo <sibabrata.sahoo@oracle.com>, Valerie Peng <valerie.peng@oracle.com>, Weijun Wang <weijun.wang@oracle.com>, Xuelei Fan <xuelei.fan@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
27291
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
     1
/*
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
     4
 *
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
     7
 * published by the Free Software Foundation.
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
     8
 *
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    13
 * accompanied this code).
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    14
 *
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    18
 *
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    21
 * questions.
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    22
 */
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    23
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    24
import java.security.*;
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    25
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    26
/*
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    27
 * Export a private key from the named keychain entry without supplying a
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    28
 * password. See JDK-8062264.
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    29
 *
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    30
 * NOTE: Keychain access controls must already have been lowered to permit
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    31
 *       the target entry to be accessed.
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    32
 */
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    33
public class ExportPrivateKeyNoPwd {
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    34
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    35
    public static final void main(String[] args) throws Exception {
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    36
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    37
        if (args.length != 1) {
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    38
            throw new Exception(
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    39
                "ExportPrivateKeyNoPwd: must supply name of a keystore entry");
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    40
        }
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    41
        String alias = args[0];
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    42
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    43
        KeyStore ks = KeyStore.getInstance("KeychainStore");
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    44
        System.out.println("ExportPrivateKeyNoPwd: loading keychains...");
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    45
        ks.load(null, null);
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    46
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    47
        System.out.println("ExportPrivateKeyNoPwd: exporting key...");
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    48
        Key key = ks.getKey(alias, null);
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    49
        if (key instanceof PrivateKey) {
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    50
            System.out.println("ExportPrivateKeyNoPwd: exported " +
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    51
                key.getAlgorithm() + " private key from '" + alias + "'");
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    52
        } else {
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    53
            throw new Exception("Error exporting private key from keychain");
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    54
        }
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    55
    }
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    56
}
42769f9ca831 8062264: KeychainStore requires non-null password to be supplied when retrieving a private key
vinnie
parents:
diff changeset
    57