Blame README

Packit Service aee942
USB CCID IFD Handler
Packit Service aee942
====================
Packit Service aee942
Packit Service aee942
This package provides the source code for a generic USB CCID (Chip/Smart
Packit Service aee942
Card Interface Devices) and ICCD (Integrated Circuit(s) Card Devices)
Packit Service aee942
driver. See the USB CCID [1] and ICCD [2] specifications from the USB
Packit Service aee942
working group.
Packit Service aee942
Packit Service aee942
[1] http://www.usb.org/developers/docs/devclass_docs/DWG_Smart-Card_CCID_Rev110.pdf
Packit Service aee942
[2] http://www.usb.org/developers/docs/devclass_docs/DWG_Smart-Card_USB-ICC_ICCD_rev10.pdf
Packit Service aee942
Packit Service aee942
Authors:
Packit Service aee942
========
Packit Service aee942
Packit Service aee942
- Ludovic Rousseau <ludovic.rousseau@free.fr>
Packit Service aee942
- Carlos Prados for the PPS and ATR parsing code (taken from his
Packit Service aee942
  towitoto driver) in towitoko/ directory.
Packit Service aee942
- Olaf Kirch for the T=1 TPDU code (from the OpenCT package) in openct/
Packit Service aee942
  directory. I (Ludovic Rousseau) greatly improved this code.
Packit Service aee942
Packit Service aee942
Packit Service aee942
CCID and ICCD readers:
Packit Service aee942
======================
Packit Service aee942
Packit Service aee942
A reader can be in one of these list:
Packit Service aee942
- supported
Packit Service aee942
    See http://pcsclite.alioth.debian.org/ccid/supported.html
Packit Service aee942
- should working
Packit Service aee942
    See http://pcsclite.alioth.debian.org/ccid/shouldwork.html
Packit Service aee942
- unsupported
Packit Service aee942
    See http://pcsclite.alioth.debian.org/ccid/unsupported.html
Packit Service aee942
- disabled
Packit Service aee942
    See http://pcsclite.alioth.debian.org/ccid/disabled.html
Packit Service aee942
Packit Service aee942
Packit Service aee942
Supported operating systems:
Packit Service aee942
============================
Packit Service aee942
Packit Service aee942
- GNU/Linux (libusb 1.0)
Packit Service aee942
- MacOS X/Darwin (libusb 1.0)
Packit Service aee942
Packit Service aee942
See also http://pcsclite.alioth.debian.org/ccid.html for more
Packit Service aee942
information.
Packit Service aee942
Packit Service aee942
Packit Service aee942
Debug informations:
Packit Service aee942
===================
Packit Service aee942
Packit Service aee942
The driver uses the debug function provided by pcscd. So if pcscd sends
Packit Service aee942
its debug to stdout (pcscd --foreground) then the CCID driver will also
Packit Service aee942
send its debug to stdout. If pcscd sends its debug to syslog (by
Packit Service aee942
default) then the CCID driver will also send its debug to syslog.
Packit Service aee942
Packit Service aee942
You can change the debug level using the Info.plist configuration file.
Packit Service aee942
The Info.plist is installed, by default, in
Packit Service aee942
/usr/local/pcsc/drivers/ifd-ccid.bundle/Contents/Info.plist
Packit Service aee942
or set the environment variable LIBCCID_ifdLogLevel.
Packit Service aee942
Packit Service aee942
The debug level is set in the ifdLogLevel field. It is a binary OR
Packit Service aee942
combination of 4 different levels.
Packit Service aee942
- 1: critical: important error messages
Packit Service aee942
- 2: info:     informative messages like what reader was detected
Packit Service aee942
- 4: comm:     a dump of all the bytes exchanged between the host and the
Packit Service aee942
               reader
Packit Service aee942
- 8: periodic: periodic info when pcscd test if a card is present (every
Packit Service aee942
               1/10 of a second)
Packit Service aee942
Packit Service aee942
By default the debug level is set to 3 (1 + 2) and correspond to the
Packit Service aee942
critical and info levels.
Packit Service aee942
Packit Service aee942
You have to restart the driver so it read the configuration file again
Packit Service aee942
and use the new debug level value.  To restart the driver you just need
Packit Service aee942
to unplug all your CCID readers so the driver is unloaded and then replug
Packit Service aee942
your readers. You can also restart pcscd.
Packit Service aee942
Packit Service aee942
Packit Service aee942
Voltage selection
Packit Service aee942
=================
Packit Service aee942
Packit Service aee942
You can change the voltage level using the Info.plist configuration
Packit Service aee942
file.  The Info.plist is installed, by default, in
Packit Service aee942
/usr/local/pcsc/drivers/ifd-ccid.bundle/Contents/Info.plist
Packit Service aee942
Packit Service aee942
The voltage level is set in the ifdDriverOptions field. It is a binary OR
Packit Service aee942
combination of 4 different levels.
Packit Service aee942
Packit Service aee942
-  0: power on the card at 5V (default value)
Packit Service aee942
- 16: power on the card at 3V and, if 3V fails then use 5V
Packit Service aee942
- 32: power on the card at 1.8V, then 3V and then 5V
Packit Service aee942
- 48: let the reader decide
Packit Service aee942
Packit Service aee942
By default the voltage level is set to 0 and correspond to 5V.
Packit Service aee942
Packit Service aee942
You have to restart the driver so it read the configuration file again
Packit Service aee942
and use the new debug level value.  To restart the driver you just need
Packit Service aee942
to unplug all your CCID readers so the driver is unloaded and then replug
Packit Service aee942
your readers.  You can also restart pcscd.
Packit Service aee942
Packit Service aee942
Packit Service aee942
Licence:
Packit Service aee942
========
Packit Service aee942
Packit Service aee942
  This library is free software; you can redistribute it and/or modify it
Packit Service aee942
under the terms of the GNU Lesser General Public License as published by
Packit Service aee942
the Free Software Foundation; either version 2.1 of the License, or (at
Packit Service aee942
your option) any later version.
Packit Service aee942
Packit Service aee942
  This library is distributed in the hope that it will be useful, but
Packit Service aee942
WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service aee942
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser
Packit Service aee942
General Public License for more details.
Packit Service aee942
Packit Service aee942
  You should have received a copy of the GNU Lesser General Public License
Packit Service aee942
along with this library; if not, write to the Free Software Foundation,
Packit Service aee942
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Packit Service aee942
Packit Service aee942
Packit Service aee942
History:
Packit Service aee942
========
Packit Service aee942
Packit Service aee942
1.4.29 - 21 February 2018, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
     . Access IS NFC Smart Module (With idProduct 0x0164)
Packit Service aee942
     . Bit4id Digital-DNA Key
Packit Service aee942
     . Bit4id Digital-DNA Key BT
Packit Service aee942
     . Bluink Ltd. Bluink CCID
Packit Service aee942
     . Chicony HP Skylab USB Smartcard Keyboard
Packit Service aee942
     . HID Global OMNIKEY 5023 Smart Card Reader
Packit Service aee942
     . HID Global OMNIKEY 5027CK CCID CONFIG IF
Packit Service aee942
     . KeyXentic Inc. KX906 Smart Card Reader
Packit Service aee942
     . Spyrus Inc Rosetta USB
Packit Service aee942
     . Spyrus Inc WorkSafe Pro
Packit Service aee942
     . Watchdata USB Key (idProduct: 0x0418)
Packit Service aee942
    - The C3PO LTC31 v2 wrongly declares PIN support
Packit Service aee942
    - Remove extra EGT patch because if has bad side effects
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.28 - 11 October 2017, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
     . Athena IDProtect Flash
Packit Service aee942
     . Elatec TWN4/B1.06/CPF3.05/S1SC1.32/P (Beta 3)
Packit Service aee942
     . HID Global OMNIKEY 5122 Dual
Packit Service aee942
     . HID Global OMNIKEY 5122 Smartcard Reader
Packit Service aee942
     . IIT E.Key Crystal-1
Packit Service aee942
     . KRONEGGER Micro Core Platform
Packit Service aee942
     . KRONEGGER NFC blue Reader Platform
Packit Service aee942
     . Ledger Nano S
Packit Service aee942
     . REINER SCT cyberJack RFID standard
Packit Service aee942
     . REINER SCT cyberJack one
Packit Service aee942
     . SAFETRUST SABRE SCR
Packit Service aee942
     . SafeNet eToken 5300
Packit Service aee942
     . Unicept GmbH AirID USB Dongle
Packit Service aee942
     . Watchdata USB Key
Packit Service aee942
     . mCore SCard-Reader
Packit Service aee942
    - Disabled readers
Packit Service aee942
     . Jinmuyu Electronics Co., Ltd. MR800
Packit Service aee942
    - Fix non-pinpad HID global devices
Packit Service aee942
    - udev rules:
Packit Service aee942
     . allow rule overwrite
Packit Service aee942
     . Disable USB autosuspend on C3PO LTC31 v1 reader
Packit Service aee942
    - Some minor improvements
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.27 - 21 May 2017, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
     . ACS ACR1255U-J1
Packit Service aee942
     . ACS CryptoMate (T2)
Packit Service aee942
     . ANCUD CCID USB Reader & RNG
Packit Service aee942
     . DUALi DE-620 Combi
Packit Service aee942
     . FT CCID
Packit Service aee942
     . FT CCID KB
Packit Service aee942
     . FT U2F CCID KB
Packit Service aee942
     . FT U2F CCID KBOARD
Packit Service aee942
     . HID Global OMNIKEY 5422 Smartcard Reader
Packit Service aee942
     . InfoThink IT-102MU Reader
Packit Service aee942
     . Kapsch TrafficCom USB SAM reader
Packit Service aee942
     . MK Technology KeyPass S1
Packit Service aee942
     . Mulann PVT
Packit Service aee942
     . Regula RFID Reader
Packit Service aee942
     . Spyrus Inc PocketVault P-3X
Packit Service aee942
     . Unicept GmbH AirID USB
Packit Service aee942
    - Add Microchip SEC1210 UART support (when connected on a serial port)
Packit Service aee942
    - Add Zero Length Packet (ZLP) support for Gemalto IDBridge CT30 and K30
Packit Service aee942
      enable the patch using ./configure --enable-zlp
Packit Service aee942
    - Add support of HID Omnikey 5422 as multi slot reader (for macOS)
Packit Service aee942
    - Escape command: signals buffer overflow instead of silently
Packit Service aee942
      truncating the buffer
Packit Service aee942
    - Fix a bug with multi readers and pcscd uses hotplug_libusb (not the
Packit Service aee942
      recommended configuration)
Packit Service aee942
    - Some minor improvements
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.26 - 7 January 2017, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . Bit4id Digital DNA Key
Packit Service aee942
      . Bit4id tokenME FIPS v3
Packit Service aee942
      . INGENICO Leo
Packit Service aee942
      . appidkey GmbH ID60-USB
Packit Service aee942
    - PowerOn: the default algorithm is now 5V then 1.8V then 3V then fail.
Packit Service aee942
      It is still possible to change the initial voltage in the
Packit Service aee942
      Info.plist file.  Now, in any case, all the values are tried
Packit Service aee942
      before failing.
Packit Service aee942
    - Negotiate maximum baud rate when bNumDataRatesSupported = 0
Packit Service aee942
    - Some minor improvements
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.25 - 30 September 2016, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . Aladdin R.D. JaCarta (idProduct: 0x0402)
Packit Service aee942
      . Broadcom Corp 5880 (idProduct: 0x5832)
Packit Service aee942
      . Broadcom Corp 5880 (idProduct: 0x5833)
Packit Service aee942
      . Broadcom Corp 5880 (idProduct: 0x5834)
Packit Service aee942
      . ESMART Token GOST X2 ET1020-A
Packit Service aee942
      . Feitian VR504 VHBR Contactless & Contact Card Reader
Packit Service aee942
      . Feitian bR500
Packit Service aee942
      . Gemalto K50
Packit Service aee942
      . appidkey GmbH ID100-USB  SC Reader
Packit Service aee942
      . appidkey GmbH ID50 -USB
Packit Service aee942
    - Remove suport of
Packit Service aee942
     . Broadcom Corp 5880 (idProduct: 0x5800)
Packit Service aee942
     . Broadcom Corp 5880 (idProduct: 0x5805)
Packit Service aee942
     . KEBTechnology KONA USB SmartCard
Packit Service aee942
    - macOS: Fix composite device enumeration
Packit Service aee942
    - Fix crash with GemCore Pos Pro and GemCore Sim Pro
Packit Service aee942
    - Some minor improvements
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.24 - 22 May 2016, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
     . Generic USB Smart Card Reader
Packit Service aee942
     . Giesecke & Devrient GmbH StarSign CUT S
Packit Service aee942
     . HID AVIATOR Generic
Packit Service aee942
    - better support of Elatec TWN4 SmartCard NFC
Packit Service aee942
    - better support of SCM SCL011
Packit Service aee942
    - betetr support of HID Aviator generic
Packit Service aee942
    - fix SCARD_ATTR_VENDOR_IFD_SERIAL_NO attribute size
Packit Service aee942
    - fix a race condition on card events with multiple readers
Packit Service aee942
    - Some minor improvements
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.23 - 20 April 2016, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . ACS ACR3901U ICC Reader
Packit Service aee942
      . Alcor Micro AU9560
Packit Service aee942
      . Cherry SmartTerminal XX44
Packit Service aee942
      . HID Global OMNIKEY 3x21 Smart Card Reader
Packit Service aee942
      . HID Global OMNIKEY 5022 Smart Card Reader
Packit Service aee942
      . HID Global OMNIKEY 6121 Smart Card Reader
Packit Service aee942
      . IonIDe Smartcard Reader reader
Packit Service aee942
      . KACST HSID Reader
Packit Service aee942
      . KACST HSID Reader Dual Storage
Packit Service aee942
      . KACST HSID Reader Single Storage
Packit Service aee942
    - Remove support of
Packit Service aee942
      . VMware Virtual USB CCID
Packit Service aee942
    - Do NOT add support of
Packit Service aee942
      . DUALi DE-ABCM6
Packit Service aee942
    - Fix a busy loop consuming 100% of CPU for some composite USB devices
Packit Service aee942
      impacted readers: Yubico Yubikey NEO U2F+CCID and Broadcom BCM5880
Packit Service aee942
    - Remove support of (unused) option DRIVER_OPTION_RESET_ON_CLOSE
Packit Service aee942
    - log libusb error name instead of decimal value
Packit Service aee942
    - Some minor improvements
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.22 - 10 January 2016, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . Aktiv Rutoken PINPad 2
Packit Service aee942
      . Aladdin R.D. JC-WebPass (JC600)
Packit Service aee942
      . Aladdin R.D. JCR-770
Packit Service aee942
      . Aladdin R.D. JaCarta
Packit Service aee942
      . Aladdin R.D. JaCarta Flash
Packit Service aee942
      . Aladdin R.D. JaCarta LT
Packit Service aee942
      . Aladdin R.D. JaCarta U2F (JC602)
Packit Service aee942
      . Athena ASEDrive IIIe Combo Bio PIV
Packit Service aee942
      . Athena ASEDrive IIIe KB Bio PIV
Packit Service aee942
      . GEMALTO CT1100
Packit Service aee942
      . GEMALTO K1100
Packit Service aee942
      . Hitachi, Ltd. Hitachi Biometric Reader
Packit Service aee942
      . Hitachi, Ltd. Hitachi Portable Biometric Reader
Packit Service aee942
      . Nitrokey Nitrokey Storage
Packit Service aee942
      . THURSBY SOFTWARE TSS-PK1
Packit Service aee942
      . Thursby Software Systems, Inc. TSS-PK7
Packit Service aee942
      . Thursby Software Systems, Inc. TSS-PK8
Packit Service aee942
    - Patch for Microchip SEC1110 reader on Mac OS X (card events notification)
Packit Service aee942
    - Patch for Cherry KC 1000 SC (problem was with a T=1 card and case 2 APDU)
Packit Service aee942
    - Fix support of FEATURE_MCT_READER_DIRECT for the Kobil mIDentity
Packit Service aee942
      visual reader
Packit Service aee942
    - Set timeout to 90 sec for PPDU (Pseudo APDU) commands. This change
Packit Service aee942
      allows the use of a Secure Verify command sent as a PPDU through
Packit Service aee942
      SCardTransmit().
Packit Service aee942
    - Fix a crash when reader reader initialization failed
Packit Service aee942
    - Fix initialization bug with Gemalto Pinpad reader on Mac OS X
Packit Service aee942
    - Some minor bugs fixed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.21 - 21 October 2015, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . ACS ACR1252 Dual Reader
Packit Service aee942
      . Chicony HP USB Smartcard CCID Keyboard JP
Packit Service aee942
      . Chicony HP USB Smartcard CCID Keyboard KR
Packit Service aee942
      . FT ePass2003Auto
Packit Service aee942
      . Feitian bR301 BLE
Packit Service aee942
      . Feitian iR301 (ProductID 0x0619)
Packit Service aee942
      . Feitian iR301 (ProductID 0x061C)
Packit Service aee942
      . Identiv @MAXX ID-1 Smart Card Reader
Packit Service aee942
      . Identiv @MAXX Light2 token
Packit Service aee942
      . Identiv CLOUD 2980 F Smart Card Reader
Packit Service aee942
      . Identiv Identiv uTrust 4701 F Dual Interface Reader
Packit Service aee942
      . Identiv SCR3500 A Contact Reader
Packit Service aee942
      . Identiv SCR3500 B Contact Reader
Packit Service aee942
      . Identiv SCR35xx USB Smart Card Reader
Packit Service aee942
      . Identiv uTrust 2900 R Smart Card Reader
Packit Service aee942
      . Identiv uTrust 2910 R Smart Card Reader
Packit Service aee942
      . Identiv uTrust 2910 R Taglio SC Reader
Packit Service aee942
      . Identiv uTrust 3512 SAM slot Token
Packit Service aee942
      . Identiv uTrust 3522 embd SE RFID Token
Packit Service aee942
      . Identiv uTrust 3700 F CL Reader
Packit Service aee942
      . Identiv uTrust 3701 F CL Reader
Packit Service aee942
      . Identive Identive CLOUD 4000 F DTC
Packit Service aee942
      . Liteon HP SC Keyboard - Apollo (Liteon)
Packit Service aee942
      . Liteon HP SC Keyboard - Apollo JP (Liteon)
Packit Service aee942
      . Liteon HP SC Keyboard - Apollo KR (Liteon)
Packit Service aee942
      . Nitrokey Nitrokey HSM
Packit Service aee942
      . Nitrokey Nitrokey Pro
Packit Service aee942
      . Nitrokey Nitrokey Start
Packit Service aee942
      . Rocketek RT-SCR1
Packit Service aee942
      . VASCO DIGIPASS 875
Packit Service aee942
      . WatchCNPC USB CCID Key
Packit Service aee942
    - Remove support of
Packit Service aee942
      . Crypto Stick Crypto Stick v1.4 is an old version of Nitrokey Nitrokey Pro
Packit Service aee942
      . Free Software Initiative of Japan Gnuk Token is an old version
Packit Service aee942
        of Nitrokey Nitrokey Start
Packit Service aee942
    - Add Feitain R502 dual interface (composite) reader on Mac OS X
Packit Service aee942
    - display a human readable version of the error code returned by
Packit Service aee942
      libusb
Packit Service aee942
    - Mac OS X: wait until libusb/the reader is ready
Packit Service aee942
    - some minor bugs fixed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.20 - 5 August 2015, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . ACS ACR1251 Dual Reader
Packit Service aee942
      . Access IS NFC Smart Module
Packit Service aee942
      . BIFIT iToken
Packit Service aee942
      . BLUTRONICS BLUDRIVE II CCID (idProduct: 0x1079)
Packit Service aee942
      . Generic MultiCard Device
Packit Service aee942
      . NXP Pegoda 2 N
Packit Service aee942
      . SafeNet eToken 5100
Packit Service aee942
      . SafeNet eToken 7300
Packit Service aee942
      . Yubico Yubikey 4 CCID
Packit Service aee942
      . Yubico Yubikey 4 OTP+CCID
Packit Service aee942
      . Yubico Yubikey 4 OTP+U2F+CCID
Packit Service aee942
      . Yubico Yubikey 4 U2F+CCID
Packit Service aee942
    - Depends on libusb version 1.0.9 instead of 1.0.8
Packit Service aee942
    - The O2 Micro Oz776 reader only supports 9600 bps
Packit Service aee942
    - Change installation directory for Mac OS X El Capitan 10.11
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.19 - 13 May 2014, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . AK910 CKey (idProduct 0x0001)
Packit Service aee942
      . AK910 CKey (idProduct 0x0011)
Packit Service aee942
      . AK910 IDONE
Packit Service aee942
      . Broadcom Corp 5880 (idProduct: 0x5804)
Packit Service aee942
      . CASTLES EZCCID Smart Card Reader
Packit Service aee942
      . Cherry KC 1000 SC
Packit Service aee942
      . Cherry KC 1000 SC Z
Packit Service aee942
      . Cherry KC 1000 SC/DI
Packit Service aee942
      . Cherry KC 1000 SC/DI Z
Packit Service aee942
      . Cherry TC 1300
Packit Service aee942
      . Chicony USB Smart Card Keyboard
Packit Service aee942
      . Elatec TWN4 SmartCard NFC
Packit Service aee942
      . Feitian 502-CL
Packit Service aee942
      . Feitian eJAVA Token
Packit Service aee942
      . FujitsuTechnologySolutions GmbH Keyboard KB100 SCR
Packit Service aee942
      . FujitsuTechnologySolutions GmbH Keyboard KB100 SCR eSIG
Packit Service aee942
      . Hewlett-Packard HP lt4112 Gobi 4G Module
Packit Service aee942
      . Identive SCT3522CC token
Packit Service aee942
      . OMNIKEY AG 6121 USB mobile
Packit Service aee942
      . PIVKey T800
Packit Service aee942
      . REINER SCT tanJack Bluetooth
Packit Service aee942
      . Watchdata USB Key
Packit Service aee942
    - Add syslog(3) debug for Mac OS X Yosemite.
Packit Service aee942
      Use: sudo syslog -c "com.apple.ifdreader PID" -d to change the logging level.
Packit Service aee942
      See also "Change syslog logging level on Yosemite"
Packit Service aee942
      http://ludovicrousseau.blogspot.com/2015/03/change-syslog-logging-level-on-yosemite.html
Packit Service aee942
    - Remove ZLP patch for Gemalto IDBridge CT30 and K30. The patch was
Packit Service aee942
      causing problems with the K50.  A new reader firmware (version F)
Packit Service aee942
      solved the problem so the patch is no more needed.
Packit Service aee942
    - Fix a memory leak in an error path
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.18 - 13 September 2014, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . Cherry Cherry TC 1100
Packit Service aee942
      . Cherry Smart Card Reader USB
Packit Service aee942
      . Cherry Smartcard Keyboard G87-1xx44
Packit Service aee942
      . FujitsuTechnologySolutions GmbH Keyboard KB SCR2
Packit Service aee942
      . Lenovo Lenovo USB Smartcard Keyboard
Packit Service aee942
      . Yubico Yubikey NEO OTP+U2F+CCID
Packit Service aee942
      . Yubico Yubikey NEO U2F+CCID
Packit Service aee942
      . eID_R6 001 X8
Packit Service aee942
    - fix support of Omnikey CardMan 3121
Packit Service aee942
    - reduce memory consumed when configured with --enable-embedded
Packit Service aee942
    - prepare the port to UEFI
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.17 - 11 June 2014, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . Feitian R502
Packit Service aee942
      . Free Software Initiative of Japan Gnuk Token
Packit Service aee942
      . German Privacy Foundation Crypto Stick v2.0
Packit Service aee942
      . HID Global veriCLASS Reader
Packit Service aee942
      . HID OMNIKEY 5025-CL
Packit Service aee942
      . Identive Technologies Multi-ISO HF Reader - USB
Packit Service aee942
      . OMNIKEY 5421
Packit Service aee942
      . OMNIKEY AG 3121 USB
Packit Service aee942
      . udea MILKO V1.
Packit Service aee942
    - Fix support of O2 Micro Oz776. The reader is limited to 9600 bps
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.16 - 23 March 2014, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . Crypto Stick Crypto Stick v1.4
Packit Service aee942
      . Hewlett Packard USB Smartcard CCID Keyboard
Packit Service aee942
      . IID AT90S064 CCID READER
Packit Service aee942
      . INSIDE Secure VaultIC 405 Smart Object
Packit Service aee942
      . INSIDE Secure VaultIC 441 Smart Object
Packit Service aee942
      . Microchip SEC1110
Packit Service aee942
      . Microchip SEC1210
Packit Service aee942
      . Watchdata W5181
Packit Service aee942
    - Add support of DRIVER_OPTION_DISABLE_PIN_RETRIES
Packit Service aee942
      The Gemalto pinpad reader sends a VERIFY command with no PIN value
Packit Service aee942
      in order to retreive the remaining retries from the card.  Some
Packit Service aee942
      cards (like the OpenPGP card) do not support this.
Packit Service aee942
      It is now possible to disable this behavior from the Gemalto
Packit Service aee942
      Pinpad and Covadis Véga Alpha.
Packit Service aee942
    - add support of WTX received before SW during Secure Pin Entry Verify
Packit Service aee942
      The Swiss health care card sends a WTX request before returning
Packit Service aee942
      the SW code. If the reader is in TPDU and the card is in T=1 the
Packit Service aee942
      driver must manage the request itself.
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.15 - 14 February 2014, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . DUALi DRAGON NFC READER
Packit Service aee942
      . Feitian bR301
Packit Service aee942
      . Gemalto CR30 reader in serial communication
Packit Service aee942
      . Gemalto Ezio Shield Pro SC
Packit Service aee942
      . IIT E.Key Almaz-1C
Packit Service aee942
    - PIN_MODIFY_STRUCTURE & PIN_VERIFY_STRUCTURE: Fix calculation of
Packit Service aee942
      the command length after pcsc-lite 1.8.9 (October 2013) changed
Packit Service aee942
      the PCSC/reader.h header
Packit Service aee942
    - Add specific PIN min (0) & max (25) sizes for SmartTerminal
Packit Service aee942
      ST-2xxx
Packit Service aee942
    - Do not get the data rates if bNumDataRatesSupported = 0
Packit Service aee942
    - Support Gemalto features for pinpad readers MinimumPINSize,
Packit Service aee942
      MaximumPINSize and bEntryValidationCondition are fetched from the
Packit Service aee942
      reader firmware
Packit Service aee942
    - disable (broken) pinpad for Fujitsu SmartCase KB SCR eSIG
Packit Service aee942
    - examples/scardcontrol.c:
Packit Service aee942
      . Parse codes returned by a pinpad (as SW1/SW2)
Packit Service aee942
        Known codes for now are:
Packit Service aee942
        0x9000: Success
Packit Service aee942
        0x6400: Timeout
Packit Service aee942
        0x6401: Cancelled by user
Packit Service aee942
        0x6402: PIN mismatch
Packit Service aee942
        0x6403: Too short or too long PIN
Packit Service aee942
      . Retrieve min and max PIN sizes from the driver
Packit Service aee942
      . Retrieve bEntryValidationCondition from the driver
Packit Service aee942
    - be more strict for bInterfaceClass = 255 by also checking extra_length
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.14 - 25 November 2013, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . Gemalto GemCore SIM Pro firmware 2.0 (using USB)
Packit Service aee942
    - report FEATURE_IFD_PIN_PROPERTIES only for pinpad readers
Packit Service aee942
    - Generalize the management of (old) readers with bDeviceClass = 0xFF
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.13 - 9 October 2013, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . Access IS ePassport Reader
Packit Service aee942
      . Planeta RC700-NFC CCID
Packit Service aee942
    - Add support of Windows value for CM_IOCTL_GET_FEATURE_REQUEST
Packit Service aee942
      Windows uses 0x313520 for SCARD_CTL_CODE(3400) pcsc-lite uses
Packit Service aee942
      0x42000D48 for SCARD_CTL_CODE(3400)
Packit Service aee942
      RDP aplications (like rdesktop) will convert SCardControl()
Packit Service aee942
      commands from a Windows application (so using 0x313520) to
Packit Service aee942
      pcsc-lite.
Packit Service aee942
    - fix multi-slot support for card movement notification (introduced
Packit Service aee942
      in 1.4.12)
Packit Service aee942
    - Mac OS X: differentiate each libccid library by the dynamic linker
Packit Service aee942
      using --prefix=/fake/$BUNDLE_ID
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.12 - 12 August 2013, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . HID OMNIKEY 5127 CK
Packit Service aee942
      . HID OMNIKEY 5326 DFR
Packit Service aee942
      . HID OMNIKEY 5427 CK
Packit Service aee942
      . Ingenico WITEO USB Smart Card Reader (Base and Badge)
Packit Service aee942
      . SecuTech SecuTech Token
Packit Service aee942
    - Add support of card movement notifications for multi-slot readers
Packit Service aee942
    - Check libusb is at least at version 1.0.8
Packit Service aee942
    - Get the serialconfdir value from pcsc-lite pkg config instead of
Packit Service aee942
      using $(DESTDIR)/$(sysconfdir)/reader.conf.d/
Packit Service aee942
    - Disable class driver on Mac OS X
Packit Service aee942
    - Update the bundle name template to include the vendor name
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.11 - 12 June 2013, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
       . Gemalto IDBridge CT30
Packit Service aee942
       . Gemalto IDBridge K30
Packit Service aee942
       . SCM Microsystems Inc. SCL010 Contactless Reader
Packit Service aee942
       . SCM Microsystems Inc. SDI011 Contactless Reader
Packit Service aee942
       . THRC reader
Packit Service aee942
    - Better management of time extension requests
Packit Service aee942
    - parse: better support of devices with bInterfaceClass = 0xFF
Packit Service aee942
    - udev rule file: Remove setting group to pcscd, remove support of
Packit Service aee942
      Linux kernel < 2.6.35 for auto power up management
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.10 - 16 April 2013, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
       . ACS APG8201 USB Reader with PID 0x8202
Packit Service aee942
       . GIS Ltd SmartMouse USB
Packit Service aee942
       . Gemalto IDBridge K3000
Packit Service aee942
       . Identive CLOUD 2700 F Smart Card Reader
Packit Service aee942
       . Identive CLOUD 2700 R Smart Card Reader
Packit Service aee942
       . Identive CLOUD 4500 F Dual Interface Reader
Packit Service aee942
       . Identive CLOUD 4510 F Contactless + SAM Reader
Packit Service aee942
       . Identive CLOUD 4700 F Dual Interface Reader
Packit Service aee942
       . Identive CLOUD 4710 F Contactless + SAM Reader
Packit Service aee942
       . Inside Secure AT90SCR050
Packit Service aee942
       . Inside Secure AT90SCR100
Packit Service aee942
       . Inside Secure AT90SCR200
Packit Service aee942
       . SCR3310-NTTCom USB SmartCard Reader
Packit Service aee942
       . SafeTech SafeTouch
Packit Service aee942
       . SpringCard H512 Series
Packit Service aee942
       . SpringCard H663 Series
Packit Service aee942
       . SpringCard NFC'Roll
Packit Service aee942
       . Yubico Yubikey NEO CCID
Packit Service aee942
       . Yubico Yubikey NEO OTP+CCID
Packit Service aee942
    - Add support of time extension for Escape commands
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.9 - 16 January 2013, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
       . Aktiv Rutoken PINPad In
Packit Service aee942
       . Aktiv Rutoken PINPad Ex
Packit Service aee942
       . REINER SCT cyberJack go
Packit Service aee942
    - Info.plist: Correctly handle reader names containing &
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.8 - 22 June 2012, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
       . SCR3310-NTTCom USB (was removed in version 1.4.6)
Packit Service aee942
       . Inside Secure VaultIC 420 Smart Object
Packit Service aee942
       . Inside Secure VaultIC 440 Smart Object
Packit Service aee942
    - Wait up to 3 seconds for reader start up
Packit Service aee942
    - Add support of new PC/SC V2 part 10 properties:
Packit Service aee942
        . dwMaxAPDUDataSize
Packit Service aee942
        . wIdVendor
Packit Service aee942
        . wIdProduct
Packit Service aee942
    - Use helper functions from libPCSCv2part10 to parse the PC/SC v2
Packit Service aee942
      part 10 features
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.7 - 22 June 2012, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
       . ACS ACR101 ICC Reader
Packit Service aee942
       . ACS CryptoMate64
Packit Service aee942
       . Alcor Micro AU9522
Packit Service aee942
       . Bit4id CKey4
Packit Service aee942
       . Bit4id cryptokey
Packit Service aee942
       . Bit4id iAM
Packit Service aee942
       . Bit4id miniLector
Packit Service aee942
       . Bit4id miniLector-s
Packit Service aee942
       . CCB eSafeLD
Packit Service aee942
       . Gemalto Ezio Shield Branch
Packit Service aee942
       . KOBIL Systems IDToken
Packit Service aee942
       . NXP PR533
Packit Service aee942
    - KOBIL Systems IDToken special cases:
Packit Service aee942
       . Give more time (3 seconds instead of 2) to the reader to answer
Packit Service aee942
       . Hack for the Kobil IDToken and Geman eID card. The German eID
Packit Service aee942
         card is bogus and need to be powered off before a power on
Packit Service aee942
       . Add Reader-Info-Commands special APDU/command
Packit Service aee942
         - Manufacturer command
Packit Service aee942
         - Product name command
Packit Service aee942
         - Firmware version command
Packit Service aee942
         - Driver version command
Packit Service aee942
    - Use auto suspend for CCID devices only (Closes Alioth bug
Packit Service aee942
      [#313445] "Do not activate USB suspend for composite devices:
Packit Service aee942
      keyboard")
Packit Service aee942
    - Fix some error management in the T=1 TPDU state machine
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
    - some minor improvements added
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.6 - 6 April 2012, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
       . Avtor SC Reader 371
Packit Service aee942
       . Avtor SecureToken
Packit Service aee942
       . DIGIPASS KEY 202
Packit Service aee942
       . Fujitsu SmartCase KB SCR eSIG
Packit Service aee942
       . Giesecke & Devrient StarSign CUT
Packit Service aee942
       . Inside Secure VaultIC 460 Smart Object
Packit Service aee942
       . Macally NFC CCID eNetPad reader
Packit Service aee942
       . OmniKey 6321 USB
Packit Service aee942
       . SCM SDI 011
Packit Service aee942
       . Teridian TSC12xxF
Packit Service aee942
       . Vasco DIGIPASS KEY 101
Packit Service aee942
    - Remove support of readers without a USB CCID descriptor file
Packit Service aee942
       . 0x08E6:0x34C1:Gemalto Ezio Shield Secure Channel
Packit Service aee942
       . 0x08E6:0x34C4:Gemalto Ezio Generic
Packit Service aee942
       . 0x04E6:0x511A:SCM SCR 3310 NTTCom
Packit Service aee942
       . 0x0783:0x0008:C3PO LTC32 USBv2 with keyboard support
Packit Service aee942
       . 0x0783:0x9002:C3PO TLTC2USB
Packit Service aee942
       . 0x047B:0x020B:Silitek SK-3105
Packit Service aee942
    - Disable SPE for HP USB CCID Smartcard Keyboard. The reader is
Packit Service aee942
      bogus and unsafe.
Packit Service aee942
    - Convert "&" in a reader name into "&" to fix a problem on Mac
Packit Service aee942
      OS X
Packit Service aee942
    - Fix a problem with ICCD type A devices. We now wait for device ready
Packit Service aee942
    - Secure PIN Verify and PIN Modify: set the minimum timeout to 90
Packit Service aee942
      seconds
Packit Service aee942
    - Add support of wIdVendor and wIdProduct properties
Packit Service aee942
    - Add support of dwMaxAPDUDataSize
Packit Service aee942
    - Add support of Gemalto firmware features
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.5 - 11 October 2011, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . Alcor Micro AU9540
Packit Service aee942
      . BIFIT USB-Token iBank2key
Packit Service aee942
      . BIFIT iBank2Key
Packit Service aee942
      . Gemalto Ezio Shield PinPad reader
Packit Service aee942
      . Gemalto SA .NET Dual
Packit Service aee942
      . Precise Sense MC reader (with fingerprint)
Packit Service aee942
      . SDS DOMINO-Key TWIN Pro
Packit Service aee942
      . Ubisys 13.56MHz RFID (CCID)
Packit Service aee942
    - Add support of bPPDUSupport and FEATURE_CCID_ESC_COMMAND
Packit Service aee942
    - SCARD_ATTR_VENDOR_NAME and SCARD_ATTR_VENDOR_IFD_VERSION are not
Packit Service aee942
      the vendor name and version of the driver but of the IFD:
Packit Service aee942
      InterFace Device i.e. the smart card reader.  We then return the
Packit Service aee942
      USB iManufacturer string as SCARD_ATTR_VENDOR_NAME and USB
Packit Service aee942
      bcdDevice as SCARD_ATTR_VENDOR_IFD_VERSION
Packit Service aee942
    - reduce binary size bu removing unused features from simclist
Packit Service aee942
    - Fix some warnings reported bu Coverity
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.4 - 13 May 2011, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . Gemalto Ezio CB+
Packit Service aee942
      . Gemalto Ezio Generic
Packit Service aee942
      . Gemalto Ezio Shield
Packit Service aee942
      . Gemalto Ezio Shield PinPad
Packit Service aee942
      . Gemalto Ezio Shield Secure Channel
Packit Service aee942
    - Activate USB automatic power suspend. The Linux kernel should
Packit Service aee942
      power off the reader automatically if it is not used (pcscd is not
Packit Service aee942
      running).
Packit Service aee942
    - Add support of TLV Properties wLcdMaxCharacters and wLcdMaxLines.
Packit Service aee942
      They just duplicate wLcdLayout
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.3 - 2 April 2011, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . Feitian ePass2003 readers
Packit Service aee942
      . Neowave Weneo
Packit Service aee942
      . SCM SCL011
Packit Service aee942
      . Vasco DIGIPASS 920
Packit Service aee942
    - use :libudev: instead of :libhal: naming scheme.
Packit Service aee942
    - Do not install RSA_SecurID_getpasswd and Kobil_mIDentity_switch
Packit Service aee942
      and the associated documentation.
Packit Service aee942
    - the Secure Pin Entry of the HP USB Smart Card Keyboard is bogus so
Packit Service aee942
      disable it
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.2 - 22 February 2011, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . ACS APG8201 PINhandy 1
Packit Service aee942
      . Aktiv Rutoken lite readers
Packit Service aee942
      . Feitian SCR310 reader (also known as 301v2)
Packit Service aee942
      . Oberthur ID-ONE TOKEN SLIM v2
Packit Service aee942
      . Vasco DIGIPASS KEY 200
Packit Service aee942
      . Vasco DIGIPASS KEY 860
Packit Service aee942
      . Xiring Leo v2
Packit Service aee942
      . Xiring MyLeo
Packit Service aee942
      . new Neowave Weneo token
Packit Service aee942
    - Add back support of "bogus" Oz776, REINER SCT and BLUDRIVE II
Packit Service aee942
    - Ease detection of OpenCT by pcsc-lite
Packit Service aee942
    - disable use of interrupt card events for multi slots readers (the
Packit Service aee942
      algorithm is bogus and can't be used)
Packit Service aee942
    - fix minor problems detected by the clang tool
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.1 - 3 December 2010, Ludovic Rousseau
Packit Service aee942
    - Add support of
Packit Service aee942
      . Akasa AK-CR-03, BZH uKeyCI800-K18
Packit Service aee942
      . Free Software Initiative of Japan Gnuk token readers
Packit Service aee942
      . Gemalto Smart Guardian (SG CCID)
Packit Service aee942
      . ReinerSCT cyberJack RFID basis
Packit Service aee942
    - Remove O2 Micro Oz776 and Blutronics Bludrive II CCID since they
Packit Service aee942
      are no more supported since version 1.4.0
Packit Service aee942
    - SecurePINVerify() & SecurePINModify(): Accept big and little
Packit Service aee942
      endian byte orders for multibytes fields. The application
Packit Service aee942
      should not use HOST_TO_CCID_16() and HOST_TO_CCID_32() any more
Packit Service aee942
      and just use the normal byte order of the architecture.
Packit Service aee942
    - Need pcsc-lite 1.6.5 for TAG_IFD_POLLING_THREAD_WITH_TIMEOUT
Packit Service aee942
    - Add --enable-embedded (default is no) to build libccid for an
Packit Service aee942
      embedded system.  This will activate the NO_LOG option to disable
Packit Service aee942
      logging and limit RAM and disk consumption.
Packit Service aee942
    - Remove --enable-udev option since it is not used anymore with
Packit Service aee942
      libhal. The udev rules file is now used to change the access
Packit Service aee942
      rights of the device and not send a hotplug signal to pcscd.
Packit Service aee942
      See http://ludovicrousseau.blogspot.com/2010/09/pcscd-auto-start.html
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.4.0 - 4 August 2010, Ludovic Rousseau
Packit Service aee942
    - add support of
Packit Service aee942
      . ACS AET65
Packit Service aee942
      . Broadcom 5880
Packit Service aee942
      . C3PO LTC36
Packit Service aee942
      . Dectel CI692
Packit Service aee942
      . Gemalto Hybrid Smartcard Reader
Packit Service aee942
      . Kingtrust Multi-Reader
Packit Service aee942
      . Tianyu Smart Card Reader
Packit Service aee942
      . Todos CX00
Packit Service aee942
    - Add support of the SCM SDI 010 again. At least the contact
Packit Service aee942
      interface can be used.
Packit Service aee942
    - Use libusb-1.0 instead of libusb-0.1
Packit Service aee942
    - add support of TAG_IFD_STOP_POLLING_THREAD and use of the
Packit Service aee942
      asynchronous libusb API to be able to stop a transfer.
Packit Service aee942
    - Request pcsc-lite 1.6.2 minimum (instead of 1.6.0) to have
Packit Service aee942
      TAG_IFD_STOP_POLLING_THREAD defined
Packit Service aee942
    - The O2MICRO OZ776 patch (for OZ776, OZ776_7772, REINER_SCT and
Packit Service aee942
      BLUDRIVEII_CCID) is no more supported with libusb-1.0
Packit Service aee942
    - correctly get the IFSC from the ATR (ATR parsing was not always
Packit Service aee942
      correct)
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.13 - 4 June 2010, Ludovic Rousseau
Packit Service aee942
    - much faster warm start (up to 3.8 second gained)
Packit Service aee942
    - Add support of SCARD_ATTR_VENDOR_IFD_SERIAL_NO to get the serial
Packit Service aee942
      number of the USB device
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.12 - 8 May 2010, Ludovic Rousseau
Packit Service aee942
    - add support of
Packit Service aee942
      . Ask CPL108
Packit Service aee942
      . Atmel AT90SCR050
Packit Service aee942
      . Atmel AT90SCR100
Packit Service aee942
      . Atmel VaultIC420
Packit Service aee942
      . Atmel VaultIC440
Packit Service aee942
      . Atmel VaultIC460
Packit Service aee942
      . Cherry SmartTerminal XX7X
Packit Service aee942
      . Covadis Auriga
Packit Service aee942
      . German Privacy Foundation Crypto Stick v1.2
Packit Service aee942
      . GoldKey PIV Token
Packit Service aee942
      . KOBIL Smart Token
Packit Service aee942
      . KOBIL mIDentity 4smart
Packit Service aee942
      . KOBIL mIDentity 4smart AES
Packit Service aee942
      . KOBIL mIDentity 4smart fullsize AES
Packit Service aee942
      . KOBIL mIDentity fullsize
Packit Service aee942
      . KOBIL mIDentity visual
Packit Service aee942
      . SCM SCR3500
Packit Service aee942
      . Smart SBV280
Packit Service aee942
      . Todos AGM2 CCID
Packit Service aee942
      . Vasco DIGIPASS KEY 200
Packit Service aee942
      . Vasco DIGIPASS KEY 860
Packit Service aee942
      . Vasco DP855
Packit Service aee942
      . Vasco DP865
Packit Service aee942
      . id3 CL1356T5
Packit Service aee942
    - remove support of Smart SBV280 on manufacturer request. They use
Packit Service aee942
      libusb directly.
Packit Service aee942
    - remove support of SCM SDI 010 on manufacturer request since not
Packit Service aee942
      supported by my driver
Packit Service aee942
    - Enable the Broadcom 5880 reader. It should work after a firmware
Packit Service aee942
      upgrade.
Packit Service aee942
    - better support of Dell keyboard
Packit Service aee942
    - better support of multislot readers (like the GemCore SIM Pro)
Packit Service aee942
    - better support of SCM SCR3310
Packit Service aee942
    - better support of ICCD version A devices
Packit Service aee942
    - The Covadis Véga-Alpha reader is a GemPC pinpad inside. So we use
Packit Service aee942
      the same code to:
Packit Service aee942
      . load the strings for the display
Packit Service aee942
      . avoid limitation of the reader
Packit Service aee942
    - IFDHControl(): the (proprietary) get firmware version escape
Packit Service aee942
      command is allowed with a Gemalto reader
Packit Service aee942
      . the (proprietary) switch interface escape command is allowed on
Packit Service aee942
      the Gemalto GemProx DU
Packit Service aee942
      . return IFD_ERROR_NOT_SUPPORTED instead of
Packit Service aee942
      IFD_COMMUNICATION_ERROR if the dwControlCode value is not
Packit Service aee942
      supported
Packit Service aee942
      . return IFD_ERROR_INSUFFICIENT_BUFFER when appropriate
Packit Service aee942
    - IFDHGetCapabilities(): add support of SCARD_ATTR_ICC_PRESENCE and
Packit Service aee942
      SCARD_ATTR_ICC_INTERFACE_STATUS
Packit Service aee942
    - support FEATURE_GET_TLV_PROPERTIES
Packit Service aee942
    - add support of IOCTL_FEATURE_GET_TLV_PROPERTIES bMinPINSize &
Packit Service aee942
      bMaxPINSize for Gemalto Pinpad V1 & Covadis Véga-Alpha
Packit Service aee942
    - support extended APDU of up to 64kB with APDU readers.
Packit Service aee942
    - get the language selected during Mac OS X installation as language
Packit Service aee942
      to use for Covadis Véga-Alpha and Gemalto GemPC PinPad pinpad
Packit Service aee942
      readers
Packit Service aee942
    - FEATURE_MCT_READER_DIRECT is also supported by the Kobil mIDentity
Packit Service aee942
      visual
Packit Service aee942
    - better support of Sun Studio CC
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.11 - 28 July 2009, Ludovic Rousseau
Packit Service aee942
    - add support of
Packit Service aee942
      . Raritan D2CIM-DVUSB VM/CCID
Packit Service aee942
      . Feitian SCR301
Packit Service aee942
      . Softforum XecureHSM
Packit Service aee942
      . 2 Neowave Weneo tokens
Packit Service aee942
      . Synnix STD200
Packit Service aee942
      . Aktiv Rutoken ECP
Packit Service aee942
      . Alcor Micro SCR001
Packit Service aee942
      . ATMEL AT91SC192192CT-USB
Packit Service aee942
      . Panasonic USB Smart Card Reader 7A-Smart
Packit Service aee942
      . Gemalto GemProx DU and SU
Packit Service aee942
    - remove support of Reiner-SCT cyberJack pinpad(a) on request of
Packit Service aee942
      Reiner-SCT.  You should user the Reiner-SCT driver instead
Packit Service aee942
    - define CFBundleName to CCIDCLASSDRIVER so that non class drivers
Packit Service aee942
      have a higher priority. Used by pcsc-lite 1.5.5 and up.
Packit Service aee942
      Add a --disable-class configure option so that the Info.plist does
Packit Service aee942
      not define a Class driver. Default is class driver.
Packit Service aee942
    - do not power up a card with a voltage not supported by the reader
Packit Service aee942
    - add support of PIN_PROPERTIES_STRUCTURE structure and
Packit Service aee942
      FEATURE_IFD_PIN_PROPERTIES
Packit Service aee942
    - adds support of FEATURE_MCT_READERDIRECT. Only the Kobil TriB@nk
Packit Service aee942
      reader supports this feature for now. This is used for the Secoder
Packit Service aee942
      functionality in connected mode.
Packit Service aee942
    - add support of a composite device. No change needed with libhal.
Packit Service aee942
      use --enable-composite-as-multislot on Mac OS X since libhal is
Packit Service aee942
      not available on Mac OS X or with libusb on Linux
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.10 - 7 March 2009, Ludovic Rousseau
Packit Service aee942
    - add support for
Packit Service aee942
      . Aktiv Rutoken Magistra
Packit Service aee942
      . Atmel AT98SC032CT
Packit Service aee942
      . MSI StarReader SMART
Packit Service aee942
      . Noname reader (from Omnikey)
Packit Service aee942
      . Precise Biometrics 200 MC and 250 MC
Packit Service aee942
      . Realtek 43 in 1 + Sim + Smart Card Reader
Packit Service aee942
      . TianYu CCID SmartKey
Packit Service aee942
      . Xiring Xi Sign PKI
Packit Service aee942
    - add a patch to support the bogus OpenPGP card (on board key
Packit Service aee942
      generation sometimes timed out)
Packit Service aee942
    - disable support of the contactless part of SDI010 and SCR331DI
Packit Service aee942
      (this code was reverse engineered and hard to maintain)
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.9 - 18 November 2008, Ludovic Rousseau
Packit Service aee942
    - add support for
Packit Service aee942
     . ACS ACR122U PICC
Packit Service aee942
     . Aladdin eToken PRO USB 72K Java
Packit Service aee942
     . Atmel AT91SO
Packit Service aee942
     . CSB6 Basic
Packit Service aee942
     . CSB6 Secure
Packit Service aee942
     . CSB6 Ultimate
Packit Service aee942
     . Cherry SmartTerminal ST-1200USB
Packit Service aee942
     . CrazyWriter
Packit Service aee942
     . EasyFinger Standard
Packit Service aee942
     . EasyFinger Ultimate
Packit Service aee942
     . Gemalto PDT
Packit Service aee942
     . HP MFP Smart Card Reader
Packit Service aee942
     . KONA USB SmartCard
Packit Service aee942
     . SpringCard Prox'N'Roll
Packit Service aee942
     . VMware Virtual USB CCID
Packit Service aee942
    - MacOSX/configure: do not overwrite PCSC_CFLAGS, PCSC_LIBS,
Packit Service aee942
      LIBUSB_CFLAGS and LIBUSB_LIBS if already defined by the user
Packit Service aee942
    - by default, link statically against libusb on Mac OS X
Packit Service aee942
    - IFDHPowerICC(): use a very long timeout for PowerUp since the card
Packit Service aee942
      can be very slow to send the full ATR (up to 30 seconds at 4 MHz)
Packit Service aee942
    - SecurePINVerify(): correct a bug when using a Case 1 APDU and a
Packit Service aee942
      SCM SPR532 reader
Packit Service aee942
    - log the reader name instead of just the pcscd Lun
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.8 - 27 June 2008, Ludovic Rousseau
Packit Service aee942
    - add support for
Packit Service aee942
      . Oberthur ID-One Cosmo Card
Packit Service aee942
    - do not include the release number in the Info.plist to avoid a
Packit Service aee942
      diff of a configuration file when upgrading the package.
Packit Service aee942
    - do not fail compilation if libusb is not available
Packit Service aee942
    - do not crash if the reader firmware is bogus and does not support
Packit Service aee942
      chaining for extended APDU.  This is the case for Kobil readers
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.7 - 8 June 2008, Ludovic Rousseau
Packit Service aee942
    - add support for
Packit Service aee942
      . ActivCard Activkey Sim
Packit Service aee942
      . Pro-Active CSB6 Ultimate
Packit Service aee942
      . id3 Semiconductors CL1356A HID
Packit Service aee942
    - src/parse: do not try to parse devices with bInterfaceClass=0xFF
Packit Service aee942
      by default (use command line argument -p for proprietary class)
Packit Service aee942
    - configure.in: check if libusb-0.1 is emulated by libusb-compat +
Packit Service aee942
      libusb-1.0 to use or not the USB interrupt feature
Packit Service aee942
    - correct a bug in the serial communication (GemPC twin serial
Packit Service aee942
      reader)
Packit Service aee942
    - correct a pthread problem under Solaris
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.6 - 30 April 2008, Ludovic Rousseau
Packit Service aee942
    - add support for
Packit Service aee942
     . Covadis Alya
Packit Service aee942
     . Covadis Véga
Packit Service aee942
     . Precise Biometrics 250 MC
Packit Service aee942
     . Validy TokenA sl vt
Packit Service aee942
     . Vasco DP905
Packit Service aee942
    - better support for the O2Micro OZ776, GemCore SIM Pro
Packit Service aee942
    - the environment variable LIBCCID_ifdLogLevel overwrite the value
Packit Service aee942
      of ifdLogLevel read from the Info.plist file
Packit Service aee942
    - add support for DragonFly BSD
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.5 - 22 February 2008, Ludovic Rousseau
Packit Service aee942
    - add support for Gemplus Gem e-Seal Pro, Cherry SmartBoard,
Packit Service aee942
      G83-6610
Packit Service aee942
    - use usb_interrupt_read() only if libusb > 0.1.12 or
Packit Service aee942
      --enable-usb-interrupt is used. libusb <= 0.1.12 is bogus and will
Packit Service aee942
      consume more CPU than needed.
Packit Service aee942
    - contrib/Kobil_mIDentity_switch/Kobil_mIDentity_switch was broken
Packit Service aee942
      on Linux since release 1.3.1
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.4 - 8 February 2008, Ludovic Rousseau
Packit Service aee942
    - the serial driver could not be loaded because of the missing
Packit Service aee942
      symbol InterruptRead
Packit Service aee942
    - remove WAIT_FOR_SYSFS="bInterfaceProtocol" to do not delay udev
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.3 - 6 February 2008, Ludovic Rousseau
Packit Service aee942
    - add support for Lexar Smart Enterprise Guardian and Blutronics
Packit Service aee942
      Bludrive II CCID
Packit Service aee942
    - add support of TAG_IFD_POLLING_THREAD using IFDHPolling() to
Packit Service aee942
      detect asynchronous card movements. With this feature pcscd will
Packit Service aee942
      not poll the reader every 0.4 second for a card movement but will
Packit Service aee942
      wait until the reader sends a USB interrupt signal
Packit Service aee942
    - correct a bug with an ICCD-B device and a receive buffer smaller
Packit Service aee942
      than 4 bytes
Packit Service aee942
    - remove the sleep in the udev rule. It slows down the detection of
Packit Service aee942
      any USB device
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.2 - 22 January 2008, Ludovic Rousseau
Packit Service aee942
    - add support of Apple Mac OS X Leopard (10.5.1)
Packit Service aee942
    - solve a hotplug problem on Ubuntu 7.10 (reader was not detected)
Packit Service aee942
    - create a symlink from libccidtwin.so to libccidtwin.so.VERSION so
Packit Service aee942
      that the /etc/reader.conf configuration file do not need to edited
Packit Service aee942
      for each new driver version
Packit Service aee942
    - make driver for the GemPC Serial compile again
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.1 - 16 November 2007, Ludovic Rousseau
Packit Service aee942
    - add support for "Philips Semiconductors JCOP41V221" ICCD card,
Packit Service aee942
      O2Micro oz776 (ProductID 0x7772), CardMan5321, Giesecke & Devrient
Packit Service aee942
      StarSign Card Token 350 and 550, SafeNet IKey4000, Eutron
Packit Service aee942
      CryptoIdentity, Eutron Smart Pocket, Eutron Digipass 860, Lenovo
Packit Service aee942
      Integrated Smart Card Reader, "Kobil EMV CAP - SecOVID Reader III,
Packit Service aee942
      Charismathics token, Reiner-SCT cyberJack pinpad(a)
Packit Service aee942
    - improve support of Mac OS X and *BSD
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.3.0 - 10 May 2007, Ludovic Rousseau
Packit Service aee942
    - add support of ICCD version A and B
Packit Service aee942
    - add support for (new) KOBIL mIDentity, SchlumbergerSema Cyberflex
Packit Service aee942
      Access e-gate ICCD, Fujitsu Siemens Computers SmartCard USB 2A and
Packit Service aee942
      SmartCard Keyboard USB 2A readers, OmniKey CardMan 4321
Packit Service aee942
    - contrib/RSA_SecurID/RSA_SecurID_getpasswd: tool to get the on time
Packit Service aee942
      password also displayed on the token screen
Packit Service aee942
    - contrib/Kobil_mIDentity_switch: tool to activate the CCID reader
Packit Service aee942
      of the Kobil mIDentity. The tool should be started automatically
Packit Service aee942
      by the udev rule on Linux
Packit Service aee942
    - GemPC pinpad: localisation of the string "PIN blocked", add
Packit Service aee942
      Portuguese(pt), Dutch(nl) and Turkish(tr) localisations
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
1.2.1 - 27 January 2007, Ludovic Rousseau
Packit Service aee942
    - pcscd_ccid.rules: add non CCID generic (InterfaceClass: 0xFF)
Packit Service aee942
      readers
Packit Service aee942
    - INSTALL: document how to use --enable-udev on FreeBSD
Packit Service aee942
    - move the O2Micro Oz7762 from the unsupported to the supported list
Packit Service aee942
      since patches to support it are applied by default
Packit Service aee942
      (O2MICRO_OZ776_PATCH)
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.2.0 - 19 January 2007, Ludovic Rousseau
Packit Service aee942
    - add support for SCARD_ATTR_VENDOR_IFD_VERSION,
Packit Service aee942
      SCARD_ATTR_VENDOR_NAME and SCARD_ATTR_MAXINPUT tags used by
Packit Service aee942
      SCardGetAttrib(). Read SCARDGETATTRIB.txt for more documentation
Packit Service aee942
    - add support for OmniKey CardMan 5125, CardMan 1021, C3PO LTC32,
Packit Service aee942
      Teo by Xiring, HP USB Smartcard Reader
Packit Service aee942
    - use --enable-twinserial to build the serial reader driver
Packit Service aee942
    - use --enable-udev to configure for a use with Linux udev hotplug
Packit Service aee942
      mechanism. This will allow pcscd to avoid polling the USB bus
Packit Service aee942
      every 1 second
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.1.0 - 11 August 2006, Ludovic Rousseau
Packit Service aee942
    - support Extended APDU (up to 64KB) for readers in TPDU mode (many
Packit Service aee942
      readers) or Extended APDU mode (very rare). This only works for
Packit Service aee942
      T=1 cards.
Packit Service aee942
    - add support for C3PO LTC31 (new version), OmniKey CardMan 3021, HP
Packit Service aee942
      USB Smart Card Keyboard, Actividentity (ActiveCard) Activkey Sim,
Packit Service aee942
      id3 Semiconductors CL1356D and CL1356T, Alcor Micro AU9520
Packit Service aee942
    - support the contactless interface of the SCR331-DI-NTTCOM
Packit Service aee942
    - add support of FreeBSD
Packit Service aee942
    - increase the USB timeout used for PIN verify/modify to not timeout
Packit Service aee942
      before the reader
Packit Service aee942
    - the 4-bytes value returned by CM_IOCTL_GET_FEATURE_REQUEST shall
Packit Service aee942
      be encoded in big endian as documented in PCSC v2 part 10 ch 2.2
Packit Service aee942
      page 2. The applications using this feature shall be updated (to
Packit Service aee942
      respect the PCSC specification).
Packit Service aee942
    - use ./configure --enable-twinserial to compile and install the the
Packit Service aee942
      driver for the GemPC Twin serial
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.0.1 - 22 April 2006, Ludovic Rousseau
Packit Service aee942
    - add support for Axalto Reflex USB v3, SCM Micro SDI 010, Winbond
Packit Service aee942
      Electronics W81E381 chipset, Gemplus GemPC Card, Athena ASE IIIe
Packit Service aee942
      KB USB, OmniKey CardMan 3621
Packit Service aee942
    - support Solaris (Solaris uses a different libusb)
Packit Service aee942
    - better documentation for ./configure arguments
Packit Service aee942
    - improve support of Cherry XX44 keyboard for PIN verify and change
Packit Service aee942
      (circumvent firmware bugs)
Packit Service aee942
    - do not use LTPBundleFindValueWithKey() from pcscd since this
Packit Service aee942
      function has been removed from pcscd API
Packit Service aee942
    - use -fvisibility=hidden is available to limit the number of
Packit Service aee942
      exported symbols
Packit Service aee942
Packit Service aee942
Packit Service aee942
1.0.0 - 3 March 2006, Ludovic Rousseau
Packit Service aee942
    - add support for ActivCard USB Reader 3.0, Athena ASE IIIe USB V2,
Packit Service aee942
      SCM Micro SCR 355, SCR 3311, SCR 3320, SCR 3340 ExpressCard54,
Packit Service aee942
      Gemplus GemCore SIM Pro, GemCore POS Pro (serial and USB), GemPC
Packit Service aee942
      Express (ExpressCard/54 interface), SmartEpad (v 2.0), OmniKey
Packit Service aee942
      CardMan 5121
Packit Service aee942
    - greatly improve support of PIN PAD readers. We now support TPDU
Packit Service aee942
      readers with T=1 cards
Packit Service aee942
    - use l10n strings for the Gemplus GemPC PIN PAD (it has a screen).
Packit Service aee942
      Supported languages are: de, en, es, fr, it
Packit Service aee942
    - rename ACS ACR 38 in ACR 38U-CCID since the ACR 38 is a different
Packit Service aee942
      reader and is not CCID compatible
Packit Service aee942
    - allow to select the Power On voltage using Info.plist instead of
Packit Service aee942
      recompiling the source code
Packit Service aee942
    - correct bugs in the support of multi-slots readers
Packit Service aee942
    - if the card is faster than the reader (TA1=97 for example) we try
Packit Service aee942
      to use a not-so-bad speed (corresponding to TA1=96, 95 or 94)
Packit Service aee942
      instead of the default speed of TA1=11
Packit Service aee942
    - the src/parse tool do not use the driver anymore. No need to
Packit Service aee942
      update the Info.plist file first.
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
0.9.4 - 27 November 2005, Ludovic Rousseau
Packit Service aee942
    - add support for Eutron SIM Pocket Combo, Eutron CryptoIdentity,
Packit Service aee942
      Verisign Secure Token and VeriSign Secure Storage Token, GemPC
Packit Service aee942
      Card (PCMCIA), SCM SCR331-DI NTTCom, SCM Micro SCR 3310-NTTCom,
Packit Service aee942
      Cherry ST-1044U, Cherry SmartTerminal ST-2XXX
Packit Service aee942
    - add support of PC/SC v2 part 10 CM_IOCTL_GET_FEATURE_REQUEST add
Packit Service aee942
      support of FEATURE_VERIFY_PIN_DIRECT and FEATURE_MODIFY_PIN_DIRECT
Packit Service aee942
      remove support of IOCTL_SMARTCARD_VENDOR_VERIFY_PIN (now
Packit Service aee942
      obsoleted). A sample code is available in examples/scardcontrol.c
Packit Service aee942
    - we need pcsc-lite 1.2.9-beta9 since some structures used for PIN
Packit Service aee942
      pad readers are defined by pcsc-lite
Packit Service aee942
    - some (bogus) cards require an extra EGT but the ATR does not say
Packit Service aee942
      so. We try to detect the bogus cards and set TC1=2
Packit Service aee942
    - IFDHSetProtocolParameters(): only use a data rate supported by the
Packit Service aee942
      reader in the PPS negociation, otherwise we stay at the default
Packit Service aee942
      speed.
Packit Service aee942
    - calculate and store the read timeout according to the card ATR
Packit Service aee942
      instead of using a fixed value of 60 seconds
Packit Service aee942
    - increase the read timeout if the card sends and WTX request
Packit Service aee942
    - improve support of GemPC Twin and GemPC Card (serial protocol)
Packit Service aee942
    - reset the device on close only if DRIVER_OPTION_RESET_ON_CLOSE is
Packit Service aee942
      set. The problem was that a device reset also disconnects the
Packit Service aee942
      keyboard on a keyboard + reader device.
Packit Service aee942
    - use color logs
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
Packit Service aee942
0.9.3 - 14 March 2005, Ludovic Rousseau
Packit Service aee942
    - change the licence from GNU GPL to GNU Lesser GPL (LGPL)
Packit Service aee942
    - add support for ACS ACR 38, Kobil KAAN Base, Kobil KAAN Advanced,
Packit Service aee942
      Kobil KAAN SIM III, Kobil KAAN mIDentity, SCM Micro SCR 331,
Packit Service aee942
      SCM Micro SCR 331-DI, SCM Micro SCR 335, SCM Micro SCR 3310,
Packit Service aee942
      SCM Micro SCR 532, Cherry XX44 readers
Packit Service aee942
    - improve communication speed with readers featuring "Automatic PPS
Packit Service aee942
      made by the CCID"
Packit Service aee942
    - switch the Cherry xx33 reader in ISO mode if power up in EMV mode
Packit Service aee942
      fails.
Packit Service aee942
    - add support of character level readers. Thanks to O2Micro for the
Packit Service aee942
      patch
Packit Service aee942
    - add support for the O2Micro OZ776S reader but the reader firmware
Packit Service aee942
      is still bogus
Packit Service aee942
    - check firmware version to avoid firmwares with bugs. You can still
Packit Service aee942
      use a bogus firmware by setting DRIVER_OPTION_USE_BOGUS_FIRMWARE
Packit Service aee942
      in Info.plist
Packit Service aee942
    - some minor bugs removed
Packit Service aee942
Packit Service aee942
0.9.2 - 15 August 2004, Ludovic Rousseau
Packit Service aee942
    - T=1 TPDU code:
Packit Service aee942
      . the work on T=1 TPDU code was possible thanks to Gemplus
Packit Service aee942
        validation team who helped me test, debug and bring the code to
Packit Service aee942
        an EMV validation level. Thanks to Jérôme, Jean-Yves, Xavier and
Packit Service aee942
        the Gemplus readers department
Packit Service aee942
      . error code was not checked correctly
Packit Service aee942
      . avoid a (nearly) infinite loop when resynch are needed.
Packit Service aee942
      . correctly initialise an internal value to allow more than one
Packit Service aee942
        reader to work
Packit Service aee942
    - multi-slots readers
Packit Service aee942
      . add support for multi-slots readers. The only one I have is a
Packit Service aee942
        SCM Micro SCR 331-DI with a contact and a contactless interface.
Packit Service aee942
        The contactless interface may or may not work for you since the
Packit Service aee942
        reader uses proprietary (undocumented) commands.
Packit Service aee942
    - GemPC Twin serial reader
Packit Service aee942
      . perform a command (get the reader firmware) to be sure a GemPC
Packit Service aee942
        Twin (serial or pcmcia) reader is connected
Packit Service aee942
      . use a dynamic timeout when reading the serial port.
Packit Service aee942
        The first timeout used when detecting the reader is 2 seconds to
Packit Service aee942
        not wait too long if no reader is connected. Later timeouts are
Packit Service aee942
        set to 1 minute to allow long time APDU.
Packit Service aee942
    - use `pkg-config libpcsclite --cflags` to locate the pcsc-lite
Packit Service aee942
      header files
Packit Service aee942
    - use `pkg-config --print-errors --atleast-version=1.2.9-beta5 libpcsclite`
Packit Service aee942
      to test the pcsc-lite version
Packit Service aee942
    - code improvements thanks to the splint tool (http://www.splint.org/)
Packit Service aee942
Packit Service aee942
0.9.1 - 1 July 2004, Ludovic Rousseau
Packit Service aee942
    - I forgot to define IFD_PARITY_ERROR in a .h file
Packit Service aee942
Packit Service aee942
0.9.0 - 1 July 2004, Ludovic Rousseau
Packit Service aee942
    - The T=1 TPDU automata from Carlos Prados' Towitoko driver is very
Packit Service aee942
      limited and do not support error management mechanisms.
Packit Service aee942
      I then used the T=1 TPDU automata from OpenCT (OpenSC project).
Packit Service aee942
      This automata is much more powerful but still lacks a lot of error
Packit Service aee942
      management code.
Packit Service aee942
      I then added all the needed code to reach the quality level
Packit Service aee942
      requested by the EMV standard.
Packit Service aee942
    - add support for new readers:
Packit Service aee942
      . Advanced Card Systems ACR 38
Packit Service aee942
      . Cherry XX33
Packit Service aee942
      . Dell keyboard SK-3106
Packit Service aee942
      . Dell smart card reader keyboard
Packit Service aee942
      . SCR 333
Packit Service aee942
    - add support of multi procotol cards (T=0 and T=1)
Packit Service aee942
    - the debug level is now dynamic and set in the Info.plist file (no
Packit Service aee942
      need to recompile the driver any more)
Packit Service aee942
    - add support for the libusb naming scheme: usb:%04x/%04x:libusb:%s
Packit Service aee942
    - INSTALL: add a "configuring the driver for the serial reader
Packit Service aee942
      (GemPC Twin)" part
Packit Service aee942
    - use `pkg-config libpcsclite --variable=usbdropdir` so you do not
Packit Service aee942
      have to use --enable-usbdropdir=DIR or --enable-ccidtwindir=DIR
Packit Service aee942
      even if pcscd does not use the default /usr/local/pcsc/drivers
Packit Service aee942
    - add support of IOCTL_SMARTCARD_VENDOR_IFD_EXCHANGE and
Packit Service aee942
      IOCTL_SMARTCARD_VENDOR_VERIFY_PIN in IFDHControl()
Packit Service aee942
    - read ifdDriverOptions from Info.plist to limit the use of
Packit Service aee942
      IOCTL_SMARTCARD_VENDOR_IFD_EXCHANGE (idea from Peter Williams)
Packit Service aee942
    - provide an example of use of SCardControl()
Packit Service aee942
      IOCTL_SMARTCARD_VENDOR_IFD_EXCHANGE and
Packit Service aee942
      IOCTL_SMARTCARD_VENDOR_VERIFY_PIN in example/
Packit Service aee942
    - add a --enable-pcsclite option (default to yes) so that the driver
Packit Service aee942
      can be compiled for a different framework (one needing
Packit Service aee942
      tokenparser.l like Solaris)
Packit Service aee942
    - Reset action is power off and power on, not just power on
Packit Service aee942
    - use the include files from pcsc-lite
Packit Service aee942
    - add a mechanism to allow power on at 1.8V, 3V and then 5V as
Packit Service aee942
      specified by ISO 7816. We still use 5V for now to avoid problems
Packit Service aee942
      with non ISO compliant cards
Packit Service aee942
Packit Service aee942
0.4.1 - 14 February 2004, Ludovic Rousseau
Packit Service aee942
    - distribute missing files readers/supported_readers.txt and
Packit Service aee942
      src/create_Info_plist.pl
Packit Service aee942
      'make install' failed because of this.
Packit Service aee942
Packit Service aee942
0.4.0 - 13 February 2004, Ludovic Rousseau
Packit Service aee942
    - support of T=1 with TPDU readers. A lot of the T=1 code comes from
Packit Service aee942
      Carlos Prados towitoko driver.
Packit Service aee942
      My code is GNU GPL, his code is GNU LGPL so the global driver is
Packit Service aee942
      GNU GPL
Packit Service aee942
    - PPS negotiation if the reader does not do it automatically
Packit Service aee942
    - add support for the Silitek SK-3105 keyboard. It's a USB device
Packit Service aee942
      with multiple interfaces
Packit Service aee942
    - use the create_Info_plist.pl script to generate the installed
Packit Service aee942
      Info.plist from an Info.plist template and a list of supported
Packit Service aee942
      readers. The Info.plist was too "complex" to maintain by hand
Packit Service aee942
      since it now contains 11 entries
Packit Service aee942
    - add support of IFDHCreateChannelByName to avoid wrong reader
Packit Service aee942
      enumeration. This is not complete if you have multiple _identical_
Packit Service aee942
      readers. You need to use a > 1.2.0 pcsc-lite version (not yet
Packit Service aee942
      released at that time)
Packit Service aee942
    - build but do not install the serial ccidtwin driver by default
Packit Service aee942
      since it is useless on computers without a serial port or without
Packit Service aee942
      this reader for example.
Packit Service aee942
    - read and write timeouts are not symmetric. write timout can be
Packit Service aee942
      shorter since the reader and card is not supposed to do anything
Packit Service aee942
      before receiving (write) a command
Packit Service aee942
    - do not try to find usb.h and other libusb files if
Packit Service aee942
      --disable-libusb is used. Needed if you only want to build the
Packit Service aee942
      serial driver.  Thanks to Niki Waibel for the patch
Packit Service aee942
    - add a --enable-ccidtwindir argument to ./configure to specify the
Packit Service aee942
      serial GemPC Twin installation directory
Packit Service aee942
    - debug and code improvements and simplifications
Packit Service aee942
Packit Service aee942
0.3.2 - 4 November 2003, Ludovic Rousseau
Packit Service aee942
    - src/commands.c: correct a stupid bug that occurs with an APDU with
Packit Service aee942
      2 bytes response.
Packit Service aee942
    - Info.plist: add SPR 532 in list of supported readers
Packit Service aee942
    - parse.c: do not exit if the InterfaceClass is 0xFF (proprietary).
Packit Service aee942
      It is the case with old readers manufactured before the final
Packit Service aee942
      release of the CCID specs.
Packit Service aee942
    - move LTC31 reader from unsupported to supported reader list. It
Packit Service aee942
      was my f ault since in used odd INS byte in my test applet and odd
Packit Service aee942
      INS bytes are forbidden by ISO 7816-4 ch. 5.4.2 Instruction byte.
Packit Service aee942
      Thanks to Josep Moné s Teixidor for pointing the problem.
Packit Service aee942
    - src/commands.c: comment out the automatic GET RESPONSE part. I
Packit Service aee942
      don't think it should be in the driver. Maybe in pcscd instead?
Packit Service aee942
Packit Service aee942
0.3.1 - 23 September 2003, Ludovic Rouseau
Packit Service aee942
    - add --enable-multi-thread (enabled by default) for thread safe
Packit Service aee942
      support an APDU multiplexing. You will need pcsc-lite-1.2.0-rc3 or
Packit Service aee942
      above to use this feature.
Packit Service aee942
    - add --enable-libusb=PATH option is your libusb is not installed in
Packit Service aee942
      /usr or /usr/local
Packit Service aee942
    - honor DESTDIR in install rules (closes [ #300110 ]). Thanks to
Packit Service aee942
      Ville Skyttä for the patch.
Packit Service aee942
    - src/ccid.c: do not switch the GemPC Key and GemPC Twin in APDU
Packit Service aee942
      mode since it also swicth in EMV mode and may not work with non
Packit Service aee942
      EMV cards
Packit Service aee942
    - src/ccid_serial.c: complete reimplementation of the Twin serial
Packit Service aee942
      protocol using a finite state automata (code much simpler)
Packit Service aee942
Packit Service aee942
0.3.0 - 10 September 2003, Ludovic Rousseau
Packit Service aee942
    - support of GemPC Twin connected to a serial port. Thanks to Niki
Packit Service aee942
      W. Waibel for a working prototype.
Packit Service aee942
    - support of auto voltage at power up if the reader support it
Packit Service aee942
      instead of forcing a 5V in all cases.
Packit Service aee942
    - support of APDU mode instead of just TPDU if the reader support
Packit Service aee942
      it. Thanks to Jean-Luc Giraud for the idea and inspiration I got
Packit Service aee942
      from his "concurrent" driver.
Packit Service aee942
    - support of "time request" from the card.
Packit Service aee942
    - parse: new indentation for more readability of supported features.
Packit Service aee942
    - switch the GemPC Key and GemPC Twin in APDU mode since they
Packit Service aee942
      support it but do not announce it in the dwFeatures.
Packit Service aee942
    - new build process using autoconf/automake.
Packit Service aee942
Packit Service aee942
0.2.0 - 26 August 2003, Ludovic Rousseau
Packit Service aee942
    - Works under MacOS X
Packit Service aee942
    - Info.plist: use an <array></array> for the alias enumeration
Packit Service aee942
    - Makefile rework for *BSD and MacOS X
Packit Service aee942
Packit Service aee942
0.1.0 - 13 August 2003, Ludovic Rousseau
Packit Service aee942
    - First public release
Packit Service aee942
Packit Service aee942
Packit Service aee942
 vim:ts=20