jdk/test/sun/security/tools/jarsigner/ec.sh
author weijun
Fri, 25 Apr 2014 10:57:09 +0800
changeset 24116 9f9b4ba34aad
parent 11844 861c6a6c78de
child 34382 5d11306d6969
permissions -rw-r--r--
8040321: keytool and jarsigner tests doesn't pass though VM tools to tools Reviewed-by: alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4152
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
     1
#
11844
861c6a6c78de 7142888: sun/security/tools/jarsigner/ec.sh fail on sparc
vinnie
parents: 5506
diff changeset
     2
# Copyright (c) 2009, 2012, Oracle and/or its affiliates. All rights reserved.
4152
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
     4
#
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
     7
# published by the Free Software Foundation.
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
     8
#
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    13
# accompanied this code).
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    14
#
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    18
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4152
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4152
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4152
diff changeset
    21
# questions.
4152
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    22
#
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    23
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    24
# @test
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    25
# @bug 6870812
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    26
# @summary enhance security tools to use ECC algorithm
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    27
#
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    28
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    29
if [ "${TESTJAVA}" = "" ] ; then
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    30
  JAVAC_CMD=`which javac`
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    31
  TESTJAVA=`dirname $JAVAC_CMD`/..
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    32
fi
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    33
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    34
# set platform-dependent variables
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    35
OS=`uname -s`
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    36
case "$OS" in
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    37
  Windows_* )
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    38
    FS="\\"
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    39
    ;;
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    40
  * )
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    41
    FS="/"
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    42
    ;;
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    43
esac
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    44
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    45
KS=ec.jks
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    46
JFILE=ec.jar
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    47
24116
9f9b4ba34aad 8040321: keytool and jarsigner tests doesn't pass though VM tools to tools
weijun
parents: 11844
diff changeset
    48
KT="$TESTJAVA${FS}bin${FS}keytool ${TESTTOOLVMOPTS} -storepass changeit -keypass changeit -keystore $KS"
9f9b4ba34aad 8040321: keytool and jarsigner tests doesn't pass though VM tools to tools
weijun
parents: 11844
diff changeset
    49
JAR="$TESTJAVA${FS}bin${FS}jar ${TESTTOOLVMOPTS}"
9f9b4ba34aad 8040321: keytool and jarsigner tests doesn't pass though VM tools to tools
weijun
parents: 11844
diff changeset
    50
JARSIGNER="$TESTJAVA${FS}bin${FS}jarsigner ${TESTTOOLVMOPTS}"
4152
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    51
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    52
rm $KS $JFILE
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    53
echo A > A
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    54
$JAR cvf $JFILE A
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    55
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    56
$KT -alias a -dname CN=a -keyalg ec -genkey -validity 300 || exit 11
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    57
$KT -alias b -dname CN=b -keyalg ec -genkey -validity 300 || exit 12
11844
861c6a6c78de 7142888: sun/security/tools/jarsigner/ec.sh fail on sparc
vinnie
parents: 5506
diff changeset
    58
# Ensure that key length is sufficient for the intended hash (SHA512withECDSA)
861c6a6c78de 7142888: sun/security/tools/jarsigner/ec.sh fail on sparc
vinnie
parents: 5506
diff changeset
    59
$KT -alias c -dname CN=c -keyalg ec -genkey -validity 300 -keysize 521 || exit 13
4152
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    60
$KT -alias x -dname CN=x -keyalg ec -genkey -validity 300 || exit 14
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    61
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    62
$JARSIGNER -keystore $KS -storepass changeit $JFILE a -debug -strict || exit 21
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    63
$JARSIGNER -keystore $KS -storepass changeit $JFILE b -debug -strict -sigalg SHA1withECDSA || exit 22
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    64
$JARSIGNER -keystore $KS -storepass changeit $JFILE c -debug -strict -sigalg SHA512withECDSA || exit 23
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    65
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    66
$JARSIGNER -keystore $KS -storepass changeit -verify $JFILE a -debug -strict || exit 31
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    67
$JARSIGNER -keystore $KS -storepass changeit -verify $JFILE b -debug -strict || exit 32
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    68
$JARSIGNER -keystore $KS -storepass changeit -verify $JFILE c -debug -strict || exit 33
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    69
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    70
# Not signed by x, should exit with non-zero
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    71
$JARSIGNER -keystore $KS -storepass changeit -verify $JFILE x -debug -strict && exit 34
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    72
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    73
exit 0
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents:
diff changeset
    74