diff options
106 files changed, 16 insertions, 1807 deletions
diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..fcab150 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "ext/sdks"] + path = ext/sdks + url = https://github.com/martinpaljak/oracle_javacard_sdks @@ -8,6 +8,7 @@ For more information on ECC support on JavaCards see the [github page](https://c ECTester uses ant. There are three parts of ECTester, the JavaCard applet used for testing, the reader app which controls it and the standalone app which tests software libraries. ```bash +git submodule update --init --recursive # To initialize submodules. ant -f build-reader.xml package # To build the reader tool (jar) -> "dist/ECTesterReader.jar" ant -f build-standalone.xml package # To build the standalone tool (jar) -> "dist/ECTesterStandalone.jar" ant -f build-applet.xml build # To build the applet (cap) -> "applet/ectester.cap". diff --git a/build-applet.xml b/build-applet.xml index 9d7d4d6..f8f15e2 100644 --- a/build-applet.xml +++ b/build-applet.xml @@ -2,11 +2,14 @@ <project basedir="." default="build" name="ECTesterApplet"> <!-- Based on Martin Paljak's applets playground --> <!-- Applet building dependencies --> - <property name="JC222" value="ext/java_card_kit-2_2_2"/> - <property name="JC221" value="ext/java_card_kit-2_2_1"/> - <property name="JC303" value="ext/java_card_kit-3_0_3"/> - <property name="OP20" value="ext/visa_openplatform-2_0"/> - <property name="GP211" value="ext/globalplatform-2_1_1"/> + <property name="SDK_PATH" value="ext/sdks"/> + + <property name="JC212" value="${SDK_PATH}/jc212_kit"/> + <property name="JC221" value="${SDK_PATH}/jc221_kit"/> + <property name="JC222" value="${SDK_PATH}/jc222_kit"/> + <property name="JC303" value="${SDK_PATH}/jc303_kit"/> + <property name="JC304" value="${SDK_PATH}/jc304_kit"/> + <property name="JC305u1" value="${SDK_PATH}/jc305u1_kit"/> <!-- ant-javacard task from javacard.pro --> <taskdef name="javacard" classname="pro.javacard.ant.JavaCard" classpath="ext/ant-javacard.jar"/> @@ -29,4 +32,8 @@ <exec dir="applet" executable="./gppro_upload_emv.sh" osfamily="unix"/> <exec dir="applet" executable="./gppro_upload_emv.bat" osfamily="windows"/> </target> + + <target name="clean" description="Clean the built CAP file."> + <delete file="applet/ectester.cap" quiet="true"/> + </target> </project> diff --git a/ext/globalplatform-2_1_1/gp211.jar b/ext/globalplatform-2_1_1/gp211.jar Binary files differdeleted file mode 100644 index baf03d9..0000000 --- a/ext/globalplatform-2_1_1/gp211.jar +++ /dev/null diff --git a/ext/globalplatform-2_1_1/org/globalplatform/javacard/globalplatform.exp b/ext/globalplatform-2_1_1/org/globalplatform/javacard/globalplatform.exp Binary files differdeleted file mode 100644 index 9c50aae..0000000 --- a/ext/globalplatform-2_1_1/org/globalplatform/javacard/globalplatform.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/api_export_files/java/io/javacard/io.exp b/ext/java_card_kit-2_2_1/api_export_files/java/io/javacard/io.exp Binary files differdeleted file mode 100644 index 931133a..0000000 --- a/ext/java_card_kit-2_2_1/api_export_files/java/io/javacard/io.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/api_export_files/java/lang/javacard/lang.exp b/ext/java_card_kit-2_2_1/api_export_files/java/lang/javacard/lang.exp Binary files differdeleted file mode 100644 index f349818..0000000 --- a/ext/java_card_kit-2_2_1/api_export_files/java/lang/javacard/lang.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/api_export_files/java/rmi/javacard/rmi.exp b/ext/java_card_kit-2_2_1/api_export_files/java/rmi/javacard/rmi.exp Binary files differdeleted file mode 100644 index 209cdf3..0000000 --- a/ext/java_card_kit-2_2_1/api_export_files/java/rmi/javacard/rmi.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/api_export_files/javacard/framework/javacard/framework.exp b/ext/java_card_kit-2_2_1/api_export_files/javacard/framework/javacard/framework.exp Binary files differdeleted file mode 100644 index 7deb667..0000000 --- a/ext/java_card_kit-2_2_1/api_export_files/javacard/framework/javacard/framework.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/api_export_files/javacard/framework/service/javacard/service.exp b/ext/java_card_kit-2_2_1/api_export_files/javacard/framework/service/javacard/service.exp Binary files differdeleted file mode 100644 index 8fbef2f..0000000 --- a/ext/java_card_kit-2_2_1/api_export_files/javacard/framework/service/javacard/service.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/api_export_files/javacard/security/javacard/security.exp b/ext/java_card_kit-2_2_1/api_export_files/javacard/security/javacard/security.exp Binary files differdeleted file mode 100644 index ece3b83..0000000 --- a/ext/java_card_kit-2_2_1/api_export_files/javacard/security/javacard/security.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/api_export_files/javacardx/crypto/javacard/crypto.exp b/ext/java_card_kit-2_2_1/api_export_files/javacardx/crypto/javacard/crypto.exp Binary files differdeleted file mode 100644 index 3df48b1..0000000 --- a/ext/java_card_kit-2_2_1/api_export_files/javacardx/crypto/javacard/crypto.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/bin/apdutool b/ext/java_card_kit-2_2_1/bin/apdutool deleted file mode 100644 index 5a1391b..0000000 --- a/ext/java_card_kit-2_2_1/bin/apdutool +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright © 2003 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.apdutool.Main "$@" diff --git a/ext/java_card_kit-2_2_1/bin/capdump b/ext/java_card_kit-2_2_1/bin/capdump deleted file mode 100644 index dadebd1..0000000 --- a/ext/java_card_kit-2_2_1/bin/capdump +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright © 2003 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.capdump.CapDump "$@" diff --git a/ext/java_card_kit-2_2_1/bin/capgen b/ext/java_card_kit-2_2_1/bin/capgen deleted file mode 100644 index d0abad1..0000000 --- a/ext/java_card_kit-2_2_1/bin/capgen +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright © 2003 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.jcasm.cap.Main "$@" diff --git a/ext/java_card_kit-2_2_1/bin/converter b/ext/java_card_kit-2_2_1/bin/converter deleted file mode 100644 index 70e9db7..0000000 --- a/ext/java_card_kit-2_2_1/bin/converter +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright © 2003 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.converter.Converter "$@" diff --git a/ext/java_card_kit-2_2_1/bin/cref b/ext/java_card_kit-2_2_1/bin/cref Binary files differdeleted file mode 100644 index 3244115..0000000 --- a/ext/java_card_kit-2_2_1/bin/cref +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/bin/exp2text b/ext/java_card_kit-2_2_1/bin/exp2text deleted file mode 100644 index d88da73..0000000 --- a/ext/java_card_kit-2_2_1/bin/exp2text +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright © 2003 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.converter.Exp2Text "$@" diff --git a/ext/java_card_kit-2_2_1/bin/jcwde b/ext/java_card_kit-2_2_1/bin/jcwde deleted file mode 100644 index c51669b..0000000 --- a/ext/java_card_kit-2_2_1/bin/jcwde +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright © 2003 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.jcwde.Main "$@" diff --git a/ext/java_card_kit-2_2_1/bin/scriptgen b/ext/java_card_kit-2_2_1/bin/scriptgen deleted file mode 100644 index 2df519b..0000000 --- a/ext/java_card_kit-2_2_1/bin/scriptgen +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright © 2003 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.scriptgen.Main "$@" diff --git a/ext/java_card_kit-2_2_1/bin/verifycap b/ext/java_card_kit-2_2_1/bin/verifycap deleted file mode 100644 index 28256d9..0000000 --- a/ext/java_card_kit-2_2_1/bin/verifycap +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright © 2003 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.offcardverifier.Verifier "$@" diff --git a/ext/java_card_kit-2_2_1/bin/verifyexp b/ext/java_card_kit-2_2_1/bin/verifyexp deleted file mode 100644 index dc4c4fd..0000000 --- a/ext/java_card_kit-2_2_1/bin/verifyexp +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright © 2003 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.offcardverifier.VerifyExp "$@" diff --git a/ext/java_card_kit-2_2_1/bin/verifyrev b/ext/java_card_kit-2_2_1/bin/verifyrev deleted file mode 100644 index 55b8158..0000000 --- a/ext/java_card_kit-2_2_1/bin/verifyrev +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright © 2003 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.offcardverifier.VerifyRev "$@" diff --git a/ext/java_card_kit-2_2_1/lib/apduio.jar b/ext/java_card_kit-2_2_1/lib/apduio.jar Binary files differdeleted file mode 100644 index b74da00..0000000 --- a/ext/java_card_kit-2_2_1/lib/apduio.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/lib/apdutool.jar b/ext/java_card_kit-2_2_1/lib/apdutool.jar Binary files differdeleted file mode 100644 index dae00af..0000000 --- a/ext/java_card_kit-2_2_1/lib/apdutool.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/lib/api.jar b/ext/java_card_kit-2_2_1/lib/api.jar Binary files differdeleted file mode 100644 index e8ea0ad..0000000 --- a/ext/java_card_kit-2_2_1/lib/api.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/lib/capdump.jar b/ext/java_card_kit-2_2_1/lib/capdump.jar Binary files differdeleted file mode 100644 index a30ecd7..0000000 --- a/ext/java_card_kit-2_2_1/lib/capdump.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/lib/converter.jar b/ext/java_card_kit-2_2_1/lib/converter.jar Binary files differdeleted file mode 100644 index a9ad89d..0000000 --- a/ext/java_card_kit-2_2_1/lib/converter.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/lib/installer.jar b/ext/java_card_kit-2_2_1/lib/installer.jar Binary files differdeleted file mode 100644 index 55928d3..0000000 --- a/ext/java_card_kit-2_2_1/lib/installer.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/lib/javacardframework.jar b/ext/java_card_kit-2_2_1/lib/javacardframework.jar Binary files differdeleted file mode 100644 index d16b86d..0000000 --- a/ext/java_card_kit-2_2_1/lib/javacardframework.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/lib/jcclientsamples.jar b/ext/java_card_kit-2_2_1/lib/jcclientsamples.jar Binary files differdeleted file mode 100644 index bba7f43..0000000 --- a/ext/java_card_kit-2_2_1/lib/jcclientsamples.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/lib/jcrmiclientframework.jar b/ext/java_card_kit-2_2_1/lib/jcrmiclientframework.jar Binary files differdeleted file mode 100644 index 3d04f6f..0000000 --- a/ext/java_card_kit-2_2_1/lib/jcrmiclientframework.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/lib/jcwde.jar b/ext/java_card_kit-2_2_1/lib/jcwde.jar Binary files differdeleted file mode 100644 index c748f26..0000000 --- a/ext/java_card_kit-2_2_1/lib/jcwde.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/lib/offcardverifier.jar b/ext/java_card_kit-2_2_1/lib/offcardverifier.jar Binary files differdeleted file mode 100644 index 2369c14..0000000 --- a/ext/java_card_kit-2_2_1/lib/offcardverifier.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_1/lib/scriptgen.jar b/ext/java_card_kit-2_2_1/lib/scriptgen.jar Binary files differdeleted file mode 100644 index 64f9d96..0000000 --- a/ext/java_card_kit-2_2_1/lib/scriptgen.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/java/io/javacard/io.exp b/ext/java_card_kit-2_2_2/api_export_files/java/io/javacard/io.exp Binary files differdeleted file mode 100644 index 931133a..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/java/io/javacard/io.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/java/lang/javacard/lang.exp b/ext/java_card_kit-2_2_2/api_export_files/java/lang/javacard/lang.exp Binary files differdeleted file mode 100644 index f349818..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/java/lang/javacard/lang.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/java/rmi/javacard/rmi.exp b/ext/java_card_kit-2_2_2/api_export_files/java/rmi/javacard/rmi.exp Binary files differdeleted file mode 100644 index 209cdf3..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/java/rmi/javacard/rmi.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/javacard/framework/javacard/framework.exp b/ext/java_card_kit-2_2_2/api_export_files/javacard/framework/javacard/framework.exp Binary files differdeleted file mode 100644 index 9e9351b..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/javacard/framework/javacard/framework.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/javacard/framework/service/javacard/service.exp b/ext/java_card_kit-2_2_2/api_export_files/javacard/framework/service/javacard/service.exp Binary files differdeleted file mode 100644 index 8fbef2f..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/javacard/framework/service/javacard/service.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/javacard/security/javacard/security.exp b/ext/java_card_kit-2_2_2/api_export_files/javacard/security/javacard/security.exp Binary files differdeleted file mode 100644 index d3279d4..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/javacard/security/javacard/security.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/javacardx/apdu/javacard/apdu.exp b/ext/java_card_kit-2_2_2/api_export_files/javacardx/apdu/javacard/apdu.exp Binary files differdeleted file mode 100644 index c9183d4..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/javacardx/apdu/javacard/apdu.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/javacardx/biometry/javacard/biometry.exp b/ext/java_card_kit-2_2_2/api_export_files/javacardx/biometry/javacard/biometry.exp Binary files differdeleted file mode 100644 index fb46fa3..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/javacardx/biometry/javacard/biometry.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/javacardx/crypto/javacard/crypto.exp b/ext/java_card_kit-2_2_2/api_export_files/javacardx/crypto/javacard/crypto.exp Binary files differdeleted file mode 100644 index a9968bb..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/javacardx/crypto/javacard/crypto.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/javacardx/external/javacard/external.exp b/ext/java_card_kit-2_2_2/api_export_files/javacardx/external/javacard/external.exp Binary files differdeleted file mode 100644 index 4af91e5..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/javacardx/external/javacard/external.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/javacardx/framework/math/javacard/math.exp b/ext/java_card_kit-2_2_2/api_export_files/javacardx/framework/math/javacard/math.exp Binary files differdeleted file mode 100644 index 89a1ac6..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/javacardx/framework/math/javacard/math.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/javacardx/framework/tlv/javacard/tlv.exp b/ext/java_card_kit-2_2_2/api_export_files/javacardx/framework/tlv/javacard/tlv.exp Binary files differdeleted file mode 100644 index 58495fb..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/javacardx/framework/tlv/javacard/tlv.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/javacardx/framework/util/intx/javacard/intx.exp b/ext/java_card_kit-2_2_2/api_export_files/javacardx/framework/util/intx/javacard/intx.exp Binary files differdeleted file mode 100644 index 881a961..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/javacardx/framework/util/intx/javacard/intx.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/api_export_files/javacardx/framework/util/javacard/util.exp b/ext/java_card_kit-2_2_2/api_export_files/javacardx/framework/util/javacard/util.exp Binary files differdeleted file mode 100644 index 3ce0d16..0000000 --- a/ext/java_card_kit-2_2_2/api_export_files/javacardx/framework/util/javacard/util.exp +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/bin/apdutool b/ext/java_card_kit-2_2_2/bin/apdutool deleted file mode 100644 index 128e724..0000000 --- a/ext/java_card_kit-2_2_2/bin/apdutool +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright 2005 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.apdutool.Main "$@" diff --git a/ext/java_card_kit-2_2_2/bin/capdump b/ext/java_card_kit-2_2_2/bin/capdump deleted file mode 100644 index 3877c3a..0000000 --- a/ext/java_card_kit-2_2_2/bin/capdump +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright 2005 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.capdump.CapDump "$@" diff --git a/ext/java_card_kit-2_2_2/bin/capgen b/ext/java_card_kit-2_2_2/bin/capgen deleted file mode 100644 index f054c6b..0000000 --- a/ext/java_card_kit-2_2_2/bin/capgen +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright 2005 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.jcasm.cap.Main "$@" diff --git a/ext/java_card_kit-2_2_2/bin/converter b/ext/java_card_kit-2_2_2/bin/converter deleted file mode 100644 index e99bb8e..0000000 --- a/ext/java_card_kit-2_2_2/bin/converter +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright 2005 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.converter.Converter "$@" diff --git a/ext/java_card_kit-2_2_2/bin/cref b/ext/java_card_kit-2_2_2/bin/cref Binary files differdeleted file mode 100644 index b0d8ac8..0000000 --- a/ext/java_card_kit-2_2_2/bin/cref +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/bin/exp2text b/ext/java_card_kit-2_2_2/bin/exp2text deleted file mode 100644 index 6350fac..0000000 --- a/ext/java_card_kit-2_2_2/bin/exp2text +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright 2005 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.converter.Exp2Text "$@" diff --git a/ext/java_card_kit-2_2_2/bin/jcwde b/ext/java_card_kit-2_2_2/bin/jcwde deleted file mode 100644 index f59a861..0000000 --- a/ext/java_card_kit-2_2_2/bin/jcwde +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright 2005 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.jcwde.Main "$@" diff --git a/ext/java_card_kit-2_2_2/bin/libjpcsclite.so b/ext/java_card_kit-2_2_2/bin/libjpcsclite.so Binary files differdeleted file mode 100644 index 4ffb8b1..0000000 --- a/ext/java_card_kit-2_2_2/bin/libjpcsclite.so +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/bin/scriptgen b/ext/java_card_kit-2_2_2/bin/scriptgen deleted file mode 100644 index 3a1e310..0000000 --- a/ext/java_card_kit-2_2_2/bin/scriptgen +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright 2005 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.scriptgen.Main "$@" diff --git a/ext/java_card_kit-2_2_2/bin/verifycap b/ext/java_card_kit-2_2_2/bin/verifycap deleted file mode 100644 index 6d4ae0b..0000000 --- a/ext/java_card_kit-2_2_2/bin/verifycap +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright 2005 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.offcardverifier.Verifier "$@" diff --git a/ext/java_card_kit-2_2_2/bin/verifyexp b/ext/java_card_kit-2_2_2/bin/verifyexp deleted file mode 100644 index 9120515..0000000 --- a/ext/java_card_kit-2_2_2/bin/verifyexp +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright 2005 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.offcardverifier.VerifyExp "$@" diff --git a/ext/java_card_kit-2_2_2/bin/verifyrev b/ext/java_card_kit-2_2_2/bin/verifyrev deleted file mode 100644 index c231efb..0000000 --- a/ext/java_card_kit-2_2_2/bin/verifyrev +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Copyright 2005 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -JAVA_HOME=${JAVA_HOME:-/usr/j2se} - -bin_home=`dirname $0` -JC_HOME=${JC_HOME:-$bin_home/..} - -JC_PATH=$JC_HOME/lib/apdutool.jar:$JC_HOME/lib/apduio.jar:$JC_HOME/lib/converter.jar:$JC_HOME/lib/jcwde.jar:$JC_HOME/lib/scriptgen.jar:$JC_HOME/lib/offcardverifier.jar:$JC_HOME/lib/api.jar:$JC_HOME/lib/installer.jar:$JC_HOME/lib/capdump.jar:$JC_HOME/samples/classes:$CLASSPATH - -JFLAGS="-classpath $JC_PATH" -$JAVA_HOME/bin/java $JFLAGS com.sun.javacard.offcardverifier.VerifyRev "$@" diff --git a/ext/java_card_kit-2_2_2/lib/apduio.jar b/ext/java_card_kit-2_2_2/lib/apduio.jar Binary files differdeleted file mode 100644 index ab57e26..0000000 --- a/ext/java_card_kit-2_2_2/lib/apduio.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/lib/apdutool.jar b/ext/java_card_kit-2_2_2/lib/apdutool.jar Binary files differdeleted file mode 100644 index c4ad9f2..0000000 --- a/ext/java_card_kit-2_2_2/lib/apdutool.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/lib/api.jar b/ext/java_card_kit-2_2_2/lib/api.jar Binary files differdeleted file mode 100644 index 98e07b2..0000000 --- a/ext/java_card_kit-2_2_2/lib/api.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/lib/api_16.jar b/ext/java_card_kit-2_2_2/lib/api_16.jar Binary files differdeleted file mode 100644 index 6213631..0000000 --- a/ext/java_card_kit-2_2_2/lib/api_16.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/lib/capdump.jar b/ext/java_card_kit-2_2_2/lib/capdump.jar Binary files differdeleted file mode 100644 index 00f38c5..0000000 --- a/ext/java_card_kit-2_2_2/lib/capdump.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/lib/converter.jar b/ext/java_card_kit-2_2_2/lib/converter.jar Binary files differdeleted file mode 100644 index 3728ebe..0000000 --- a/ext/java_card_kit-2_2_2/lib/converter.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/lib/installer.jar b/ext/java_card_kit-2_2_2/lib/installer.jar Binary files differdeleted file mode 100644 index 43004d5..0000000 --- a/ext/java_card_kit-2_2_2/lib/installer.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/lib/javacardframework.jar b/ext/java_card_kit-2_2_2/lib/javacardframework.jar Binary files differdeleted file mode 100644 index 35762c4..0000000 --- a/ext/java_card_kit-2_2_2/lib/javacardframework.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/lib/jcclientsamples.jar b/ext/java_card_kit-2_2_2/lib/jcclientsamples.jar Binary files differdeleted file mode 100644 index c169891..0000000 --- a/ext/java_card_kit-2_2_2/lib/jcclientsamples.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/lib/jcrmiclientframework.jar b/ext/java_card_kit-2_2_2/lib/jcrmiclientframework.jar Binary files differdeleted file mode 100644 index c0fdaad..0000000 --- a/ext/java_card_kit-2_2_2/lib/jcrmiclientframework.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/lib/jcwde.jar b/ext/java_card_kit-2_2_2/lib/jcwde.jar Binary files differdeleted file mode 100644 index 1f6d017..0000000 --- a/ext/java_card_kit-2_2_2/lib/jcwde.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/lib/jcwde_16.jar b/ext/java_card_kit-2_2_2/lib/jcwde_16.jar Binary files differdeleted file mode 100644 index 76de86b..0000000 --- a/ext/java_card_kit-2_2_2/lib/jcwde_16.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/lib/offcardverifier.jar b/ext/java_card_kit-2_2_2/lib/offcardverifier.jar Binary files differdeleted file mode 100644 index e6b00a9..0000000 --- a/ext/java_card_kit-2_2_2/lib/offcardverifier.jar +++ /dev/null diff --git a/ext/java_card_kit-2_2_2/lib/scriptgen.jar b/ext/java_card_kit-2_2_2/lib/scriptgen.jar Binary files differdeleted file mode 100644 index e1b50c5..0000000 --- a/ext/java_card_kit-2_2_2/lib/scriptgen.jar +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/COPYRIGHT.html b/ext/java_card_kit-3_0_3/COPYRIGHT.html deleted file mode 100644 index 66af699..0000000 --- a/ext/java_card_kit-3_0_3/COPYRIGHT.html +++ /dev/null @@ -1,171 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> -<html> -<head> - <meta http-equiv="Content-Type" - content="text/html; charset=ISO-8859-1"> - <meta http-equiv="Content-Style-Type" content="text/css"> - <meta name="GENERATOR" - content="Adobe FrameMaker 7.0/HTML Export Filter"> - <link rel="STYLESHEET" href="document.css" charset="ISO-8859-1" - type="text/css"> - <title>Copyright</title> -</head> -<body style="background-color: rgb(255, 255, 255);"> -<div><span style="font-weight: bold;">Copyright © 1998, 2010, -Oracle and/or its affiliates. All rights reserved.</span><span - style="font-weight: bold;"><br> -</span> -<p>This software and related documentation are provided under a license -agreement containing restrictions on use and disclosure and are -protected by intellectual property laws. Except as expressly permitted -in your license agreement or allowed by law, you may not use, copy, -reproduce, translate, broadcast, modify, license, transmit, distribute, -exhibit, perform, publish, or display any part, in any form, or by any -means. Reverse engineering, disassembly, or decompilation of this -software, unless required by law for interoperability, is prohibited.</p> -<p>The information contained herein is subject to change without notice -and is not warranted to be error-free. If you find any errors, please -report them to us in writing.</p> -<p>If this is software or related software documentation that is -delivered to the U.S. Government or anyone licensing it on behalf of -the U.S. Government, the following notice is applicable:</p> -<p>U.S. GOVERNMENT RIGHTS Programs, software, databases, and related -documentation and technical data delivered to U.S. Government customers -are "commercial computer software" or "commercial technical data" -pursuant to the applicable Federal Acquisition Regulation and -agency-specific supplemental regulations. As such, the use, -duplication, disclosure, modification, and adaptation shall be subject -to the restrictions and license terms set forth in the applicable -Government contract, and, to the extent applicable by the terms of the -Government contract, the additional rights set forth in FAR 52.227-19, -Commercial Computer Software License (December 2007). Oracle USA, Inc., -500 Oracle Parkway, Redwood City, CA 94065.</p> -<p>This software or hardware is developed for general use in a variety -of information management applications. It is not developed or intended -for use in any inherently dangerous applications, including -applications which may create a risk of personal injury. If you use -this software or hardware in dangerous applications, then you shall be -responsible to take all appropriate fail-safe, backup, redundancy, and -other measures to ensure the safe use. Oracle Corporation and its -affiliates disclaim any liability for any damages caused by use of this -software or hardware in dangerous applications.</p> -<p>Oracle and Java are registered trademarks of Oracle Corporation -and/or its -affiliates. Oracle and Java are registered trademarks of Oracle and/or -its affiliates. Other names may be trademarks of their respective -owners.</p> -<p>AMD, Opteron, the AMD logo, and the AMD Opteron logo are trademarks -or registered trademarks of Advanced Micro Devices. Intel and Intel -Xeon are trademarks or registered trademarks of Intel Corporation. All -SPARC trademarks are used under license and are trademarks or -registered trademarks of SPARC International, Inc. UNIX is a registered -trademark licensed through X/Open Company, Ltd.</p> -<p>This software or hardware and documentation may provide access to or -information on content, products, and services from third parties. -Oracle Corporation and its affiliates are not responsible for and -expressly disclaim all warranties of any kind with respect to -third-party content, products, and services. Oracle Corporation and its -affiliates will not be responsible for any loss, costs, or damages -incurred due to your access to or use of third-party content, products, -or services.<br> -</p> -<br> -<span style="font-weight: bold;">Copyright © 1998, 2010, Oracle -et/ou ses affiliés. -Tous droits réservés. -</span> -<p>Ce logiciel et la documentation qui l’accompagne sont -protégés par les -lois sur la propriété intellectuelle. Ils sont -concédés sous licence et soumis à -des restrictions d’utilisation et de divulgation. Sauf disposition de -votre contrat de licence ou -de la loi, vous ne pouvez pas copier, reproduire, traduire, diffuser, -modifier, breveter, -transmettre, distribuer, exposer, exécuter, publier ou afficher -le logiciel, même partiellement, sous quelque forme -et par quelque procédé que ce soit. Par ailleurs, il est -interdit de -procéder à toute ingénierie inverse du logiciel, -de le désassembler ou de le décompiler, -excepté à des fins d’interopérabilité avec -des logiciels tiers ou tel que prescrit par -la loi.</p> -<p>Les informations fournies dans ce document sont susceptibles de -modification sans préavis. -Par ailleurs, Oracle Corporation ne garantit pas qu’elles soient -exemptes d’erreurs et vous invite, -le cas échéant, à lui en faire part par -écrit.</p> -<p>Si ce logiciel, ou -la documentation qui l’accompagne, est concédé sous -licence au Gouvernement des Etats-Unis, ou à -toute entité qui délivre la licence de ce logiciel ou -l’utilise pour le -compte du Gouvernement des Etats-Unis, la notice suivante s’applique:</p> -<p>U.S. GOVERNMENT RIGHTS. Programs, -software, databases, and related documentation and technical data -delivered to U.S. Government customers are -"commercial computer software" or "commercial technical data" pursuant -to the applicable Federal Acquisition -Regulation and agency-specific supplemental regulations. As such, the -use, duplication, disclosure, modification, and -adaptation shall be subject to the restrictions and license terms set -forth in -the applicable Government contract, and, to the extent applicable by -the terms of the -Government contract, the additional rights set forth in FAR 52.227-19, -Commercial Computer Software -License (December 2007). Oracle America, Inc., 500 Oracle Parkway, -Redwood City, CA -94065.</p> -<p>Ce logiciel ou matériel a été -développé pour un usage général dans le -cadre d’applications de gestion des informations. Ce logiciel ou -matériel n’est pas conçu ni -n’est destiné à être utilisé dans des -applications à risque, notamment dans des applications -pouvant causer des dommages corporels. Si vous utilisez ce logiciel ou -matériel dans -le cadre d’applications dangereuses, il est de votre -responsabilité de prendre toutes les mesures -de secours, de sauvegarde, de redondance et autres mesures -nécessaires à son utilisation -dans des conditions optimales de sécurité. Oracle -Corporation et ses affiliés déclinent toute -responsabilité -quant aux dommages causés par l’utilisation de ce logiciel ou -matériel pour ce type -d’applications.</p> -<p>Oracle et Java sont des marques déposées d’Oracle -Corporation et/ou de ses affiliés.Tout -autre nom mentionné peut correspondre à des marques -appartenant à d’autres propriétaires qu’Oracle.</p> -<p>AMD, Opteron, -le logo AMD et le logo AMD Opteron sont des marques ou des -marques déposées d’Advanced Micro Devices. Intel et Intel -Xeon sont des marques ou -des marques déposées d’Intel Corporation. Toutes les -marques SPARC sont utilisées sous licence et -sont des marques ou des marques déposées de SPARC -International, Inc. UNIX est une -marque déposée concédée sous licence par -X/Open Company, Ltd.</p> -<p>Ce logiciel ou matériel et -la documentation qui l’accompagne peuvent fournir des informations ou -des liens donnant accès à -des contenus, des produits et des services émanant de tiers. -Oracle Corporation et -ses affiliés déclinent toute responsabilité ou -garantie expresse quant aux contenus, produits ou services -émanant de tiers. En aucun cas, Oracle Corporation et ses -affiliés ne sauraient -être tenus pour responsables des pertes subies, des coûts -occasionnés ou des dommages causés -par l’accès à des contenus, produits ou services tiers, -ou à leur utilisation.<br> -</p> -<p class="Paragraph-Credits"></p> -</div> -</body> -</html> diff --git a/ext/java_card_kit-3_0_3/api_export_files/java/io/javacard/io.exp b/ext/java_card_kit-3_0_3/api_export_files/java/io/javacard/io.exp Binary files differdeleted file mode 100644 index 931133a..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/java/io/javacard/io.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/api_export_files/java/lang/javacard/lang.exp b/ext/java_card_kit-3_0_3/api_export_files/java/lang/javacard/lang.exp Binary files differdeleted file mode 100644 index f349818..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/java/lang/javacard/lang.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/api_export_files/java/rmi/javacard/rmi.exp b/ext/java_card_kit-3_0_3/api_export_files/java/rmi/javacard/rmi.exp Binary files differdeleted file mode 100644 index 209cdf3..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/java/rmi/javacard/rmi.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/api_export_files/javacard/framework/javacard/framework.exp b/ext/java_card_kit-3_0_3/api_export_files/javacard/framework/javacard/framework.exp Binary files differdeleted file mode 100644 index 50b66e0..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/javacard/framework/javacard/framework.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/api_export_files/javacard/framework/service/javacard/service.exp b/ext/java_card_kit-3_0_3/api_export_files/javacard/framework/service/javacard/service.exp Binary files differdeleted file mode 100644 index 8fbef2f..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/javacard/framework/service/javacard/service.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/api_export_files/javacard/security/javacard/security.exp b/ext/java_card_kit-3_0_3/api_export_files/javacard/security/javacard/security.exp Binary files differdeleted file mode 100644 index 994455e..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/javacard/security/javacard/security.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/api_export_files/javacardx/apdu/javacard/apdu.exp b/ext/java_card_kit-3_0_3/api_export_files/javacardx/apdu/javacard/apdu.exp Binary files differdeleted file mode 100644 index c9183d4..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/javacardx/apdu/javacard/apdu.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/api_export_files/javacardx/biometry/javacard/biometry.exp b/ext/java_card_kit-3_0_3/api_export_files/javacardx/biometry/javacard/biometry.exp Binary files differdeleted file mode 100644 index fb46fa3..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/javacardx/biometry/javacard/biometry.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/api_export_files/javacardx/crypto/javacard/crypto.exp b/ext/java_card_kit-3_0_3/api_export_files/javacardx/crypto/javacard/crypto.exp Binary files differdeleted file mode 100644 index 7146e93..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/javacardx/crypto/javacard/crypto.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/api_export_files/javacardx/external/javacard/external.exp b/ext/java_card_kit-3_0_3/api_export_files/javacardx/external/javacard/external.exp Binary files differdeleted file mode 100644 index 4af91e5..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/javacardx/external/javacard/external.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/api_export_files/javacardx/framework/math/javacard/math.exp b/ext/java_card_kit-3_0_3/api_export_files/javacardx/framework/math/javacard/math.exp Binary files differdeleted file mode 100644 index 89a1ac6..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/javacardx/framework/math/javacard/math.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/api_export_files/javacardx/framework/tlv/javacard/tlv.exp b/ext/java_card_kit-3_0_3/api_export_files/javacardx/framework/tlv/javacard/tlv.exp Binary files differdeleted file mode 100644 index 58495fb..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/javacardx/framework/tlv/javacard/tlv.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/api_export_files/javacardx/framework/util/intx/javacard/intx.exp b/ext/java_card_kit-3_0_3/api_export_files/javacardx/framework/util/intx/javacard/intx.exp Binary files differdeleted file mode 100644 index 881a961..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/javacardx/framework/util/intx/javacard/intx.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/api_export_files/javacardx/framework/util/javacard/util.exp b/ext/java_card_kit-3_0_3/api_export_files/javacardx/framework/util/javacard/util.exp Binary files differdeleted file mode 100644 index 3ce0d16..0000000 --- a/ext/java_card_kit-3_0_3/api_export_files/javacardx/framework/util/javacard/util.exp +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/legal/Distribution_ReadME.txt b/ext/java_card_kit-3_0_3/legal/Distribution_ReadME.txt deleted file mode 100644 index 37560c9..0000000 --- a/ext/java_card_kit-3_0_3/legal/Distribution_ReadME.txt +++ /dev/null @@ -1,21 +0,0 @@ -DistributionREADME - -DISTRIBUTION BY DEVELOPERS. Subject to the terms and conditions of the Software License Agreement and the obligations, restrictions, and exceptions set forth below, You may reproduce and distribute the portions of Software identified below ("Redistributable"), provided that: - -(a) You distribute Redistributable complete and unmodified and only bundled as part of Your Programs, - -(b) Your Programs add significant and primary functionality to the Redistributable, - -(c) You do not distribute additional software intended to replace any -component(s) of the Redistributable, - -(d) You do not remove or alter any proprietary legends or notices contained in or on the Redistributable. - -(e) You only distribute the Redistributable subject to a license agreement that protects Oracle's interests consistent with the terms contained in this -Agreement, and - -(f) You agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Redistributable. - -The following files are Redistributables: - -Java Card Development Kit 3.0.3 diff --git a/ext/java_card_kit-3_0_3/legal/THIRDPARTYREADME.txt b/ext/java_card_kit-3_0_3/legal/THIRDPARTYREADME.txt deleted file mode 100644 index 1c5c2c0..0000000 --- a/ext/java_card_kit-3_0_3/legal/THIRDPARTYREADME.txt +++ /dev/null @@ -1,1246 +0,0 @@ -DO NOT TRANSLATE OR LOCALIZE - -*************************************************************************** - -%%The following software may be included in this product: -ASM - -Use of any of this software is governed by the terms of the license below: - -Copyright (c) 2000-2005 INRIA, France Telecom -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holders nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. - -*************************************************************************** - -%%The following software may be included in this product: -Izpack - -Use of any of this software is governed by the terms of the license below: - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this -License, each Contributor hereby grants to You a perpetual, worldwide, -non-exclusive, no-charge, royalty-free, irrevocable copyright license to -reproduce, prepare Derivative Works of, publicly display, publicly perform, -sublicense, and distribute the Work and such Derivative Works in Source or -Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, -each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, -no-charge, royalty-free, irrevocable (except as stated in this section) patent -license to make, have made, use, offer to sell, sell, import, and otherwise -transfer the Work, where such license applies only to those patent claims -licensable by such Contributor that are necessarily infringed by their -Contribution(s) alone or by combination of their Contribution(s) with the Work -to which such Contribution(s) was submitted. If You institute patent litigation -against any entity (including a cross-claim or counterclaim in a lawsuit) -alleging that the Work or a Contribution incorporated within the Work -constitutes direct or contributory patent infringement, then any patent licenses -granted to You under this License for that Work shall terminate as of the date -such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or -Derivative Works thereof in any medium, with or without modifications, and in -Source or Object form, provided that You meet the following conditions: - - 1. You must give any other recipients of the Work or Derivative Works a copy -of this License; and - - 2. You must cause any modified files to carry prominent notices stating that -You changed the files; and - - 3. You must retain, in the Source form of any Derivative Works that You -distribute, all copyright, patent, trademark, and attribution notices from the -Source form of the Work, excluding those notices that do not pertain to any part -of the Derivative Works; and - - 4. If the Work includes a "NOTICE" text file as part of its distribution, -then any Derivative Works that You distribute must include a readable copy of -the attribution notices contained within such NOTICE file, excluding those -notices that do not pertain to any part of the Derivative Works, in at least one -of the following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. - -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any -Contribution intentionally submitted for inclusion in the Work by You to the -Licensor shall be under the terms and conditions of this License, without any -additional terms or conditions. Notwithstanding the above, nothing herein shall -supersede or modify the terms of any separate license agreement you may have -executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, -trademarks, service marks, or product names of the Licensor, except as required -for reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in -writing, Licensor provides the Work (and each Contributor provides its -Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, either express or implied, including, without limitation, any warranties -or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A -PARTICULAR PURPOSE. You are solely responsible for determining the -appropriateness of using or redistributing the Work and assume any risks -associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in -tort (including negligence), contract, or otherwise, unless required by -applicable law (such as deliberate and grossly negligent acts) or agreed to in -writing, shall any Contributor be liable to You for damages, including any -direct, indirect, special, incidental, or consequential damages of any character -arising as a result of this License or out of the use or inability to use the -Work (including but not limited to damages for loss of goodwill, work stoppage, -computer failure or malfunction, or any and all other commercial damages or -losses), even if such Contributor has been advised of the possibility of such -damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or -Derivative Works thereof, You may choose to offer, and charge a fee for, -acceptance of support, warranty, indemnity, or other liability obligations -and/or rights consistent with this License. However, in accepting such -obligations, You may act only on Your own behalf and on Your sole -responsibility, not on behalf of any other Contributor, and only if You agree to -indemnify, defend, and hold each Contributor harmless for any liability incurred -by, or claims asserted against, such Contributor by reason of your accepting any -such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -*************************************************************************** - -%%The following software may be included in this product: -Apache BCEL (Byte Code Engineering Library) - -Use of any of this software is governed by the terms of the license below: - -* Apache License - * Version 2.0, January 2004 - * http://www.apache.org/licenses/ - * - * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - * - * 1. Definitions. - * - * "License" shall mean the terms and conditions for use, reproduction, - * and distribution as defined by Sections 1 through 9 of this document. - * - * "Licensor" shall mean the copyright owner or entity authorized by - * the copyright owner that is granting the License. - * - * "Legal Entity" shall mean the union of the acting entity and all - * other entities that control, are controlled by, or are under common - * control with that entity. For the purposes of this definition, - * "control" means (i) the power, direct or indirect, to cause the - * direction or management of such entity, whether by contract or - * otherwise, or (ii) ownership of fifty percent (50%) or more of the - * outstanding shares, or (iii) beneficial ownership of such entity. - * - * "You" (or "Your") shall mean an individual or Legal Entity - * exercising permissions granted by this License. - * - * "Source" form shall mean the preferred form for making modifications, - * including but not limited to software source code, documentation - * source, and configuration files. - * - * "Object" form shall mean any form resulting from mechanical - * transformation or translation of a Source form, including but - * not limited to compiled object code, generated documentation, - * and conversions to other media types. - * - * "Work" shall mean the work of authorship, whether in Source or - * Object form, made available under the License, as indicated by a - * copyright notice that is included in or attached to the work - * (an example is provided in the Appendix below). - * - * "Derivative Works" shall mean any work, whether in Source or Object - * form, that is based on (or derived from) the Work and for which the - * editorial revisions, annotations, elaborations, or other modifications - * represent, as a whole, an original work of authorship. For the purposes - * of this License, Derivative Works shall not include works that remain - * separable from, or merely link (or bind by name) to the interfaces of, - * the Work and Derivative Works thereof. - * - * "Contribution" shall mean any work of authorship, including - * the original version of the Work and any modifications or additions - * to that Work or Derivative Works thereof, that is intentionally - * submitted to Licensor for inclusion in the Work by the copyright owner - * or by an individual or Legal Entity authorized to submit on behalf of - * the copyright owner. For the purposes of this definition, "submitted" - * means any form of electronic, verbal, or written communication sent - * to the Licensor or its representatives, including but not limited to - * communication on electronic mailing lists, source code control systems, - * and issue tracking systems that are managed by, or on behalf of, the - * Licensor for the purpose of discussing and improving the Work, but - * excluding communication that is conspicuously marked or otherwise - * designated in writing by the copyright owner as "Not a Contribution." - * - * "Contributor" shall mean Licensor and any individual or Legal Entity - * on behalf of whom a Contribution has been received by Licensor and - * subsequently incorporated within the Work. - * - * 2. Grant of Copyright License. Subject to the terms and conditions of - * this License, each Contributor hereby grants to You a perpetual, - * worldwide, non-exclusive, no-charge, royalty-free, irrevocable - * copyright license to reproduce, prepare Derivative Works of, - * publicly display, publicly perform, sublicense, and distribute the - * Work and such Derivative Works in Source or Object form. - * - * 3. Grant of Patent License. Subject to the terms and conditions of - * this License, each Contributor hereby grants to You a perpetual, - * worldwide, non-exclusive, no-charge, royalty-free, irrevocable - * (except as stated in this section) patent license to make, have made, - * use, offer to sell, sell, import, and otherwise transfer the Work, - * where such license applies only to those patent claims licensable - * by such Contributor that are necessarily infringed by their - * Contribution(s) alone or by combination of their Contribution(s) - * with the Work to which such Contribution(s) was submitted. If You - * institute patent litigation against any entity (including a - * cross-claim or counterclaim in a lawsuit) alleging that the Work - * or a Contribution incorporated within the Work constitutes direct - * or contributory patent infringement, then any patent licenses - * granted to You under this License for that Work shall terminate - * as of the date such litigation is filed. - * - * 4. Redistribution. You may reproduce and distribute copies of the - * Work or Derivative Works thereof in any medium, with or without - * modifications, and in Source or Object form, provided that You - * meet the following conditions: - * - * (a) You must give any other recipients of the Work or - * Derivative Works a copy of this License; and - * - * (b) You must cause any modified files to carry prominent notices - * stating that You changed the files; and - * - * (c) You must retain, in the Source form of any Derivative Works - * that You distribute, all copyright, patent, trademark, and - * attribution notices from the Source form of the Work, - * excluding those notices that do not pertain to any part of - * the Derivative Works; and - * - * (d) If the Work includes a "NOTICE" text file as part of its - * distribution, then any Derivative Works that You distribute must - * include a readable copy of the attribution notices contained - * within such NOTICE file, excluding those notices that do not - * pertain to any part of the Derivative Works, in at least one - * of the following places: within a NOTICE text file distributed - * as part of the Derivative Works; within the Source form or - * documentation, if provided along with the Derivative Works; or, - * within a display generated by the Derivative Works, if and - * wherever such third-party notices normally appear. The contents - * of the NOTICE file are for informational purposes only and - * do not modify the License. You may add Your own attribution - * notices within Derivative Works that You distribute, alongside - * or as an addendum to the NOTICE text from the Work, provided - * that such additional attribution notices cannot be construed - * as modifying the License. - * - * You may add Your own copyright statement to Your modifications and - * may provide additional or different license terms and conditions - * for use, reproduction, or distribution of Your modifications, or - * for any such Derivative Works as a whole, provided Your use, - * reproduction, and distribution of the Work otherwise complies with - * the conditions stated in this License. - * - * 5. Submission of Contributions. Unless You explicitly state otherwise, - * any Contribution intentionally submitted for inclusion in the Work - * by You to the Licensor shall be under the terms and conditions of - * this License, without any additional terms or conditions. - * Notwithstanding the above, nothing herein shall supersede or modify - * the terms of any separate license agreement you may have executed - * with Licensor regarding such Contributions. - * - * 6. Trademarks. This License does not grant permission to use the trade - * names, trademarks, service marks, or product names of the Licensor, - * except as required for reasonable and customary use in describing the - * origin of the Work and reproducing the content of the NOTICE file. - * - * 7. Disclaimer of Warranty. Unless required by applicable law or - * agreed to in writing, Licensor provides the Work (and each - * Contributor provides its Contributions) on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - * implied, including, without limitation, any warranties or conditions - * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - * PARTICULAR PURPOSE. You are solely responsible for determining the - * appropriateness of using or redistributing the Work and assume any - * risks associated with Your exercise of permissions under this License. - * - * 8. Limitation of Liability. In no event and under no legal theory, - * whether in tort (including negligence), contract, or otherwise, - * unless required by applicable law (such as deliberate and grossly - * negligent acts) or agreed to in writing, shall any Contributor be - * liable to You for damages, including any direct, indirect, special, - * incidental, or consequential damages of any character arising as a - * result of this License or out of the use or inability to use the - * Work (including but not limited to damages for loss of goodwill, - * work stoppage, computer failure or malfunction, or any and all - * other commercial damages or losses), even if such Contributor - * has been advised of the possibility of such damages. - * - * 9. Accepting Warranty or Additional Liability. While redistributing - * the Work or Derivative Works thereof, You may choose to offer, - * and charge a fee for, acceptance of support, warranty, indemnity, - * or other liability obligations and/or rights consistent with this - * License. However, in accepting such obligations, You may act only - * on Your own behalf and on Your sole responsibility, not on behalf - * of any other Contributor, and only if You agree to indemnify, - * defend, and hold each Contributor harmless for any liability - * incurred by, or claims asserted against, such Contributor by reason - * of your accepting any such warranty or additional liability. - * - * END OF TERMS AND CONDITIONS - * - * APPENDIX: How to apply the Apache License to your work. - * - * To apply the Apache License to your work, attach the following - * boilerplate notice, with the fields enclosed by brackets "[]" - * replaced with your own identifying information. (Don't include - * the brackets!) The text should be enclosed in the appropriate - * comment syntax for the file format. We also recommend that a - * file or class name and description of purpose be included on the - * same "printed page" as the copyright notice for easier - * identification within third-party archives. - * - * Copyright [yyyy] [name of copyright owner] - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -*************************************************************************** - -%%The following software may be included in this product: -Jetty HTTP Server - -Use of any of this software is governed by the terms of the license below: - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -Additional License(s) - -All source files carry one of three copyrights: - -Copyright (c) 1999 The Apache Software Foundation. All rights reserved. -Copyright (c) 1996 Mort Bay Consulting Pty. Ltd. All rights reserved. -Copyright (c) 1996 Optimus Solutions Pty. Ltd. All rights reserved. - -One file is under the LGPL. This appears to be an oversight and it's -in an optional "extras" -component that we don't ship. - -*************************************************************************** - -%%The following software may be included in this product: -Apache Jakarta Commons - -Use of any of this software is governed by the terms of the license below: - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -*************************************************************************** - -%%The following software may be included in this product: -Ant - -Use of any of this software is governed by the terms of the license below: - -License -The Apache Software License Version 2.0 - -The Apache Software License Version 2.0 applies to all releases of Ant starting -with ant 1.6.1 - -/* - * Apache License - * Version 2.0, January 2004 - * http://www.apache.org/licenses/ - * - * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - * - * 1. Definitions. - * - * "License" shall mean the terms and conditions for use, reproduction, - * and distribution as defined by Sections 1 through 9 of this document. - * - * "Licensor" shall mean the copyright owner or entity authorized by - * the copyright owner that is granting the License. - * - * "Legal Entity" shall mean the union of the acting entity and all - * other entities that control, are controlled by, or are under common - * control with that entity. For the purposes of this definition, - * "control" means (i) the power, direct or indirect, to cause the - * direction or management of such entity, whether by contract or - * otherwise, or (ii) ownership of fifty percent (50%) or more of the - * outstanding shares, or (iii) beneficial ownership of such entity. - * - * "You" (or "Your") shall mean an individual or Legal Entity - * exercising permissions granted by this License. - * - * "Source" form shall mean the preferred form for making modifications, - * including but not limited to software source code, documentation - * source, and configuration files. - * - * "Object" form shall mean any form resulting from mechanical - * transformation or translation of a Source form, including but - * not limited to compiled object code, generated documentation, - * and conversions to other media types. - * - * "Work" shall mean the work of authorship, whether in Source or - * Object form, made available under the License, as indicated by a - * copyright notice that is included in or attached to the work - * (an example is provided in the Appendix below). - * - * "Derivative Works" shall mean any work, whether in Source or Object - * form, that is based on (or derived from) the Work and for which the - * editorial revisions, annotations, elaborations, or other modifications - * represent, as a whole, an original work of authorship. For the purposes - * of this License, Derivative Works shall not include works that remain - * separable from, or merely link (or bind by name) to the interfaces of, - * the Work and Derivative Works thereof. - * - * "Contribution" shall mean any work of authorship, including - * the original version of the Work and any modifications or additions - * to that Work or Derivative Works thereof, that is intentionally - * submitted to Licensor for inclusion in the Work by the copyright owner - * or by an individual or Legal Entity authorized to submit on behalf of - * the copyright owner. For the purposes of this definition, "submitted" - * means any form of electronic, verbal, or written communication sent - * to the Licensor or its representatives, including but not limited to - * communication on electronic mailing lists, source code control systems, - * and issue tracking systems that are managed by, or on behalf of, the - * Licensor for the purpose of discussing and improving the Work, but - * excluding communication that is conspicuously marked or otherwise - * designated in writing by the copyright owner as "Not a Contribution." - * - * "Contributor" shall mean Licensor and any individual or Legal Entity - * on behalf of whom a Contribution has been received by Licensor and - * subsequently incorporated within the Work. - * - * 2. Grant of Copyright License. Subject to the terms and conditions of - * this License, each Contributor hereby grants to You a perpetual, - * worldwide, non-exclusive, no-charge, royalty-free, irrevocable - * copyright license to reproduce, prepare Derivative Works of, - * publicly display, publicly perform, sublicense, and distribute the - * Work and such Derivative Works in Source or Object form. - * - * 3. Grant of Patent License. Subject to the terms and conditions of - * this License, each Contributor hereby grants to You a perpetual, - * worldwide, non-exclusive, no-charge, royalty-free, irrevocable - * (except as stated in this section) patent license to make, have made, - * use, offer to sell, sell, import, and otherwise transfer the Work, - * where such license applies only to those patent claims licensable - * by such Contributor that are necessarily infringed by their - * Contribution(s) alone or by combination of their Contribution(s) - * with the Work to which such Contribution(s) was submitted. If You - * institute patent litigation against any entity (including a - * cross-claim or counterclaim in a lawsuit) alleging that the Work - * or a Contribution incorporated within the Work constitutes direct - * or contributory patent infringement, then any patent licenses - * granted to You under this License for that Work shall terminate - * as of the date such litigation is filed. - * - * 4. Redistribution. You may reproduce and distribute copies of the - * Work or Derivative Works thereof in any medium, with or without - * modifications, and in Source or Object form, provided that You - * meet the following conditions: - * - * (a) You must give any other recipients of the Work or - * Derivative Works a copy of this License; and - * - * (b) You must cause any modified files to carry prominent notices - * stating that You changed the files; and - * - * (c) You must retain, in the Source form of any Derivative Works - * that You distribute, all copyright, patent, trademark, and - * attribution notices from the Source form of the Work, - * excluding those notices that do not pertain to any part of - * the Derivative Works; and - * - * (d) If the Work includes a "NOTICE" text file as part of its - * distribution, then any Derivative Works that You distribute must - * include a readable copy of the attribution notices contained - * within such NOTICE file, excluding those notices that do not - * pertain to any part of the Derivative Works, in at least one - * of the following places: within a NOTICE text file distributed - * as part of the Derivative Works; within the Source form or - * documentation, if provided along with the Derivative Works; or, - * within a display generated by the Derivative Works, if and - * wherever such third-party notices normally appear. The contents - * of the NOTICE file are for informational purposes only and - * do not modify the License. You may add Your own attribution - * notices within Derivative Works that You distribute, alongside - * or as an addendum to the NOTICE text from the Work, provided - * that such additional attribution notices cannot be construed - * as modifying the License. - * - * You may add Your own copyright statement to Your modifications and - * may provide additional or different license terms and conditions - * for use, reproduction, or distribution of Your modifications, or - * for any such Derivative Works as a whole, provided Your use, - * reproduction, and distribution of the Work otherwise complies with - * the conditions stated in this License. - * - * 5. Submission of Contributions. Unless You explicitly state otherwise, - * any Contribution intentionally submitted for inclusion in the Work - * by You to the Licensor shall be under the terms and conditions of - * this License, without any additional terms or conditions. - * Notwithstanding the above, nothing herein shall supersede or modify - * the terms of any separate license agreement you may have executed - * with Licensor regarding such Contributions. - * - * 6. Trademarks. This License does not grant permission to use the trade - * names, trademarks, service marks, or product names of the Licensor, - * except as required for reasonable and customary use in describing the - * origin of the Work and reproducing the content of the NOTICE file. - * - * 7. Disclaimer of Warranty. Unless required by applicable law or - * agreed to in writing, Licensor provides the Work (and each - * Contributor provides its Contributions) on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - * implied, including, without limitation, any warranties or conditions - * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - * PARTICULAR PURPOSE. You are solely responsible for determining the - * appropriateness of using or redistributing the Work and assume any - * risks associated with Your exercise of permissions under this License. - * - * 8. Limitation of Liability. In no event and under no legal theory, - * whether in tort (including negligence), contract, or otherwise, - * unless required by applicable law (such as deliberate and grossly - * negligent acts) or agreed to in writing, shall any Contributor be - * liable to You for damages, including any direct, indirect, special, - * incidental, or consequential damages of any character arising as a - * result of this License or out of the use or inability to use the - * Work (including but not limited to damages for loss of goodwill, - * work stoppage, computer failure or malfunction, or any and all - * other commercial damages or losses), even if such Contributor - * has been advised of the possibility of such damages. - * - * 9. Accepting Warranty or Additional Liability. While redistributing - * the Work or Derivative Works thereof, You may choose to offer, - * and charge a fee for, acceptance of support, warranty, indemnity, - * or other liability obligations and/or rights consistent with this - * License. However, in accepting such obligations, You may act only - * on Your own behalf and on Your sole responsibility, not on behalf - * of any other Contributor, and only if You agree to indemnify, - * defend, and hold each Contributor harmless for any liability - * incurred by, or claims asserted against, such Contributor by reason - * of your accepting any such warranty or additional liability. - * - * END OF TERMS AND CONDITIONS - * - * APPENDIX: How to apply the Apache License to your work. - * - * To apply the Apache License to your work, attach the following - * boilerplate notice, with the fields enclosed by brackets "[]" - * replaced with your own identifying information. (Don't include - * the brackets!) The text should be enclosed in the appropriate - * comment syntax for the file format. We also recommend that a - * file or class name and description of purpose be included on the - * same "printed page" as the copyright notice for easier - * identification within third-party archives. - * - * Copyright [yyyy] Apache Software Foundation - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - -You can download the original license file here. - -The License is accompanied by a NOTICE - - ========================================================================= - == NOTICE file corresponding to the section 4 d of == - == the Apache License, Version 2.0, == - == in this case for the Apache Ant distribution. == - ========================================================================= - - This product includes software developed by - The Apache Software Foundation (http://www.apache.org/). - - This product includes also software developed by : - - the W3C consortium (http://www.w3c.org) , - - the SAX project (http://www.saxproject.org) - - Please read the different LICENSE files present in the root directory of - this distribution. - - The names "Ant" and "Apache Software Foundation" must not be used to - endorse or promote products derived from this software without prior - written permission. For written permission, please contact - apache@apache.org. - -The Apache Software License, Version 1.1 - -The Apache Software License, Version 1.1, applies to all versions of up to ant -1.6.0 included. - -/* - * ============================================================================ - * The Apache Software License, Version 1.1 - * ============================================================================ - * - * Copyright (C) 2000-2003 The Apache Software Foundation. All - * rights reserved. - * - * Redistribution and use in source and binary forms, with or without modifica- - * tion, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * 3. The end-user documentation included with the redistribution, if any, must - * include the following acknowledgment: "This product includes software - * developed by the Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowledgment may appear in the software itself, if - * and wherever such third-party acknowledgments normally appear. - * - * 4. The names "Ant" and "Apache Software Foundation" must not be used to - * endorse or promote products derived from this software without prior - * written permission. For written permission, please contact - * apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache", nor may - * "Apache" appear in their name, without prior written permission of the - * Apache Software Foundation. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, - * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND - * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - * APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU- - * DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * This software consists of voluntary contributions made by many individuals - * on behalf of the Apache Software Foundation. For more information on the - * Apache Software Foundation, please see . - * - */ - - -Additional License(s) - -none - -*************************************************************************** - -%%The following software may be included in this product: -SAX - -Use of any of this software is governed by the terms of the license below: - -There is not a license - it is in the public domain - -Copyright Disclaimers - -This page includes statements to that effect by David Megginson, who would have -been able to claim copyright for the original work. - -SAX 1.0 - -Version 1.0 of the Simple API for XML (SAX), created collectively by the -membership of the XML-DEV mailing list, is hereby released into the public -domain. - -No one owns SAX: you may use it freely in both commercial and non-commercial -applications, bundle it with your software distribution, include it on a CD-ROM, -list the source code in a book, mirror the documentation at your own web site, -or use it in any other way you see fit. - -SAX 2.0 - -I hereby abandon any property rights to SAX 2.0 (the Simple API for XML), and -release all of the SAX 2.0 source code, compiled code, and documentation -contained in this distribution into the Public Domain. SAX comes with NO -WARRANTY or guarantee of fitness for any purpose. - - David Megginson, david@megginson.com - 2000-05-05 - -Additional License(s) - -Public domain software - -*************************************************************************** - -%%The following software may be included in this product: -Ant-Contrib - -Use of any of this software is governed by the terms of the license below: - -/* - * The Apache Software License, Version 1.1 - * - * Copyright (c) 2001-2003 Ant-Contrib project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: - * "This product includes software developed by the - * Ant-Contrib project (http://sourceforge.net/projects/ant-contrib)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. - * - * 4. The name Ant-Contrib must not be used to endorse or promote products - * derived from this software without prior written permission. For - * written permission, please contact - * ant-contrib-developers@lists.sourceforge.net. - * - * 5. Products derived from this software may not be called "Ant-Contrib" - * nor may "Ant-Contrib" appear in their names without prior written - * permission of the Ant-Contrib project. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL THE ANT-CONTRIB PROJECT OR ITS - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * ==================================================================== - */ - -*************************************************************************** - - diff --git a/ext/java_card_kit-3_0_3/lib/api_classic.jar b/ext/java_card_kit-3_0_3/lib/api_classic.jar Binary files differdeleted file mode 100644 index a7d5bb5..0000000 --- a/ext/java_card_kit-3_0_3/lib/api_classic.jar +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/lib/api_connected.jar b/ext/java_card_kit-3_0_3/lib/api_connected.jar Binary files differdeleted file mode 100644 index 14812ba..0000000 --- a/ext/java_card_kit-3_0_3/lib/api_connected.jar +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/lib/logging.properties b/ext/java_card_kit-3_0_3/lib/logging.properties deleted file mode 100644 index 5f34c9d..0000000 --- a/ext/java_card_kit-3_0_3/lib/logging.properties +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright (c) 2010, 2010, Oracle and/or its affiliates. All rights reserved. - -# Properties file which configures the operation of the JDK -# logging facility. - -# The system will look for this config file, first using -# a System property specified at startup: -# -# >java -Djava.util.logging.config.file=myLoggingConfigFilePath -# -# If this property is not specified, then the config file is -# retrieved from its default location at: -# -# JDK_HOME/jre/lib/logging.properties - -# Global logging properties. -# ------------------------------------------ -# The set of handlers to be loaded upon startup. -# Comma-separated list of class names. -# java.util.logging.ConsoleHandler -handlers=com.sun.javacard.tools.util.JCConsoleHandler, java.util.logging.FileHandler - -# Default global logging level. -# Loggers and Handlers may override this level -.level=ALL - -# Loggers -# ------------------------------------------ -# Loggers are usually attached to packages. -# Here, the level for each package is specified. -# The global level is used by default, so levels -# specified here simply act as an override. -#com.sun.javacard.offcardinstaller=ALL - -# Handlers -# ----------------------------------------- - -com.sun.javacard.tools.util.JCConsoleHandler.level=ALL -com.sun.javacard.tools.util.JCConsoleHandler.formatter=com.sun.javacard.tools.util.JCToolsFormatter -com.sun.javacard.tools.util.JCConsoleHandler.filter=com.sun.javacard.tools.util.ConsoleFilter - -# --- FileHandler --- -# Override of global logging level -java.util.logging.FileHandler.level=ALL - -# Naming style for the output file: -# (The output file is placed in the directory -# defined by the "user.home" System property.) -java.util.logging.FileHandler.pattern=%h/java%u.log - -# Limiting size of output file in bytes: -java.util.logging.FileHandler.limit=50000 - -# Number of output files to cycle through, by appending an -# integer to the base file name: -java.util.logging.FileHandler.count=10 - -# Style of output (Simple or XML): -java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter - -java.util.logging.FileHandler.append=true - -#--------------print class method info -printCurrentClassAndMethod = false diff --git a/ext/java_card_kit-3_0_3/lib/tools.jar b/ext/java_card_kit-3_0_3/lib/tools.jar Binary files differdeleted file mode 100644 index f5c9b23..0000000 --- a/ext/java_card_kit-3_0_3/lib/tools.jar +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/shared/Java_clr_hori.gif b/ext/java_card_kit-3_0_3/shared/Java_clr_hori.gif Binary files differdeleted file mode 100644 index 10eab90..0000000 --- a/ext/java_card_kit-3_0_3/shared/Java_clr_hori.gif +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/shared/Java_clr_hori_interval.gif b/ext/java_card_kit-3_0_3/shared/Java_clr_hori_interval.gif Binary files differdeleted file mode 100644 index 3230819..0000000 --- a/ext/java_card_kit-3_0_3/shared/Java_clr_hori_interval.gif +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/shared/Java_clr_hori_small.gif b/ext/java_card_kit-3_0_3/shared/Java_clr_hori_small.gif Binary files differdeleted file mode 100644 index fdb9030..0000000 --- a/ext/java_card_kit-3_0_3/shared/Java_clr_hori_small.gif +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/shared/downicon.gif b/ext/java_card_kit-3_0_3/shared/downicon.gif Binary files differdeleted file mode 100644 index d178dd6..0000000 --- a/ext/java_card_kit-3_0_3/shared/downicon.gif +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/shared/oracle.gif b/ext/java_card_kit-3_0_3/shared/oracle.gif Binary files differdeleted file mode 100644 index 4a98827..0000000 --- a/ext/java_card_kit-3_0_3/shared/oracle.gif +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/shared/smallOracleLogo.gif b/ext/java_card_kit-3_0_3/shared/smallOracleLogo.gif Binary files differdeleted file mode 100644 index d06d49d..0000000 --- a/ext/java_card_kit-3_0_3/shared/smallOracleLogo.gif +++ /dev/null diff --git a/ext/java_card_kit-3_0_3/shared/topicon.gif b/ext/java_card_kit-3_0_3/shared/topicon.gif Binary files differdeleted file mode 100644 index f4dfbf3..0000000 --- a/ext/java_card_kit-3_0_3/shared/topicon.gif +++ /dev/null diff --git a/ext/sdks b/ext/sdks new file mode 160000 +Subproject 2b369428203976e7bec9dee4cfc5fd06b851886 diff --git a/ext/visa_openplatform-2_0/visa/openplatform/javacard/openplatform.exp b/ext/visa_openplatform-2_0/visa/openplatform/javacard/openplatform.exp Binary files differdeleted file mode 100644 index b889504..0000000 --- a/ext/visa_openplatform-2_0/visa/openplatform/javacard/openplatform.exp +++ /dev/null diff --git a/ext/visa_openplatform-2_0/visaop20.jar b/ext/visa_openplatform-2_0/visaop20.jar Binary files differdeleted file mode 100644 index c1fe3b8..0000000 --- a/ext/visa_openplatform-2_0/visaop20.jar +++ /dev/null |
