1 #
   2 # Copyright (c) 2017, 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 TESTTOOLVMOPTS="$TESTTOOLVMOPTS -J-Duser.language=en -J-Duser.country=US"
  35 
  36 KS=ks
  37 KEYTOOL="$TESTJAVA/bin/keytool ${TESTTOOLVMOPTS} -keystore ks -storepass changeit -keypass changeit"
  38 
  39 rm $KS 2> /dev/null
  40 
  41 $KEYTOOL -genkeypair -alias ca -dname CN=CA -keyalg EC || exit 1
  42 $KEYTOOL -genkeypair -alias user -dname CN=User -keyalg RSA -keysize 1024 || exit 2
  43 $KEYTOOL -certreq -alias user |
  44         $KEYTOOL -gencert -alias ca -rfc -sigalg SHA1withECDSA |
  45         $KEYTOOL -printcert > user.dump || exit 3
  46 
  47 cat user.dump | grep "Signature algorithm name:" | grep SHA1withECDSA || exit 4
  48 cat user.dump | grep "Subject Public Key Algorithm:" | grep RSA | grep 1024 || exit 5
  49