/usr/share/chipcard/cards/geldkarte.xml is in libchipcard-data 5.1.0beta-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | <cards>
<card name="geldkarte" extends="ProcessorCard" type="processor" >
<cardinfo>
<name>Geldkarte</name>
<descr>
Geldkarte (German value card)
</descr>
<atrs>
<atr>3b ef 00 ff 81 31 ?? 45 65 63 *</atr>
<atr>3b ff 18 00 ff 81 31 ?? 45 65 63 *</atr>
</atrs>
</cardinfo>
<commands>
<!-- Verify PIN -->
<command name="VerifyPin" >
<send>
<APDU >
<ELEM type="dword">0x00200081</ELEM>
</APDU>
<DATA>
<ELEM name="pin" type="fpin2" minsize="4" maxsize="8" />
</DATA>
</send>
<results>
<result sw1="0x63" sw2="0xc0" type="error" >
Bad PIN (only one try left !)
</result>
<result sw1="0x63" type="error" >Bad PIN</result>
<result sw1="0x63" sw2="0xc1" type="error" >
Bad PIN (only two tries left !)
</result>
<result sw1="0x63" sw2="0xc2" type="error" >
Bad PIN (only three tries left !)
</result>
<result sw1="0x69" sw2="0x83" type="error" >
Card seems to be destroyed, this might have the following reasons:
1) you entered a bad PIN too often
2) the card is of a new and yet unknown type
</result>
</results>
</command>
<!-- Select DF by 16-bit-id -->
<command name="SelectDFS" >
<send>
<APDU>
<ELEM type="dword">0x00a4010c</ELEM>
</APDU>
<DATA>
<ELEM name="fileId" type="word" />
</DATA>
</send>
<results>
<result sw1="0x6a" sw2="0x82" type="error">File not found</result>
</results>
</command>
<!-- Select DF by application-id -->
<command name="SelectDFL" >
<send>
<APDU lr="0" >
<ELEM type="dword">0x00a4040c</ELEM>
</APDU>
<DATA>
<ELEM name="fileId" type="bytes" />
</DATA>
</send>
<results>
<result sw1="0x6a" sw2="0x82" type="error">File not found</result>
</results>
</command>
<!-- Select EF by id -->
<command name="SelectEFS" >
<send>
<APDU>
<ELEM type="dword">0x00a4020c</ELEM>
</APDU>
<DATA>
<ELEM name="fileId" type="word" />
</DATA>
</send>
<results>
<result sw1="0x6a" sw2="0x82" type="error">File not found</result>
</results>
</command>
<!-- Select Master File -->
<command name="SelectMF" >
<send>
<APDU>
<ELEM type="dword">0x00a4000c</ELEM>
</APDU>
</send>
<results>
<result sw1="0x6a" sw2="0x82" type="error">File not found</result>
</results>
</command>
</commands>
<!-- generic command responses -->
<results>
</results>
</card>
</cards>
|