jdk/test/sun/security/tools/keytool/keyalg.sh
author weijun
Tue, 14 Oct 2014 10:07:44 +0800
changeset 27038 64cb6608f8a6
child 40262 1b3dd37cb96d
permissions -rw-r--r--
8029659: Keytool, print key algorithm of certificate or key entry Reviewed-by: xuelei
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
27038
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
     1
#
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
     2
# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
     4
#
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
     7
# published by the Free Software Foundation.
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
     8
#
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    13
# accompanied this code).
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    14
#
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    18
#
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    21
# questions.
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    22
#
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    23
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    24
# @test
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    25
# @bug 8029659
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    26
# @summary Keytool, print key algorithm of certificate or key entry
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    27
#
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    28
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    29
if [ "${TESTJAVA}" = "" ] ; then
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    30
  JAVAC_CMD=`which javac`
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    31
  TESTJAVA=`dirname $JAVAC_CMD`/..
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    32
fi
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    33
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    34
KS=ks
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    35
KEYTOOL="$TESTJAVA/bin/keytool ${TESTTOOLVMOPTS} -keystore ks -storepass changeit -keypass changeit"
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    36
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    37
rm $KS 2> /dev/null
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    38
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    39
$KEYTOOL -genkeypair -alias ca -dname CN=CA -keyalg EC || exit 1
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    40
$KEYTOOL -genkeypair -alias user -dname CN=User -keyalg RSA -keysize 1024 || exit 2
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    41
$KEYTOOL -certreq -alias user |
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    42
        $KEYTOOL -gencert -alias ca -rfc -sigalg SHA1withECDSA |
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    43
        $KEYTOOL -printcert > user.dump || exit 3
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    44
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    45
cat user.dump | grep "Signature algorithm name:" | grep SHA1withECDSA || exit 4
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    46
cat user.dump | grep "Subject Public Key Algorithm:" | grep RSA | grep 1024 || exit 5
64cb6608f8a6 8029659: Keytool, print key algorithm of certificate or key entry
weijun
parents:
diff changeset
    47