Go to file
Ludovic Rousseau 6bed2b05f1 New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
doc New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
etc New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
m4 New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
src New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
AUTHORS New upstream version 1.8.22 2017-12-09 18:15:20 +01:00
COPYING New upstream version 1.8.24 2018-10-12 11:16:36 +02:00
ChangeLog New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
ChangeLog.git New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
GPL-3.0.txt New upstream version 1.8.22 2017-12-09 18:15:20 +01:00
HELP New upstream version 1.8.24 2018-10-12 11:16:36 +02:00
INSTALL New upstream version 1.8.24 2018-10-12 11:16:36 +02:00
Makefile.am New upstream version 1.9.2 2021-08-03 22:04:45 +02:00
Makefile.in New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
NEWS New upstream version 1.8.22 2017-12-09 18:15:20 +01:00
README New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
SECURITY New upstream version 1.8.22 2017-12-09 18:15:20 +01:00
TODO New upstream version 1.8.22 2017-12-09 18:15:20 +01:00
aclocal.m4 New upstream version 1.9.5 2021-12-04 13:36:24 +01:00
ar-lib New upstream version 1.8.24 2018-10-12 11:16:36 +02:00
bootstrap New upstream version 1.9.3 2021-08-06 22:17:18 +02:00
compile New upstream version 1.8.24 2018-10-12 11:16:36 +02:00
config.guess New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
config.h.in New upstream version 1.9.4 2021-10-01 18:05:22 +02:00
config.sub New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
configure New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
configure.ac New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
depcomp New upstream version 1.9.4 2021-10-01 18:05:22 +02:00
install-sh New upstream version 1.8.24 2018-10-12 11:16:36 +02:00
ltmain.sh New upstream version 1.9.6 2022-05-11 17:31:16 +02:00
missing New upstream version 1.8.24 2018-10-12 11:16:36 +02:00
ylwrap New upstream version 1.8.24 2018-10-12 11:16:36 +02:00

README

Title   : PCSC Lite
Authors : David Corcoran, Ludovic Rousseau
Version : 1.2.9-beta10
License : See file COPYING
Document: docs/pcsc-lite.pdf
          docs/ifdhandler-3.pdf
Requires: A C compiler
          Make, linker tools
          Lex (Lexical Analyzer).

Tested Platforms:
	Linux 2.4 (Redhat 7.1, Suse 7.1/7.2, Debian 3.0)
	Mac OS X 10.2, 10.3
	FreeBSD, NetBSD, OpenBSD
	Solaris 8 / 9
	Tru64 UNIX 5.1B
	AIX 4.3, 5.2
	HP-UX 11

Welcome to PCSC Lite.  The purpose of PCSC Lite is to
provide a Windows(R) SCard interface in a very small form factor for
communicating to smart cards and readers. PCSC Lite can be compiled
directly to a desired reader driver or can be used to dynamically
allocate/deallocate reader drivers at runtime (default).

PCSC Lite uses the same winscard API as used under Windows(R).

For security aware persons please read the SECURITY file on possible
vulnerabilites to pcsclite, how you can fix some, and how some will
be fixed.

For information on how to install driver please read the DRIVERS file.

Memory cards are supported through MCT specifications which is an APDU
like manner sent normally through the SCardTransmit() function.  This
functionality is done in the driver.

INSTALLATION:

Installation is simple.  Type ./configure and then make and make install.
Options:

   ./configure

          --enable-libusb        Enable USB libusb support
                                 (on Linux, *BSD, etc.).
          --enable-usbdropdir=DIR directory containing USB drivers
                                  (default /usr/local/pcsc/drivers)
          --disable-musclecarddebug Disable MuscleCard debugging messages
          --enable-debugatr      Enable ATR parsing debug output
          --enable-scf           use SCF for reader support
          --prefix=location      Install to <location>
          --enable-confdir=DIR   Use DIR as the configuration directory
                                 (/etc by default)
          --enable-runpid=FILE   Store the daemon pid in file FILE
          --enable-ipcdir=DIR    directory containing IPC files
                                 (default /var/run)


By running pcscd under a priveledged account you can link to
libpcsclite.so and it will act as a client to the pcscd allowing multiple
applications to be run under non-priveledged accounts.

Then type "make install" to copy the libraries to /usr/local/lib. If you
choose not to have your reader configuration file in /etc/reader.conf.d/
then use --enable-confdir=DIR

You must be root to do make install in the default locations.

Be sure to edit the /etc/reader.conf.d/my_reader.conf file for your
reader to fit your needs and make sure your IFD Handler driver is
located in the path specified as LIBRARYPATH in my_reader.conf.  If you
are using a reader with multiple smart card slots all you have to do is
define a different FRIENDLYNAME in the my_reader.conf for each reader.
Both will have the same information otherwise.

USB users shall not use /etc/reader.conf.d/ to configure USB drivers.

There is a test program with this package:

testpcsc: Linked to libpcsclite.  Must run /usr/local/pcsc/bin/pcscd
          and then ./testpcsc.  pcscd must be run as root or a hardware
          priveledged user.  ./testpcsc can be run under any account.

LIBUSB SUPPORT:
Versions after 1.2.0 support libusb. Available on GNU/Linux and *BSD.

If you do not have libusb (or do not want to use it) on your system you
should use --disable-libusb. If you use --disable-libusb under Linux the
old USB code will be used instead.

In order to use dynamic driver loading, you need to supply a directory
called "XXXX.bundle" in the usb dropdir directory (--enable-usbdropdir=PATH).
Here, the string "XXXX" stands for an arbitrary driver name, like in
"ifd-GemPC430.bundle". An example .bundle-directory can be found in the
source distribution of the ifd-gempc driver
(http://ludovic.rousseau.free.fr/softwares/ifd-GemPC/)

SOLARIS:
Solaris PC/SC applications must link with -lsocket since
the libraries are not statically linked.

QUESTIONS:

The API documentation is provided in PDF format under the docs
directory.  For questions, please email me at:
<David Corcoran> corcoran@musclecard.com

On some plateforms (GNU/Linux on mips and mipsel, FreeBSD and possibly
other *BSD suystems) you must use:
$ ./configure LDFLAGS="-lpthread"