jdk/test/sun/security/tools/keytool/keyalg.sh
changeset 27038 64cb6608f8a6
child 40262 1b3dd37cb96d
equal deleted inserted replaced
27037:5a6ef51923c4 27038:64cb6608f8a6
       
     1 #
       
     2 # Copyright (c) 2014, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    20 # or visit www.oracle.com if you need additional information or have any
       
    21 # questions.
       
    22 #
       
    23 
       
    24 # @test
       
    25 # @bug 8029659
       
    26 # @summary Keytool, print key algorithm of certificate or key entry
       
    27 #
       
    28 
       
    29 if [ "${TESTJAVA}" = "" ] ; then
       
    30   JAVAC_CMD=`which javac`
       
    31   TESTJAVA=`dirname $JAVAC_CMD`/..
       
    32 fi
       
    33 
       
    34 KS=ks
       
    35 KEYTOOL="$TESTJAVA/bin/keytool ${TESTTOOLVMOPTS} -keystore ks -storepass changeit -keypass changeit"
       
    36 
       
    37 rm $KS 2> /dev/null
       
    38 
       
    39 $KEYTOOL -genkeypair -alias ca -dname CN=CA -keyalg EC || exit 1
       
    40 $KEYTOOL -genkeypair -alias user -dname CN=User -keyalg RSA -keysize 1024 || exit 2
       
    41 $KEYTOOL -certreq -alias user |
       
    42         $KEYTOOL -gencert -alias ca -rfc -sigalg SHA1withECDSA |
       
    43         $KEYTOOL -printcert > user.dump || exit 3
       
    44 
       
    45 cat user.dump | grep "Signature algorithm name:" | grep SHA1withECDSA || exit 4
       
    46 cat user.dump | grep "Subject Public Key Algorithm:" | grep RSA | grep 1024 || exit 5
       
    47