This file is indexed.

/usr/share/pyshared/smartcard/ChangeLog is in python-pyscard 1.6.12.1-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
1.6.14 (April 2012s)
===================
        * added support for windows 64bit amd64 (Jean-Daniel Aussel)
        * support python "new" classes (derive classes from object) (Ludovic Rousseau from chrysn feature request ID 3110077)
        * fixed Reader.__eq__() (Ludovic Rousseau from Bernard Paulus bug ID 3418113)
        * fixed extended APDU transmit buffer too short by 2 (Jean-Daniel Aussel from bugs ID 2914636 and 3106761)
        + make Card and Reader objects hashable (Jean-Daniel Aussel from Hans-Peter Jansen feature request and patch)


1.6.12 (August 2010)
===================
        * comply with PEP 8 (Ludovic Rousseau)
        * comply with PEP 352 (Jean-Daniel Aussel)
        * support of pcsclite 1.6 and deprecated LPSCARD_READERSTATE_A (Ludovic Rousseau)
        * support of py2exe scripts for wxWindows examples (Jean-Daniel Aussel)
        * partial support of remote pcsc readers with pyro (Jean-Daniel Aussel)


1.6.10 (May 2010)
===================
        * connect() has a new disposition parameter that is passed to SCardDisconnect (Ludovic Rousseau)
        * fixed winscard_init() bad initialization causing problems in multithreaded environment (Ludovic Rousseau)
        * Use MAX_BUFFER_SIZE_EXTENDED (64k) instead of 1024 for SCardControl and SCardTransmit (Ludovic Rousseau, reported by Lukasz Drygiel)
        * call winscard_init() to load the library only in the %init section instead of in each wrapped function (Ludovic Rousseau)
        * for Snow Leopard, do not pass -framework PCSC to the compiler (Martin Paljak)
        * reformatting to meet pep8 (Style Guide for Python Code) guidelines (Ludovic Rousseau)
        * rename FEATURE_MCT_READERDIRECT in FEATURE_MCT_READER_DIRECT to be conform with PCSC v2 part 10 ch. 2.3 (Ludovic Rousseau)
        * added missing CARD_E_NO_READERS_AVAILABLE (Kjell Tore Fossbakk)
        * added support of x86_64 on Mac OS X Snow Leopard (Jakob Schlyter)
        * ATR can be passed in input in the reader state list (Benoit Allard)
        * clear state changed bit in waitforcard/waitforcardevent upon time-out or reader removal (Jean-Daniel Aussel)
        * removed clearing of states and ATR content upon SCardGetStatusChange() error (Benoit Allard); handling is now moved up in python framework (Jean-Daniel Aussel)



1.6.8 (July 2009)
=================
        * fixed SCARD_ERROR types to match correct types on linux and Mac OS X (Ludovic Rousseau)
        * store g_rgSCard* references as void* (Ludovic Rousseau)
        * modified Mac OS X build to locate PCSC headers using -framework option (Ludovic Rousseau)
        * added contrib root directory and parseATR as first contribution (Ludovic Rousseau)
        * updated a few samples to support  SCARD_PROTOCOL_T0 | SCARD_PROTOCOL_T1 instead of just SCARD_PROTOCOL_T0 (Ludovic Rousseau)
        * added SCARD_E_NO_READERS_AVAILABLE definition (Ludovic Rousseau)
        * added simpleAPDU.py, a simple script to send a couple of APDUs (Ludovic Rousseau)
        * added support for Snow Leopard 10.6 (Ludovic Rousseau)
        * redefined error codes to be non-Windows or -linux specifics (Ludovic Rousseau)
        * added definitions of SCARD_ATTR_xxx values for Mac OS X (Jean-Daniel Aussel)
        * delay SCardEstablishContext call until needed instead of login, to allow use of utility classes
          such as toHexString, even when the PCSC resource manager or pcscd daemon is not started (Ludovic Rousseau)
        * added javascript code for Piwik web analytics to documentation pages (Jean-Daniel Aussel)
        * update sourceforge logo pages to latest sourceforge standard (Jean-Daniel Aussel)
        * fixed ATR parsing logics (Ludovic Rousseau)
        * added control() method to CardConnection() (Ludovic Rousseau)
        * added mode argument to connect() method of CardConnection (Ludovic Rousseau)
        * added PCSC v2 feature management (Ludovic Rousseau)

1.6.7
=====
        * better thread support and clean-up in ReaderMonitoringThread (Frank Aune)
        * fixed issue on Mac OS X Leopard with dlsym loading of bad SCardControl function (Mattias Brändström)
        * supported build of documentation files on linux and removed unresolved doc links (Ludovic Rousseau)

1.6.6
=====
        * added support for Mac OS X Leopard

1.6.5
=====
        * added sample_MonitorCardsAndTransmit.py sample to illustrate how to transmit apdu to a card notified
          by the card monitor
        * added support for SCardControl (Ludovic Rousseau)
        * added support for Max OS X Tiger (Ludovic Rousseau/Jean-Daniel Aussel) (Leopard not supported)
        * added debian package directory (Ludovice Rousseau)
        * support for python 2.3, 2.4 and 2.5 distutils
        * automated insertion of sourceforge logo in html pages generated by epydoc
        * fixed documentation generation to include examples

1.6.4
=====
        * handled several issues reported by Michael Roehner concerning waitforcard() not detecting card in reader/card
          USB stick; changed the waitforcard() and waitforcardevent() to poll every 100ms for new readers and cards in
          these readers
        * following issue reported by Jarle Bauck Hamar, added samples on how to perform exclusive card connection or
          protect transmit() from being interupted by another thread or process
        * fixed ATR parsing error for optional interface bytes reported by Jarle Bauck Hamar

1.6.3
=====
        * better handling of protocol selection with associated test cases and added getATR_T1 example
          (issue reported by Adam Laurie for T=1 cards, and request from Yong David Huang for
          Omnikey CM5321 RFID that failed with T0|T1 mask).
        * added handling of linux 64-bit platform and graceful exit for unsupported platform, thanks to Henryk Plötz
        * added support for float value timeout in CardRequest, thanks to Henryk Plötz; updated test cases and a
          couple of samples with float timeouts.

1.6.2
=====
        * started support for Mac OS X Darwin; not yet operational
        * fixed issue with "'NoneType' object is not callable" exception on some
        clean-up routines executed from __del__ methods (CardMonitoring, ReaderMonitoring, CardConnection)
        * added default protocol, protocol argument to CardConnection.connect(), and get/setProtocol methods
        to CardConnection, PCSCCardConnection and CardConnectionDecorator

1.6.1
=====
        * maintenance release:
                - define LPCTSTR and LPTSTR for recent releases of pcsc-lite
                - print formatting of userdata in SCardHelper_PrintReaderStateList
                - updated home page and download links to point to sourceforge.net


1.6.0
=====

        * released open-source with LGPL license