/[pcsclite]/trunk/Drivers/ccid/README
ViewVC logotype

Contents of /trunk/Drivers/ccid/README

Parent Directory Parent Directory | Revision Log Revision Log


Revision 5741 - (hide annotations) (download)
Fri May 13 08:50:14 2011 UTC (2 years ago) by rousseau
File size: 31007 byte(s)
Some minor corrections
1 rousseau 269 USB CCID IFD Handler
2     ====================
3    
4 rousseau 5284 This package provides the source code for a generic USB CCID (Chip/Smart
5     Card Interface Devices) and ICCD (Integrated Circuit(s) Card Devices)
6     driver. See the USB CCID [1] and ICCD [2] specifications from the USB
7     working group.
8 rousseau 269
9 rousseau 5284 [1] http://www.usb.org/developers/devclass_docs/DWG_Smart-Card_CCID_Rev110.pdf
10     [2] http://www.usb.org/developers/devclass_docs/DWG_Smart-Card_USB-ICC_ICCD_rev10.pdf
11 rousseau 269
12 rousseau 697 Authors:
13     ========
14 rousseau 269
15     - Ludovic Rousseau <ludovic.rousseau@free.fr>
16 rousseau 1015 - Carlos Prados for the PPS and ATR parsing code (taken from his
17     towitoto driver) in towitoko/ directory.
18     - Olaf Kirch for the T=1 TPDU code (from the OpenCT package) in openct/
19     directory. I (Ludovic Rousseau) greatly improved this code.
20 rousseau 269
21    
22 rousseau 5284 CCID and ICCD readers:
23     ======================
24 rousseau 269
25 rousseau 5284 A reader can be in one of these list:
26     - supported
27     See http://pcsclite.alioth.debian.org/ccid/supported.html
28     - should working
29     See http://pcsclite.alioth.debian.org/ccid/shouldwork.html
30     - unsupported
31     See http://pcsclite.alioth.debian.org/ccid/unsupported.html
32     - disabled
33     See http://pcsclite.alioth.debian.org/ccid/disabled.html
34 rousseau 606
35    
36 rousseau 321 Supported operating systems:
37     ============================
38    
39 rousseau 5284 - GNU/Linux (libusb 1.0)
40     - MacOS X/Darwin (libusb 1.0)
41 rousseau 321
42 rousseau 5284 See also http://pcsclite.alioth.debian.org/ccid.html for more
43     information.
44 rousseau 321
45 rousseau 5284
46 rousseau 862 Debug informations:
47     ===================
48    
49     The driver uses the debug function provided by pcscd. So if pcscd sends
50 rousseau 5741 its debug to stdout (pcscd --foreground) then the CCID driver will also
51     send its debug to stdout. If pcscd sends its debug to syslog (by
52     default) then the CCID driver will also send its debug to syslog.
53 rousseau 862
54 rousseau 1905 You can change the debug level using the Info.plist configuration file.
55 rousseau 862 The Info.plist is installed, by default, in
56     /usr/local/pcsc/drivers/ifd-ccid.bundle/Contents/Info.plist
57 rousseau 5741 or set the environment variable LIBCCID_ifdLogLevel.
58 rousseau 862
59     The debug level is set in the ifdLogLevel field. It is a binary OR
60     combinaison of 4 different levels.
61     - 1: critical: important error messages
62     - 2: info: informative messages like what reader was detected
63 rousseau 1905 - 4: comm: a dump of all the bytes exchanged between the host and the
64     reader
65     - 8: periodic: periodic info when pcscd test if a card is present (every
66 rousseau 862 1/10 of a second)
67    
68     By default the debug level is set to 3 (1 + 2) and correspond to the
69     critical and info levels.
70    
71     You have to restart the driver so it read the configuration file again
72     and use the new debug level value. To restart the driver you just need
73     to unplug all your CCID readers so the the driver is unloaded and then
74     replug your readers. You can also restart pcscd.
75    
76    
77 rousseau 2869 Voltage selection
78     =================
79    
80 rousseau 5741 You can change the voltage level using the Info.plist configuration
81     file. The Info.plist is installed, by default, in
82 rousseau 2869 /usr/local/pcsc/drivers/ifd-ccid.bundle/Contents/Info.plist
83    
84     The voltage level is set in the ifdDriverOptions field. It is a binary OR
85     combinaison of 4 different levels.
86    
87     - 0: power on the card at 5V (default value)
88 rousseau 5741 - 16: power on the card at 3V and, if 3V fails then use 5V
89 rousseau 2869 - 32: power on the card at 1.8V, then 3V and then 5V
90     - 48: let the reader decide
91    
92 rousseau 5741 By default the voltage level is set to 0 and correspond to 5V.
93 rousseau 2869
94     You have to restart the driver so it read the configuration file again
95     and use the new debug level value. To restart the driver you just need
96     to unplug all your CCID readers so the the driver is unloaded and then
97     replug your readers. You can also restart pcscd.
98    
99    
100 rousseau 273 Licence:
101     ========
102    
103 rousseau 1399 This library is free software; you can redistribute it and/or modify it
104     under the terms of the GNU Lesser General Public License as published by
105     the Free Software Foundation; either version 2.1 of the License, or (at
106     your option) any later version.
107 rousseau 269
108 rousseau 1399 This library is distributed in the hope that it will be useful, but
109 rousseau 269 WITHOUT ANY WARRANTY; without even the implied warranty of
110 rousseau 1399 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
111 rousseau 269 General Public License for more details.
112    
113 rousseau 1399 You should have received a copy of the GNU Lesser General Public License
114     along with this library; if not, write to the Free Software Foundation,
115 rousseau 2974 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
116 rousseau 269
117    
118     History:
119     ========
120    
121 rousseau 5688 1.4.3 - 2 April 2011, Ludovic Rousseau
122     - Add support of Neowave Weneo, Vasco DIGIPASS 920, SCM SCL011,
123     Feitian ePass2003 readers
124     - use :libudev: instead of :libhal: naming scheme.
125     - Do not install RSA_SecurID_getpasswd and Kobil_mIDentity_switch
126     and the associated documentation.
127     - the Secure Pin Entry of the HP USB Smart Card Keyboard is bogus so
128     disable it
129     - some minor bugs removed
130    
131    
132 rousseau 5626 1.4.2 - 22 February 2011, Ludovic Rousseau
133     - Add support of Feitian SCR310 reader (also known as 301v2), ACS
134     APG8201 PINhandy 1, Oberthur ID-ONE TOKEN SLIM v2, new Neowave
135     Weneo token, Vasco DIGIPASS KEY 860, Vasco DIGIPASS KEY 200,
136     Xiring Leo v2, Xiring MyLeo, Aktiv Rutoken lite readers
137     - Add back support of "bogus" Oz776, REINER SCT and BLUDRIVE II
138     - Ease detection of OpenCT by pcsc-lite
139     - disable use of interrupt card events for multi slots readers (the
140     algorithm is bogus and can't be used)
141     - fix minor problems detected by the clang tool
142     - some minor bugs removed
143    
144    
145 rousseau 5430 1.4.1 - 3 December 2010, Ludovic Rousseau
146     - Add support of Gemalto Smart Guardian (SG CCID), ReinerSCT
147     cyberJack RFID basis, Akasa AK-CR-03, BZH uKeyCI800-K18, Free
148     Software Initiative of Japan Gnuk token readers
149     - Remove O2 Micro Oz776 and Blutronics Bludrive II CCID since they
150     are no more supported since version 1.4.0
151     - SecurePINVerify() & SecurePINModify(): Accept big and little
152     endian byte orders for multibytes fields. The application
153     should not use HOST_TO_CCID_16() and HOST_TO_CCID_32() any more
154     and just use the normal byte order of the architecture.
155     - Need pcsc-lite 1.6.5 for TAG_IFD_POLLING_THREAD_WITH_TIMEOUT
156     - Add --enable-embedded (default is no) to build libccid for an
157     embedded system. This will activate the NO_LOG option to disable
158     logging and limit RAM and disk consumption.
159     - Remove --enable-udev option since it is not used anymore with
160     libhal. The udev rules file is now used to change the access
161     rights of the device and not send a hotplug signal to pcscd.
162     See http://ludovicrousseau.blogspot.com/2010/09/pcscd-auto-start.html
163     - some minor bugs removed
164    
165    
166 rousseau 5108 1.4.0 - 4 August 2010, Ludovic Rousseau
167     - add support of Kingtrust Multi-Reader, Dectel CI692, Todos CX00,
168     C3PO LTC36, ACS AET65, Broadcom 5880, Tianyu Smart Card Reader,
169     Gemalto Hybrid Smartcard Reader
170     - Add support of the SCM SDI 010 again. At least the contact
171     interface can be used.
172     - Use libusb-1.0 instead of libusb-0.1
173     - add support of TAG_IFD_STOP_POLLING_THREAD and use of the
174     asynchronous libusb API to be able to stop a transfer.
175     - Request pcsc-lite 1.6.2 minimum (instead of 1.6.0) to have
176     TAG_IFD_STOP_POLLING_THREAD defined
177     - The O2MICRO OZ776 patch (for OZ776, OZ776_7772, REINER_SCT and
178     BLUDRIVEII_CCID) is no more supported with libusb-1.0
179     - correctly get the IFSC from the ATR (ATR parsing was not always
180     correct)
181     - some minor bugs removed
182    
183    
184 rousseau 4979 1.3.13 - 4 June 2010, Ludovic Rousseau
185     - much faster warm start (up to 3.8 second gained)
186     - Add support of SCARD_ATTR_VENDOR_IFD_SERIAL_NO to get the serial
187     number of the USB device
188     - some minor bugs removed
189    
190    
191 rousseau 4931 1.3.12 - 8 May 2010, Ludovic Rousseau
192     - add support of Todos AGM2 CCID, Cherry SmartTerminal XX7X, Smart
193     SBV280, Ask CPL108, German Privacy Foundation Crypto Stick v1.2,
194     id3 CL1356T5, Covadis Auriga, GoldKey PIV Token, Vasco DIGIPASS
195     KEY 860, Vasco DIGIPASS KEY 200, Vasco DP855, Vasco DP865, Atmel
196     AT90SCR100, Atmel AT90SCR050, Atmel VaultIC420, Atmel VaultIC440,
197     Atmel VaultIC460, KOBIL Smart Token, KOBIL mIDentity 4smart, KOBIL
198     mIDentity 4smart AES, KOBIL mIDentity visual, KOBIL mIDentity
199     fullsize, KOBIL mIDentity 4smart fullsize AES, SCM SCR3500
200     - remove support of Smart SBV280 on manufacturer request. They use
201     libusb directly.
202     - remove support of SCM SDI 010 on manufacturer request since not
203     supported by my driver
204     - Enable the Broadcom 5880 reader. It should work after a firmware
205     upgrade.
206     - better support of Dell keyboard
207     - better support of multislot readers (like the GemCore SIM Pro)
208     - better support of SCM SCR3310
209     - better support of ICCD version A devices
210     - The Covadis Véga-Alpha reader is a GemPC pinpad inside. So we use
211     the same code to:
212     . load the strings for the display
213     . avoid limitation of the reader
214     - IFDHControl(): the (proprietary) get firmware version escape
215     command is allowed with a Gemalto reader
216     . the (proprietary) switch interface escape command is allowed on
217     the Gemalto GemProx DU
218     . return IFD_ERROR_NOT_SUPPORTED instead of
219     IFD_COMMUNICATION_ERROR if the dwControlCode value is not
220     supported
221     . return IFD_ERROR_INSUFFICIENT_BUFFER when appropriate
222     - IFDHGetCapabilities(): add support of SCARD_ATTR_ICC_PRESENCE and
223     SCARD_ATTR_ICC_INTERFACE_STATUS
224     - support FEATURE_GET_TLV_PROPERTIES
225     - add support of IOCTL_FEATURE_GET_TLV_PROPERTIES bMinPINSize &
226     bMaxPINSize for Gemalto Pinpad V1 & Covadis Véga-Alpha
227     - support extended APDU of up to 64kB with APDU readers.
228     - get the language selected during Mac OS X installation as language
229     to use for Covadis Véga-Alpha and Gemalto GemPC PinPad pinpad
230     readers
231     - FEATURE_MCT_READER_DIRECT is also supported by the Kobil mIDentity
232     visual
233     - better support of Sun Studio CC
234     - some minor bugs removed
235    
236    
237 rousseau 4347 1.3.11 - 28 July 2009, Ludovic Rousseau
238     - add support of Raritan D2CIM-DVUSB VM/CCID, Feitian SCR301,
239     Softforum XecureHSM, 2 Neowave Weneo tokens, Synnix STD200, Aktiv
240     Rutoken ECP, Alcor Micro SCR001, ATMEL AT91SC192192CT-USB,
241     Panasonic USB Smart Card Reader 7A-Smart, Gemalto GemProx DU and SU
242     - remove support of Reiner-SCT cyberJack pinpad(a) on request of
243     Reiner-SCT. You should user the Reiner-SCT driver instead
244     - define CFBundleName to CCIDCLASSDRIVER so that non class drivers
245     have a higher priority. Used by pcsc-lite 1.5.5 and up.
246     Add a --disable-class configure option so that the Info.plist does
247     not define a Class driver. Default is class driver.
248     - do not power up a card with a voltage not supported by the reader
249     - add support of PIN_PROPERTIES_STRUCTURE structure and
250     FEATURE_IFD_PIN_PROPERTIES
251     - adds support of FEATURE_MCT_READERDIRECT. Only the Kobil TriB@nk
252     reader supports this feature for now. This is used for the Secoder
253     functionality in connected mode.
254     - add support of a composite device. No change needed with libhal.
255     use --enable-composite-as-multislot on Mac OS X since libhal is
256     not available on Mac OS X or with libusb on Linux
257     - some minor bugs removed
258    
259    
260 rousseau 3338 1.3.10 - 7 March 2009, Ludovic Rousseau
261 rousseau 3340 - add support for MSI StarReader SMART, Noname reader (from
262     Omnikey), Xiring Xi Sign PKI, Realtek 43 in 1 + Sim + Smart Card
263     Reader, Atmel AT98SC032CT, Aktiv Rutoken Magistra, TianYu CCID
264     SmartKey, Precise Biometrics 200 MC and 250 MC
265     - add a patch to support the bogus OpenPGP card (on board key
266     generation sometimes timed out)
267     - disable support of the contactless part of SDI010 and SCR331DI
268     (this code was reverse engineered and hard to maintain)
269 rousseau 3338 - some minor bugs removed
270    
271    
272 rousseau 3208 1.3.9 - 18 November 2008, Ludovic Rousseau
273     - add support for Aladdin eToken PRO USB 72K Java, Cherry
274     SmartTerminal ST-1200USB, Atmel AT91SO, SpringCard Prox'N'Roll,
275     CSB6 Basic, EasyFinger Ultimate, CSB6 Ultimate, EasyFinger
276     Standard, CrazyWriter, CSB6 Secure, KONA USB SmartCard, HP MFP
277     Smart Card Reader, ACS ACR122U PICC, Gemalto PDT, VMware Virtual
278     USB CCID
279     - MacOSX/configure: do not overwrite PCSC_CFLAGS, PCSC_LIBS,
280     LIBUSB_CFLAGS and LIBUSB_LIBS if already defined by the user
281     - by default, link statically against libusb on Mac OS X
282     - IFDHPowerICC(): use a very long timeout for PowerUp since the card
283     can be very slow to send the full ATR (up to 30 seconds at 4 MHz)
284     - SecurePINVerify(): correct a bug when using a Case 1 APDU and a
285     SCM SPR532 reader
286     - log the reader name instead of just the pcscd Lun
287     - some minor bugs removed
288    
289    
290 rousseau 3033 1.3.8 - 27 June 2008, Ludovic Rousseau
291     - add support for Oberthur ID-One Cosmo Card
292     - do not include the release number in the Info.plist to avoid a
293     diff of a configuration file when upgrading the package.
294     - do not fail compilation if libusb is not available
295     - do not crash if the reader firmware is bogus and does not support
296     chaining for extended APDU. This is the case for Kobil readers
297     - some minor bugs removed
298    
299    
300 rousseau 2985 1.3.7 - 8 June 2008, Ludovic Rousseau
301     - add support for ActivCard Activkey Sim, Pro-Active CSB6 Ultimate,
302     id3 Semiconductors CL1356A HID
303     - src/parse: do not try to parse devices with bInterfaceClass=0xFF
304     by default (use command line argument -p for proprietary class)
305     - configure.in: check if libusb-0.1 is emulated by libusb-compat +
306     libusb-1.0 to use or not the USB interrupt feature
307     - correct a bug in the serial communication (GemPC twin serial
308     reader)
309     - correct a pthread problem under Solaris
310     - some minor bugs removed
311    
312 rousseau 3033
313 rousseau 2924 1.3.6 - 30 April 2008, Ludovic Rousseau
314     - add support for Covadis Alya, Covadis Véga, Precise Biometrics 250
315     MC, Vasco DP905, Validy TokenA sl vt
316     - better support for the O2Micro OZ776, GemCore SIM Pro
317     - the environment variable LIBCCID_ifdLogLevel overwrite the value
318     of ifdLogLevel read from the Info.plist file
319     - add support for DragonFly BSD
320     - some minor bugs removed
321    
322    
323 rousseau 2842 1.3.5 - 22 February 2008, Ludovic Rousseau
324     - add support for Gemplus Gem e-Seal Pro, Cherry SmartBoard,
325     G83-6610
326     - use usb_interrupt_read() only if libusb > 0.1.12 or
327     --enable-usb-interrupt is used. libusb <= 0.1.12 is bogus and will
328     consume more CPU than needed.
329     - contrib/Kobil_mIDentity_switch/Kobil_mIDentity_switch was broken
330     on Linux since release 1.3.1
331     - some minor bugs removed
332    
333    
334 rousseau 2809 1.3.4 - 8 February 2008, Ludovic Rousseau
335     - the serial driver could not be loaded because of the missing
336     symbol InterruptRead
337     - remove WAIT_FOR_SYSFS="bInterfaceProtocol" to do not delay udev
338    
339    
340 rousseau 2796 1.3.3 - 6 February 2008, Ludovic Rousseau
341     - add support for Lexar Smart Enterprise Guardian and Blutronics
342     Bludrive II CCID
343     - add support of TAG_IFD_POLLING_THREAD using IFDHPolling() to
344     detect asynchronous card movements. With this feature pcscd will
345     not poll the reader every 0.4 second for a card movement but will
346     wait until the reader sends a USB interrupt signal
347     - correct a bug with an ICCD-B device and a receive buffer smaller
348     than 4 bytes
349     - remove the sleep in the udev rule. It slows down the detection of
350     any USB device
351     - some minor bugs removed
352    
353    
354 rousseau 2755 1.3.2 - 22 January 2008, Ludovic Rousseau
355     - add support of Apple Mac OS X Leopard (10.5.1)
356     - solve a hotplug problem on Ubuntu 7.10 (reader was not detected)
357     - create a symlink from libccidtwin.so to libccidtwin.so.VERSION so
358     that the /etc/reader.conf configuration file do not need to edited
359     for each new driver version
360     - make driver for the GemPC Serial compile again
361     - some minor bugs removed
362    
363    
364 rousseau 2692 1.3.1 - 16 November 2007, Ludovic Rousseau
365     - add support for "Philips Semiconductors JCOP41V221" ICCD card,
366     O2Micro oz776 (ProductID 0x7772), CardMan5321, Giesecke & Devrient
367     StarSign Card Token 350 and 550, SafeNet IKey4000, Eutron
368     CryptoIdentity, Eutron Smart Pocket, Eutron Digipass 860, Lenovo
369     Integrated Smart Card Reader, "Kobil EMV CAP - SecOVID Reader III,
370     Charismathics token, Reiner-SCT cyberJack pinpad(a)
371     - improve support of Mac OS X and *BSD
372     - some minor bugs removed
373    
374    
375 rousseau 2522 1.3.0 - 10 May 2007, Ludovic Rousseau
376     - add support of ICCD version A and B
377     - add support for (new) KOBIL mIDentity, SchlumbergerSema Cyberflex
378     Access e-gate ICCD, Fujitsu Siemens Computers SmartCard USB 2A and
379     SmartCard Keyboard USB 2A readers, OmniKey CardMan 4321
380     - contrib/RSA_SecurID/RSA_SecurID_getpasswd: tool to get the on time
381     password also displayed on the token screen
382     - contrib/Kobil_mIDentity_switch: tool to activate the CCID reader
383     of the Kobil mIDentity. The tool should be started automatically
384     by the udev rule on Linux
385     - GemPC pinpad: localisation of the string "PIN blocked", add
386 rousseau 2526 Portuguese(pt), Dutch(nl) and Turkish(tr) localisations
387 rousseau 2522 - some minor bugs removed
388    
389 rousseau 2363 1.2.1 - 27 January 2007, Ludovic Rousseau
390     - pcscd_ccid.rules: add non CCID generic (InterfaceClass: 0xFF)
391     readers
392     - INSTALL: document how to use --enable-udev on FreeBSD
393     - move the O2Micro Oz7762 from the unsupported to the supported list
394     since patches to support it are applied by default
395     (O2MICRO_OZ776_PATCH)
396    
397    
398 rousseau 2351 1.2.0 - 19 January 2007, Ludovic Rousseau
399 rousseau 2345 - add support for SCARD_ATTR_VENDOR_IFD_VERSION,
400     SCARD_ATTR_VENDOR_NAME and SCARD_ATTR_MAXINPUT tags used by
401     SCardGetAttrib(). Read SCARDGETATTRIB.txt for more documentation
402     - add support for OmniKey CardMan 5125, CardMan 1021, C3PO LTC32,
403     Teo by Xiring, HP USB Smartcard Reader
404     - use --enable-twinserial to build the serial reader driver
405     - use --enable-udev to configure for a use with Linux udev hotplug
406     mechanism. This will allow pcscd to avoid polling the USB bus
407     every 1 second
408     - some minor bugs removed
409    
410    
411 rousseau 2135 1.1.0 - 11 August 2006, Ludovic Rousseau
412     - support Extended APDU (up to 64KB) for readers in TPDU mode (many
413     readers) or Extended APDU mode (very rare). This only works for
414     T=1 cards.
415     - add support for C3PO LTC31 (new version), OmniKey CardMan 3021, HP
416     USB Smart Card Keyboard, Actividentity (ActiveCard) Activkey Sim,
417     id3 Semiconductors CL1356D and CL1356T, Alcor Micro AU9520
418     - support the contactless interface of the SCR331-DI-NTTCOM
419     - add support of FreeBSD
420     - increase the USB timeout used for PIN verify/modify to not timeout
421     before the reader
422     - the 4-bytes value returned by CM_IOCTL_GET_FEATURE_REQUEST shall
423     be encoded in big endian as documented in PCSC v2 part 10 ch 2.2
424     page 2. The applications using this feature shall be updated (to
425     respect the PCSC specification).
426     - use ./configure --enable-twinserial to compile and install the the
427     driver for the GemPC Twin serial
428     - some minor bugs removed
429    
430    
431 rousseau 2020 1.0.1 - 22 April 2006, Ludovic Rousseau
432     - add support for Axalto Reflex USB v3, SCM Micro SDI 010, Winbond
433     Electronics W81E381 chipset, Gemplus GemPC Card, Athena ASE IIIe
434     KB USB, OmniKey CardMan 3621
435     - support Solaris (Solaris uses a different libusb)
436     - better documentation for ./configure arguments
437     - improve support of Cherry XX44 keyboard for PIN verify and change
438     (circumvent firmware bugs)
439     - do not use LTPBundleFindValueWithKey() from pcscd since this
440     function has been removed from pcscd API
441     - use -fvisibility=hidden is available to limit the number of
442     exported symbols
443    
444    
445 rousseau 1911 1.0.0 - 3 March 2006, Ludovic Rousseau
446     - add support for ActivCard USB Reader 3.0, Athena ASE IIIe USB V2,
447     SCM Micro SCR 355, SCR 3311, SCR 3320, SCR 3340 ExpressCard54,
448     Gemplus GemCore SIM Pro, GemCore POS Pro (serial and USB), GemPC
449     Express (ExpressCard/54 interface), SmartEpad (v 2.0), OmniKey
450 rousseau 2162 CardMan 5121
451 rousseau 1911 - greatly improve support of PIN PAD readers. We now support TPDU
452     readers with T=1 cards
453     - use l10n strings for the Gemplus GemPC PIN PAD (it has a screen).
454     Supported languages are: de, en, es, fr, it
455     - rename ACS ACR 38 in ACR 38U-CCID since the ACR 38 is a different
456     reader and is not CCID compatible
457     - allow to select the Power On voltage using Info.plist instead of
458     recompiling the source code
459     - correct bugs in the support of multi-slots readers
460     - if the card is faster than the reader (TA1=97 for example) we try
461     to use a not-so-bad speed (corresponding to TA1=96, 95 or 94)
462     instead of the default speed of TA1=11
463     - the src/parse tool do not use the driver anymore. No need to
464     update the Info.plist file first.
465     - some minor bugs removed
466    
467    
468 rousseau 1761 0.9.4 - 27 November 2005, Ludovic Rousseau
469     - add support for Eutron SIM Pocket Combo, Eutron CryptoIdentity,
470     Verisign Secure Token and VeriSign Secure Storage Token, GemPC
471     Card (PCMCIA), SCM SCR331-DI NTTCom, SCM Micro SCR 3310-NTTCom,
472     Cherry ST-1044U, Cherry SmartTerminal ST-2XXX
473     - add support of PC/SC v2 part 10 CM_IOCTL_GET_FEATURE_REQUEST add
474     support of FEATURE_VERIFY_PIN_DIRECT and FEATURE_MODIFY_PIN_DIRECT
475     remove support of IOCTL_SMARTCARD_VENDOR_VERIFY_PIN (now
476     obsoleted). A sample code is available in examples/scardcontrol.c
477     - we need pcsc-lite 1.2.9-beta9 since some structures used for PIN
478     pad readers are defined by pcsc-lite
479     - some (bogus) cards require an extra EGT but the ATR does not say
480     so. We try to detect the bogus cards and set TC1=2
481     - IFDHSetProtocolParameters(): only use a data rate supported by the
482     reader in the PPS negociation, otherwise we stay at the default
483     speed.
484     - calculate and store the read timeout according to the card ATR
485     instead of using a fixed value of 60 seconds
486     - increase the read timeout if the card sends and WTX request
487     - improve support of GemPC Twin and GemPC Card (serial protocol)
488     - reset the device on close only if DRIVER_OPTION_RESET_ON_CLOSE is
489     set. The problem was that a device reset also disconnects the
490     keyboard on a keyboard + reader device.
491     - use color logs
492     - some minor bugs removed
493    
494    
495 rousseau 1400 0.9.3 - 14 March 2005, Ludovic Rousseau
496     - change the licence from GNU GPL to GNU Lesser GPL (LGPL)
497     - add support for ACS ACR 38, Kobil KAAN Base, Kobil KAAN Advanced,
498     Kobil KAAN SIM III, Kobil KAAN mIDentity, SCM Micro SCR 331,
499     SCM Micro SCR 331-DI, SCM Micro SCR 335, SCM Micro SCR 3310,
500     SCM Micro SCR 532, Cherry XX44 readers
501     - improve communication speed with readers featuring "Automatic PPS
502     made by the CCID"
503     - switch the Cherry xx33 reader in ISO mode if power up in EMV mode
504     fails.
505     - add support of character level readers. Thanks to O2Micro for the
506     patch
507     - add support for the O2Micro OZ776S reader but the reader firmware
508     is still bogus
509     - check firmware version to avoid firmwares with bugs. You can still
510     use a bogus firmware by setting DRIVER_OPTION_USE_BOGUS_FIRMWARE
511     in Info.plist
512     - some minor bugs removed
513    
514 rousseau 1186 0.9.2 - 15 August 2004, Ludovic Rousseau
515     - T=1 TPDU code:
516     . the work on T=1 TPDU code was possible thanks to Gemplus
517     validation team who helped me test, debug and bring the code to
518 rousseau 2131 an EMV validation level. Thanks to Jérôme, Jean-Yves, Xavier and
519 rousseau 1186 the Gemplus readers department
520     . error code was not checked correctly
521     . avoid a (nearly) infinite loop when resynch are needed.
522     . correctly initialise an internal value to allow more than one
523     reader to work
524     - multi-slots readers
525     . add support for multi-slots readers. The only one I have is a
526     SCM Micro SCR 331-DI with a contact and a contactless interface.
527     The contactless interface may or may not work for you since the
528     reader uses proprietary (undocumented) commands.
529     - GemPC Twin serial reader
530     . perform a command (get the reader firmware) to be sure a GemPC
531     Twin (serial or pcmcia) reader is connected
532     . use a dynamic timeout when reading the serial port.
533     The first timeout used when detecting the reader is 2 seconds to
534     not wait too long if no reader is connected. Later timeouts are
535     set to 1 minute to allow long time APDU.
536     - use `pkg-config libpcsclite --cflags` to locate the pcsc-lite
537     header files
538     - use `pkg-config --print-errors --atleast-version=1.2.9-beta5 libpcsclite`
539     to test the pcsc-lite version
540     - code improvements thanks to the splint tool (http://www.splint.org/)
541    
542 rousseau 1018 0.9.1 - 1 July 2004, Ludovic Rousseau
543     - I forgot to define IFD_PARITY_ERROR in a .h file
544    
545 rousseau 1015 0.9.0 - 1 July 2004, Ludovic Rousseau
546     - The T=1 TPDU automata from Carlos Prados' Towitoko driver is very
547     limited and do not support error management mechanisms.
548     I then used the T=1 TPDU automata from OpenCT (OpenSC project).
549     This automata is much more powerful but still lacks a lot of error
550     management code.
551     I then added all the needed code to reach the quality level
552     requested by the EMV standard.
553     - add support for new readers:
554     . Advanced Card Systems ACR 38
555     . Cherry XX33
556     . Dell keyboard SK-3106
557     . Dell smart card reader keyboard
558     . SCR 333
559     - add support of multi procotol cards (T=0 and T=1)
560     - the debug level is now dynamic and set in the Info.plist file (no
561     need to recompile the driver any more)
562     - add support for the libusb naming scheme: usb:%04x/%04x:libusb:%s
563     - INSTALL: add a "configuring the driver for the serial reader
564     (GemPC Twin)" part
565     - use `pkg-config libpcsclite --variable=usbdropdir` so you do not
566     have to use --enable-usbdropdir=DIR or --enable-ccidtwindir=DIR
567     even if pcscd does not use the default /usr/local/pcsc/drivers
568     - add support of IOCTL_SMARTCARD_VENDOR_IFD_EXCHANGE and
569     IOCTL_SMARTCARD_VENDOR_VERIFY_PIN in IFDHControl()
570     - read ifdDriverOptions from Info.plist to limit the use of
571     IOCTL_SMARTCARD_VENDOR_IFD_EXCHANGE (idea from Peter Williams)
572     - provide an example of use of SCardControl()
573     IOCTL_SMARTCARD_VENDOR_IFD_EXCHANGE and
574     IOCTL_SMARTCARD_VENDOR_VERIFY_PIN in example/
575     - add a --enable-pcsclite option (default to yes) so that the driver
576     can be compiled for a different framework (one needing
577     tokenparser.l like Solaris)
578     - Reset action is power off and power on, not just power on
579     - use the include files from pcsc-lite
580     - add a mechanism to allow power on at 1.8V, 3V and then 5V as
581     specified by ISO 7816. We still use 5V for now to avoid problems
582     with non ISO compliant cards
583    
584 rousseau 703 0.4.1 - 14 February 2004, Ludovic Rousseau
585     - distribute missing files readers/supported_readers.txt and
586     src/create_Info_plist.pl
587     'make install' failed because of this.
588    
589 rousseau 697 0.4.0 - 13 February 2004, Ludovic Rousseau
590     - support of T=1 with TPDU readers. A lot of the T=1 code comes from
591     Carlos Prados towitoko driver.
592     My code is GNU GPL, his code is GNU LGPL so the global driver is
593     GNU GPL
594     - PPS negotiation if the reader does not do it automatically
595     - add support for the Silitek SK-3105 keyboard. It's a USB device
596     with multiple interfaces
597     - use the create_Info_plist.pl script to generate the installed
598     Info.plist from an Info.plist template and a list of supported
599     readers. The Info.plist was too "complex" to maintain by hand
600     since it now contains 11 entries
601     - add support of IFDHCreateChannelByName to avoid wrong reader
602     enumeration. This is not complete if you have multiple _identical_
603     readers. You need to use a > 1.2.0 pcsc-lite version (not yet
604     released at that time)
605     - build but do not install the serial ccidtwin driver by default
606     since it is useless on computers without a serial port or without
607     this reader for example.
608     - read and write timeouts are not symmetric. write timout can be
609     shorter since the reader and card is not supposed to do anything
610     before receiving (write) a command
611     - do not try to find usb.h and other libusb files if
612     --disable-libusb is used. Needed if you only want to build the
613     serial driver. Thanks to Niki Waibel for the patch
614     - add a --enable-ccidtwindir argument to ./configure to specify the
615     serial GemPC Twin installation directory
616     - debug and code improvements and simplifications
617    
618 rousseau 552 0.3.2 - 4 November 2003, Ludovic Rousseau
619     - src/commands.c: correct a stupid bug that occurs with an APDU with
620     2 bytes response.
621     - Info.plist: add SPR 532 in list of supported readers
622     - parse.c: do not exit if the InterfaceClass is 0xFF (proprietary).
623     It is the case with old readers manufactured before the final
624     release of the CCID specs.
625     - move LTC31 reader from unsupported to supported reader list. It
626     was my f ault since in used odd INS byte in my test applet and odd
627     INS bytes are forbidden by ISO 7816-4 ch. 5.4.2 Instruction byte.
628 rousseau 2131 Thanks to Josep Moné s Teixidor for pointing the problem.
629 rousseau 552 - src/commands.c: comment out the automatic GET RESPONSE part. I
630     don't think it should be in the driver. Maybe in pcscd instead?
631    
632 rousseau 467 0.3.1 - 23 September 2003, Ludovic Rouseau
633     - add --enable-multi-thread (enabled by default) for thread safe
634     support an APDU multiplexing. You will need pcsc-lite-1.2.0-rc3 or
635     above to use this feature.
636     - add --enable-libusb=PATH option is your libusb is not installed in
637     /usr or /usr/local
638     - honor DESTDIR in install rules (closes [ #300110 ]). Thanks to
639 rousseau 2131 Ville Skyttä for the patch.
640 rousseau 467 - src/ccid.c: do not switch the GemPC Key and GemPC Twin in APDU
641     mode since it also swicth in EMV mode and may not work with non
642     EMV cards
643     - src/ccid_serial.c: complete reimplementation of the Twin serial
644     protocol using a finite state automata (code much simpler)
645    
646 rousseau 423 0.3.0 - 10 September 2003, Ludovic Rousseau
647     - support of GemPC Twin connected to a serial port. Thanks to Niki
648     W. Waibel for a working prototype.
649     - support of auto voltage at power up if the reader support it
650     instead of forcing a 5V in all cases.
651     - support of APDU mode instead of just TPDU if the reader support
652     it. Thanks to Jean-Luc Giraud for the idea and inspiration I got
653     from his "concurrent" driver.
654 rousseau 425 - support of "time request" from the card.
655 rousseau 423 - parse: new indentation for more readability of supported features.
656     - switch the GemPC Key and GemPC Twin in APDU mode since they
657     support it but do not announce it in the dwFeatures.
658     - new build process using autoconf/automake.
659    
660 rousseau 342 0.2.0 - 26 August 2003, Ludovic Rousseau
661     - Works under MacOS X
662     - Info.plist: use an <array></array> for the alias enumeration
663     - Makefile rework for *BSD and MacOS X
664    
665 rousseau 273 0.1.0 - 13 August 2003, Ludovic Rousseau
666     - First public release
667 rousseau 269
668    
669     $Id$
670    
671     vim:ts=20

Properties

Name Value
svn:eol-style native
svn:keywords Author Date Id Revision

  ViewVC Help
Powered by ViewVC 1.1.5