<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to GPShell</title><link>https://sourceforge.net/p/globalplatform/wiki/GPShell/</link><description>Recent changes to GPShell</description><atom:link href="https://sourceforge.net/p/globalplatform/wiki/GPShell/feed" rel="self"/><language>en</language><lastBuildDate>Sun, 28 Jun 2020 23:49:14 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/globalplatform/wiki/GPShell/feed" rel="self" type="application/rss+xml"/><item><title>GPShell modified by Karsten Ohme</title><link>https://sourceforge.net/p/globalplatform/wiki/GPShell/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v22
+++ v23
@@ -1 +1,3 @@
 Please consult the manual on https://github.com/kaoh/globalplatform/blob/master/gpshell/src/gpshell.1.md
+
+For the GPShell project visit: https://kaoh.github.io/globalplatform/
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Karsten Ohme</dc:creator><pubDate>Sun, 28 Jun 2020 23:49:14 -0000</pubDate><guid>https://sourceforge.net434c9ae604cd47e917791763907aceb5ab5bbc2d</guid></item><item><title>GPShell modified by Karsten Ohme</title><link>https://sourceforge.net/p/globalplatform/wiki/GPShell/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Karsten Ohme</dc:creator><pubDate>Wed, 24 Jun 2020 22:00:13 -0000</pubDate><guid>https://sourceforge.nete6d094a5909d60b59a1a311b39cf7e76adfe43e3</guid></item><item><title>GPShell modified by Karsten Ohme</title><link>https://sourceforge.net/p/globalplatform/wiki/GPShell/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v20
+++ v21
@@ -1,593 +1 @@
-&lt;a href="http://flattr.com/thing/1341610/GPShell-GlobalPlatform-Library" rel="nofollow" target="_blank"&gt;&lt;img alt="Flattr this" border="0" rel="nofollow" src="http://api.flattr.com/button/flattr-badge-large.png" title="Flattr this"/&gt;&lt;/a&gt;
-
-[TOC]
-
-# Summary #
-
-GPShell is a script interpreter which talks to a smart card which complies to the [GlobalPlatform Card Specification]. 
-It is written on top of the [GlobalPlatform Library].
-It uses the [PC-SC Connection Plugin] for accessing smart cards.
-
-It can establish a secure channel with a smart card, load, instantiate, delete and list applications on supported smart cards. These applications are practically always [JavaCard](http://www.oracle.com/technetwork/java/javacard/overview/index.html) applets.
-
-[[img src=GPShell.Console.jpg alt="GPShell Console View"]]
-
-# Prerequisites #
-
-To run GPShell you also need the matching GlobalPlatform Library, the [PC-SC Connection Plugin], zlib 1.2.3 and OpenSSL 0.97e or
-compatible versions. You must place the libraries in the directory where GPShell is called from or in a system directory where libraries are searched (*C:\Windows\System32* or*/usr/(local/)lib* usually). 
-This is usually automatically the case when you have installed it using a method mentioned under [Installation].
-
-## MacOSX ##
-
-For MacOSX you might need to set
-
-~~~~~~
-export DYLD_LIBRARY_PATH=/opt/local/lib
-~~~~~~
-
-so that all needed libraries are found.
-
-# Warning #
-
-**PLEASE OBEY THAT EVERY CARD GETS LOCKED AFTER A FEW (USUALLY 10) UNSUCCESSFUL MUTUAL AUTHENTICATIONS.
-THE CONTENTS OF A LOCKED CARD CANNOT BE MANAGED ANYMORE (DELETED, INSTALLED)!!!
-IF YOU EXPERIENCE SOME UNSUCCESSFUL MUTUAL AUTHENTICATION ATTEMPS FIRST EXECUTE A SUCCESSFUL MUTUAL AUTHENTICATION WITH A KNOWN WORKING PROGRAM
-TO RESET THE RETRY COUNTER BEFORE YOU PROCEED WITH GPSHELL. CHECK THE PARAMETERS FOR MUTUAL AUTHENTICATION (KEYS, SECURITY PROTOCOL) AND ASK IF ANYBODY KNOWS IF THE CARD IS SUPPORTED.**
-
-# Usage #
-
-There are two operation modes:
-
-* Most commonly used is to supply a script file which is executed by GPShell.
-* GPShell can also take a command from the standard input.  This way, an application can feed commands to GPShell without creating a script file.
-
-UNIX like systems:
-
-~~~~~~
-gpshell scriptfile
-~~~~~~
-or
-~~~~~~
-gpshell &amp;lt; scriptfile
-~~~~~~
-
-Windows:
-
-~~~~~~
-GPShell.exe scriptfile
-~~~~~~
-or
-~~~~~~
-GPShell.exe &amp;lt; scriptfile
-~~~~~~
-
-There are many script files already shipped with GPShell. So the best is you use a already existing file as a base matching your use case.
-
-## Commands ##
-
-## Connection Related Commands ##
-
-***establish_context***
-
-Establish context.
-
-Before any communication can by done to any card this command must be executed.
-
-***card_connect -reader readerName***
-
-Connect to card in the reader with readerName
-
-***card_connect -readerNumber x***
-
-Connect to card in the xth reader in the system
-
-***select -AID AID***
-
-Select applet instance
-
-***card_disconnect***
-
-Disconnect card
-
-***release_context***
-
-Release context
-
-## Operation Mode Commands ##
-
-***mode_201***
-
-Sets the protocol mode to OpenPlatform 2.0.1.
-
-Use this for cards compliant with this specification version. This is the default mode.
-
-***mode_211***
-
-Sets the protocol mode to GlobalPlatform 2.1.1.
-
-Use this for cards compliant with this specification version. Most cards are using now this specification version.
-
-***enable_trace***
-
-Enable APDU trace
-
-You will see the sent APDUs in clear text. The last two bytes of the
-reponse are the response code. A reponse code of 9000 means success,
-otherwise the response code indicates an error. This may be OK when
-deleting a non existing applet or package.
-
-***enable_timer***
-
-Enables the logging of the execution time of a command.
-
-## Secure Channel Commands ##
-
-***open_sc -keyind x -keyver x -key xyz -mac_key xyz -enc_key xyz -kek_key xyz -security x -scp x -scpimpl x -keyDerivation x***
-Open secure channel
-
-For OpenPlatform 2.0.1' card only *-keyind*, *-keyver*, *-mac_key* and *-enc_key* are necessary.
-
-For GlobalPlatform 2.1.1 cards *-scp* and *-scpimpl* should be not necessary to supply. It is detected automatically when the mode *mode_211* is specified by executing a GET DATA command. (See Data Commands). If you are talking directly to an applet instance which is not Security Domain you have to specify these options, otherwise you get an *6D00: Invalid instruction byte / Command not supported or
-invalid*.
-
-You must also specify *-kek_key*.
-If your card supports a Secure Channel Protocol Implementation with only one base key, specify this key with *-key* and omit the other keys.
-
-If you have a card which uses key derivation you must enable the derivation mode with the *-keyDerivation* option and you must specify with *-key* the master (mother) key.
-*-kek_key*, *-mac_key* and *-enc_key* are not relevant, because they are calculated from the master key. See the sections Options and Key Derivation.
-
-## Install Commands ##
-
-***install -file appletFile -priv privilege -sdAID sdAID -AID AIDInPkg -pkgAID packageAID -instAID instanceAID -nvCodeLimit x -nvDataLimit x***
-
-Load and installs an applet in one step
-
-The parameters -AID -instAID -pkgAID -nvCodeLimit can be detected automatically and the -AID and -instAID is set to the first applet in appletfile.
-For the sdAID the AID selected with the select command is chosen if not given. Otherwise the default Card Manager / Security Issuer Domain AID is chosen. So usually you do not have to pass it.
-
-***install_for_load -pkgAID x -sdAID sdAID -nvCodeLimit x***
-
-Install for Load
-
-For the sdAID the AID selected with the select command is chosen if not given. Otherwise the default Card Manager / Security Issuer Domain AID is chosen. So usually you do not have to pass it.
-You may need to use this command if the combined install command does not work.
-
-*load -file appletFile*
-
-Load applet
-
-You may need to use this command if the combined install command does not work.
-
-***install_for_install -priv privilege -AID AIDInPkg -pkgAID packageAID -instAID instanceAID -nvDataLimit x***
-
-Instantiate applet
-
-You may need to use this command if the combined install command does not work. Or you want to install a preinstalled Security Domain.
-
-## Status Commands ##
-
-***get_status -element e0***
-
-List applets and packages and security domains
-
-***get_status -element 20***
-
-List packages
-
-***get_status -element 40***
-
-List applets or security domains
-
-***get_status -element 80***
-
-List Card Manager / Security Issuer Domain
-
-## Data Commands ##
-
-***get_data -identifier identifier***
-
-A GET DATA command returning the data for the given identifier.
-
-Some common identifiers:
-
-* 9F7F - CPLC (card production life cycle) data
-
-More identifiers are defined in [globalplatform.h](https://sourceforge.net/p/globalplatform/code/HEAD/tree/trunk/globalplatform/src/globalplatform/globalplatform.h)
-
-**Format of CPLC data** 
-
-You see the command trace of a GET DATA command and the interpreted result.
-
-~~~~~~
-=&amp;gt; 80 CA 9F 7F 00 .....
-(12102 usec)
-&amp;lt;= 9F 7F 2A 47 90 50 40 47 91 81 02 31 00 83 58 00 ..*G.P@G...1..X.
-11 68 91 45 81 48 12 83 65 00 00 00 00 01 2F 31 .h.E.H..e...../1
-30 31 31 36 38 00 00 00 00 00 00 00 00 90 00 01168..........
-Status: No Error
-IC Fabricator : 4790
-IC Type : 5040
-Operating System ID : 4791
-Operating System release date : 8102 (11.4.2008)
-Operating System release level : 3100
-IC Fabrication Date : 8358 (23.12.2008)
-IC Serial Number : 00116891
-IC Batch Identifier : 4581
-IC Module Fabricator : 4812
-IC Module Packaging Date : 8365 (30.12.2008)
-ICC Manufacturer : 0000
-IC Embedding Date : 0000
-IC Pre-Personalizer : 012F
-IC Pre-Perso. Equipment Date : 3130 (10.5.2003)
-IC Pre-Perso. Equipment ID : 31313638
-IC Personalizer : 0000
-IC Personalization Date : 0000
-IC Perso. Equipment ID : 00000000
-~~~~~~
-
-Dates are stored as 2 bytes, the first specifying the year in the decade and the last 3 bytes the day within the year.
-
-## Key Commands ##
-
-***put_sc_key -keyver 0 -newkeyver 2 -mac_key new_MAC_key -enc_key new_ENC_key -kek_key new_KEK_key -cur_kek current_KEK_key***
-
-Add new key set version 2
-
-***put_sc_key -keyver 1 -newkeyver 1 -mac_key new_MAC_key -enc_key new_ENC_key -kek_key new_KEK_key -cur_kek current_KEK_key***
-
-Replace key set version 1
-
-***put_dm_keys -keyver 0 -newkeyver 2 -file public_rsa_key_file -pass password -key new_receipt_generation_key***
-
-Put delegated management keys for GP 2.1.1 in version 2
-
-***put_dm_keys -keyver 0 -newkeyver 2 -file public_rsa_key_file -pass password -key new_receipt_generation_key -cur_kek current_KEK_key***
-
-Put delegated management keys for OP 2.0.1' in version 2
-
-## APDU Commands ##
-
-***send_apdu -APDU x***
-
-Send APDU x
-
-***send_apdu -sc 0 -APDU x***
-
-Send APDU x without secure channel
-
-The APDU is given as hex without spaces and without leadings 0x.
-
-***send_apdu_nostop -APDU x***
-
-Send APDU and does not stop in case of an error
-
-The APDU is given as hex without spaces and without leadings 0x.
-
-## Options ##
-
-## Connection Options ##
-
-***-reader readerName***
-
-Smart card reader name
-
-***-readerNumber x***
-
-Number of the reader in the system to connect to.
-
-If *-reader* is given this is ignored.
-
-***-protocol x***
-
-ISO7816 Protocol, 0:T=0, 1:T=1
-
-Should not be necessary to be stated explicitly.
-
-## Key Options ##
-
-***-keyind x***
-
-Key index
-
-***-keyver x***
-
-Key set version
-
-***-newkeyver x***
-
-New key set version
-
-***-key key***
-
-Key value in hex
-
-***-mac_key key***
-
-MAC key value in hex
-
-***-enc_key key***
-
-ENC key value in hex
-
-***-kek_key key***
-
-KEK key value in hex
-
-## Secure Channel Options ##
-
-***-security x***
-
-0: clear, 1: MAC, 3: MAC+ENC
-
-***-scp x***
-
-Secure Channel Protocol (1 SCP01, 2 SCP02, default not set).
-
-Should not be necessary to be stated explicitly.
-
-***-scpimpl x***
-
-Secure Channel Implementation (default not set)
-
-Should not be necessary to be stated explicitly. You can find out more about this parameter when looking into Table E-1: Values of Parameter "i" of the GlobalPlatform specification 2.2.
-
-*Some card like the JCOP V4.1 Card (NXP J2A040), the JCOP 2.1 or JTopV15 need this set to 0x15 together with -scp 2*. 
-
-***-pass password***
-
-Password for key decryption
-
-***-sc x***
-
-Secure Channel mode (0 off, 1 on)
-
-***-keyDerivation***
-
-Possible values are "none", "visa2" or "emvcps11"
-
-Choose "visa2" if you have a card which uses the VISA key derivation scheme for the key calculation, like GemXpresso Pro or some JCOP cards you must set this.
-Choose "emvcps11" If you have a card which uses the EMV CPS 1.1 key derivation scheme for the key calculation, like a Sm@rtCafe Expert 3.0 you must set this.
-
-## AID Options ##
-
-***-AID aid***
-
-Applet ID
-
-***-sdAID aid***
-
-Security Domain AID
-
-***-pkgAID aid***
-
-Package AID
-
-***-instAID aid***
-   
-Instance AID
-
-## Install Options ##
-
-***-nvCodeLimit x***
-
-Non-volatile code size limit
-
-***-nvDataLimit x***
-
-Non-volatile data size limit
-
-***-vDataLimit x***
-
-Volatile data size limit
-
-***-file file***
-
-File name
-
-***-instParam param***
-
-Installation parameter
-
-***-priv x***
-
-Privilege. E.g. 0x04 Default Selected
-
-## Status Options ##
-
-***-element x***
-
-Element type to be listed in hex
-* 80 - Card Manager / Card Issuer Security Domain only.
-* 40 - Applications (and Security Domains only in GP211).
-* 20 - Executable Load Files only.
-* 10 - Executable Load Files and their Executable Modules only (Only GP211)
-
-## Data Options  ##
-
-***-identifier***
-
-Identifer for the tag for the get_data command. Must be in hex format, e.g. 9F7F.
-
-## APDU options ##
-
-***-APDU apdu***
-
-APDU to be sent. Must be in hex format, e.g. 80CA00CF00.
-
-----
-
-Parameters containing spaces, e.g. file names or reader names must be quoted in "".
-
-# Samples and Testing Results #
-
-## Tested Cards ##
-
-* Gemalto IDCore 3010
-* Oberthur CosmopoliC 32K (OP201)
-* CosmopoliC 64K V5.2 (GP211, SCP01, Impl05)
-* Axalto Cyberflex e-gate 32k (OP201)
-* GemXpresso R3.2 E64
-* IBM JCOP v2.2 41 (GP211)
-* IBM JCOP 31 (36k)
-* Palmera Protect V5
-* JTopV15
-* Nokia 6131 NFC Phone (GP211)
-* Axalto Cyberflex Access 64k
-* Gemalto Generations Flexible
-* Sm@rtCafe Expert 3.0
-* Tongfang420
-
-We have tested this with the helloworld.cap example file. See *helloInstall.txt*, *helloDelete.txt*, and *list.txt* and the other script files (.txt) for samples. If a CAP file cannot be used, please see the later section How to convert a .cap file into a .ijc (.bin) file.
-
-~~~~~~
-gpshell.exe helloInstall.txt   // install helloworld.cap
-gpshell.exe helloDelete.txt    // delete helloworld.cap
-gpshell.exe list.txt       // list applets on a smart card
-~~~~~~
-
-Make sure the script file (*helloInstall.txt*, etc.) and applet file helloworld.cap are in your current directory.
-
-The sources for helloworld.cap can be obtained from the SVN from the SourceForge project page. See https://sourceforge.net/p/globalplatform/code/405/tree/trunk/helloworldapplet/.
-
-It should work with other smart cards that support Java Card 2.x.y and OpenPlatform 2.0.1' or GlobalPlatform 2.1.1. You need to tweak the options in the script files.  Please let us know how it works with the smart cards you have.
-
-## About put_sc_key ##
-
-We have tested put_sc_key with Oberthur CosmopoliC 64K card and Cyberflex Access e-gate 32K.
-
-For Cyberflex example, please see:
-   
-* replacekey-cflex.txt Replace the default key set (key set version 1, value 404142...4f) with a new key (505152...5f)
-* putdefault-cflex.txt Replace the new key (505152...5f) with the default key (404142...4f)
-
-For CosmopoliC 64K, you need to add a key set first. See *replacekey-cosmo-gp211.txt*.
-
-This would add a key set 1, and at the same time delete the initialization key set. After the initialization key set is used, you can replace and add key sets as in Cyberflex.
-
-## About install_for_load and install ##
-
-For CosmopoliC 64K (tested on V5.2), you need to specify the Security Domain AID. For example,
-
-~~~~~~
-install -file helloworld.cap -sdAID A000000003000000 -nvCodeLimit 4000
-~~~~~~
-
-For GemXpresso R3.2 E64, you need to specify the Security Domain AID (Card Manager AID).  For example,
-
-~~~~~~
-install -file helloworld.cap -sdAID A000000018434D00 -nvCodeLimit 4000
-~~~~~~
-
-# Card Specific Commands and Hints #
-
-## CyberFlex cards ##
-
-For the Cyberflex you also need the CAP transformer (I believe this is
-a kind of obfuscator) which you must apply to the CAP file. Download it
-from &amp;lt;http: down.php="" www.trusted-logic.fr=""&amp;gt; and use it.
-
-## JCOP cards ##
-
-If you are not lucky to authenticate to your card it might be not fused. In this case you need the transport key from the vendor.
-Execute the JCOP IDENTIFY command. 
-
-Some cards are not supporting the GET DATA command. This command is used by GPShell for retrieving the secure channel parameters. So you have to pass ***-scp 2 -scpimpl 0x15*** to open_sc command.
-
-
-~~~~~~
-select -aid A000000167413000FF
-~~~~~~
-
-* Offset 14 (decimal) of the response has the pre-personalized state.  00h is not fused (not personalized), 01h is fused.
-
-# Key Derivation #
-
-For the VISA2 key derivation scheme, like used in a GemXpresso Pro, Palmera or some JCOP cards, you have to enable it with the -keyDerivation set to "visa2" during open_sc.
-For the key derivation according to EMV CPS 1.1 (CDK Visa Card Production Guide (CPG) 2.0.4), like Sm@rtCafe Expert 3.0, enable it by passing "emvcps11" to -keyDerivation during open_sc.
-
-Known unsupported key derivation schemes are:
-
-* CDK Visa Card Production Guide CPG 2.0.2
-* ISK(D)
-
-# Security Domain AIDs #
-
-* Most GP211 cards are using A000000003000000
-* Most OP201 cards are using A0000000030000
-* Oberthur OP201 cards are using A000000003000000
-* GemXpresso Pro cards are using A000000018434D00
-* The AID of the GP211 specification is A0000001510000
-
-# Secure Channel Keys #
-
-* Most cards are using 404142434445464748494A4B4C4D4E4F
-* GemXpresso Pro cards are using 47454d5850524553534f53414d504c45
-
-# Secure Channel Key Versions #
-
-* Most cards are using 0
-* Nokia NFC 6131 is using 42
-
-# Known bugs #
-
-JCOP 10 - install_for_load fails for unknown reason, so nothing can be installed.
-
-# Debug output #
-
-In addition to the trace output if you experience problems a DEBUG output is always helpful.
-Set the variable *GLOBALPLATFORM_DEBUG=1* in the environment. You can set the logfile with *GLOBALPLATFORM_LOGFILE=&amp;lt;file&amp;gt;*.
-Under Windows by default *C:\Temp\GlobalPlatform.log* is chosen. The log file must be writable for the user. The default log file under Unix systems is
-*/tmp/GlobalPlatform.log*. But usually syslog is available and this will be used by default, so you may have to specify the log file manually,
-if you don't have access to the syslog or don't want to use it. Keep in mind that the debugging output may contain sensitive information, e.g. keys!
-
-If you have Linux this can also help a lot to get a more complete insight into what's going on.
-You can run the PC/SC daemon in foreground debugging mode so that the whole traffic can be examined.
-You can also install a (prepackaged) virtual image of a Linux system under Windows.
-
-Stop the pcscd daemon and run 
-~~~~~~
-pcscd -a -d -f
-~~~~~~
-Now you can see the whole traffic.
-
-# How to convert a .cap file into a .ijc (.bin) file #
-
-JavaCard applets are in CAP files. For example, JavaCard Toolkit generates one. CAP files are the
-official container format for JavaCard applets and they should work with GPShell. This was tested
-successfully with all of the above cards. The actual load format which is used to bring the applet
-to the card is the IJC format. If this does not work here is an guide how to transform a CAP file
-into a IJC file. Sometimes for IJC files the extension .bin is used.
-
-Fortunately, the conversion is straightforward.
-
-Take the cap file, unjar it.  This results in many smaller cap files.  Concatenate all of them into one .bin file.  Here's an example.
-
-~~~~~~
-cp com/sun/javacard/samples/HelloWorld/javacard/helloworld.cap .
-jar xvf helloworld.cap
-extracted: com/sun/javacard/samples/HelloWorld/javacard/Header.cap
-extracted: com/sun/javacard/samples/HelloWorld/javacard/Directory.cap
-extracted: com/sun/javacard/samples/HelloWorld/javacard/Applet.cap
-extracted: com/sun/javacard/samples/HelloWorld/javacard/Import.cap
-extracted: com/sun/javacard/samples/HelloWorld/javacard/ConstantPool.cap
-extracted: com/sun/javacard/samples/HelloWorld/javacard/Class.cap
-extracted: com/sun/javacard/samples/HelloWorld/javacard/Method.cap
-extracted: com/sun/javacard/samples/HelloWorld/javacard/StaticField.cap
-extracted: com/sun/javacard/samples/HelloWorld/javacard/RefLocation.cap
-extracted: com/sun/javacard/samples/HelloWorld/javacard/Descriptor.cap
-
-cat com/sun/javacard/samples/HelloWorld/javacard/Header.cap
-com/sun/javacard/samples/HelloWorld/javacard/Directory.cap
-com/sun/javacard/samples/HelloWorld/javacard/Import.cap
-com/sun/javacard/samples/HelloWorld/javacard/Applet.cap
-com/sun/javacard/samples/HelloWorld/javacard/Class.cap
-com/sun/javacard/samples/HelloWorld/javacard/Method.cap
-com/sun/javacard/samples/HelloWorld/javacard/StaticField.cap
-com/sun/javacard/samples/HelloWorld/javacard/ConstantPool.cap
-com/sun/javacard/samples/HelloWorld/javacard/RefLocation.cap
-com/sun/javacard/samples/HelloWorld/javacard/Descriptor.cap &amp;gt;
-helloworld.bin
-~~~~~~
-
-I have run this in cygwin.  You can see I have opened up *helloworld.cap* and concatenated all the resulting .cap files into one file, HelloWorld.bin.  Try the same thing to your .cap file, and please let us know if it doesn't work.
+Please consult the manual on https://github.com/kaoh/globalplatform/blob/master/gpshell/src/gpshell.1.md
&amp;lt;/file&amp;gt;&amp;lt;/http:&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Karsten Ohme</dc:creator><pubDate>Sun, 21 Jun 2020 22:42:31 -0000</pubDate><guid>https://sourceforge.net82b6966671f0ab5bdd1d4b1c8d45f1e9fe3da544</guid></item><item><title>GPShell modified by Karsten Ohme</title><link>https://sourceforge.net/p/globalplatform/wiki/GPShell/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v19
+++ v20
@@ -590,4 +590,4 @@
 helloworld.bin
 ~~~~~~

-I have run this in cygwin.  You can see I have opened up *helloworld.cap* and concatanated all the resulting .cap files into one file, HelloWorld.bin.  Try the same thing to your .cap file, and please let us know if it doesn't work.
+I have run this in cygwin.  You can see I have opened up *helloworld.cap* and concatenated all the resulting .cap files into one file, HelloWorld.bin.  Try the same thing to your .cap file, and please let us know if it doesn't work.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Karsten Ohme</dc:creator><pubDate>Tue, 12 May 2020 22:30:05 -0000</pubDate><guid>https://sourceforge.net45752f4e95ea25b12cdb2be4ec42ca14b3d2b99e</guid></item><item><title>GPShell modified by Karsten Ohme</title><link>https://sourceforge.net/p/globalplatform/wiki/GPShell/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v18
+++ v19
@@ -503,7 +503,7 @@

 # Key Derivation #

-For the VISA2 key derivation scheme, like used in a GemXpresso Pro or some JCOP cards, you have to enable it with the -keyDerivation set to "visa2" during open_sc.
+For the VISA2 key derivation scheme, like used in a GemXpresso Pro, Palmera or some JCOP cards, you have to enable it with the -keyDerivation set to "visa2" during open_sc.
 For the key derivation according to EMV CPS 1.1 (CDK Visa Card Production Guide (CPG) 2.0.4), like Sm@rtCafe Expert 3.0, enable it by passing "emvcps11" to -keyDerivation during open_sc.

 Known unsupported key derivation schemes are:
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Karsten Ohme</dc:creator><pubDate>Mon, 11 May 2020 00:02:19 -0000</pubDate><guid>https://sourceforge.netb3d8dfb57e94c438cc9b792e5a05e46d0260468b</guid></item><item><title>GPShell modified by Karsten Ohme</title><link>https://sourceforge.net/p/globalplatform/wiki/GPShell/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v17
+++ v18
@@ -436,6 +436,7 @@
 * Axalto Cyberflex Access 64k
 * Gemalto Generations Flexible
 * Sm@rtCafe Expert 3.0
+* Tongfang420

 We have tested this with the helloworld.cap example file. See *helloInstall.txt*, *helloDelete.txt*, and *list.txt* and the other script files (.txt) for samples. If a CAP file cannot be used, please see the later section How to convert a .cap file into a .ijc (.bin) file.

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Karsten Ohme</dc:creator><pubDate>Sat, 05 Mar 2016 03:03:57 -0000</pubDate><guid>https://sourceforge.net1b11ff469f32f15e5d90e43dc83aafe9ba048151</guid></item><item><title>GPShell modified by Karsten Ohme</title><link>https://sourceforge.net/p/globalplatform/wiki/GPShell/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v16
+++ v17
@@ -423,6 +423,7 @@

 ## Tested Cards ##

+* Gemalto IDCore 3010
 * Oberthur CosmopoliC 32K (OP201)
 * CosmopoliC 64K V5.2 (GP211, SCP01, Impl05)
 * Axalto Cyberflex e-gate 32k (OP201)
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Karsten Ohme</dc:creator><pubDate>Fri, 27 Mar 2015 16:17:22 -0000</pubDate><guid>https://sourceforge.net06694e46662b99999de6e181b90d8bba26996e92</guid></item><item><title>GPShell modified by Karsten Ohme</title><link>https://sourceforge.net/p/globalplatform/wiki/GPShell/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v15
+++ v16
@@ -502,11 +502,11 @@
 # Key Derivation #

 For the VISA2 key derivation scheme, like used in a GemXpresso Pro or some JCOP cards, you have to enable it with the -keyDerivation set to "visa2" during open_sc.
-For the key derivation according to EMV CPS 1.1 (CDK Visa Card Production Guide (CPG) 2.04), like Sm@rtCafe Expert 3.0, enable it by passing "emvcps11" to -keyDerivation during open_sc.
+For the key derivation according to EMV CPS 1.1 (CDK Visa Card Production Guide (CPG) 2.0.4), like Sm@rtCafe Expert 3.0, enable it by passing "emvcps11" to -keyDerivation during open_sc.

 Known unsupported key derivation schemes are:

-* CDK Visa Card Production Guide CPG 2.02
+* CDK Visa Card Production Guide CPG 2.0.2
 * ISK(D)

 # Security Domain AIDs #
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Karsten Ohme</dc:creator><pubDate>Tue, 25 Feb 2014 15:31:56 -0000</pubDate><guid>https://sourceforge.net66ec5e12c14c908632a84ef8bb2d71a58e0dd4ca</guid></item><item><title>GPShell modified by Karsten Ohme</title><link>https://sourceforge.net/p/globalplatform/wiki/GPShell/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v14
+++ v15
@@ -502,11 +502,11 @@
 # Key Derivation #

 For the VISA2 key derivation scheme, like used in a GemXpresso Pro or some JCOP cards, you have to enable it with the -keyDerivation set to "visa2" during open_sc.
-For the key derivation according to EMV CPS 1.1 (CDK (CPG 2.04)), like Sm@rtCafe Expert 3.0, enable it by passing "emvcps11" to -keyDerivation during open_sc.
+For the key derivation according to EMV CPS 1.1 (CDK Visa Card Production Guide (CPG) 2.04), like Sm@rtCafe Expert 3.0, enable it by passing "emvcps11" to -keyDerivation during open_sc.

 Known unsupported key derivation schemes are:

-* CDK(CPG 2.02)
+* CDK Visa Card Production Guide CPG 2.02
 * ISK(D)

 # Security Domain AIDs #
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Karsten Ohme</dc:creator><pubDate>Tue, 25 Feb 2014 14:27:33 -0000</pubDate><guid>https://sourceforge.netb9fff5a8a692d573809500773328ab95df0da09e</guid></item><item><title>GPShell modified by Karsten Ohme</title><link>https://sourceforge.net/p/globalplatform/wiki/GPShell/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v13
+++ v14
@@ -1,3 +1,5 @@
+&lt;a href="http://flattr.com/thing/1341610/GPShell-GlobalPlatform-Library" target="_blank"&gt;&lt;img alt="Flattr this" border="0" src="http://api.flattr.com/button/flattr-badge-large.png" title="Flattr this" /&gt;&lt;/a&gt;
+
 [TOC]

 # Summary #
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Karsten Ohme</dc:creator><pubDate>Tue, 14 May 2013 03:37:37 -0000</pubDate><guid>https://sourceforge.net3eb42afc8aacfa29e7add78e0720928cf2eae3bd</guid></item></channel></rss>