--- libchipcard-4.2.9.orig/debian/compat
+++ libchipcard-4.2.9/debian/compat
@@ -0,0 +1 @@
+7
--- libchipcard-4.2.9.orig/debian/kvkcard.1
+++ libchipcard-4.2.9/debian/kvkcard.1
@@ -0,0 +1,122 @@
+.\" ========================================================
+.\" license: GPL
+.\" ========================================================
+.\"
+.\"
+.TH "KVKCARD" "1" "2009 March 19th" "Manual for kvkcard" ""
+
+.SH "NAME"
+.B kvkcard
+- a commandline tool to read information from a German medical card
+
+.SH "SYNOPSIS"
+.B kvkcard
+.RB read
+|
+.RB daemon
+|
+.RB rdvd
+|
+.RB rdpd
+[
+[
+.RB -v
+|
+.RB --verbous
+] [
+.RB -f FILE
+|
+.RB --filename=FILE
+] [
+.RB -c CARDID
+|
+.RB --cardid=CARDID
+] [
+.RB -b
+|
+.RB --beep
+] [
+.RB -d
+|
+.RB --dosmode
+] [
+.RB -p PROGRAM
+|
+.RB --program=PROGRAM
+] [
+.RB -a ARGUMENTS
+|
+.RB --args=ARGUMENTS
+] [
+.RB -h
+|
+.RB --help
+]
+]
+
+.SH "DESCRIPTION"
+.B kvkcard
+is a commandline tool to read information from a German medical card (KVK or eGK).
+
+
+.SH "ARGUMENTS"
+.PP
+.TP
+.B read
+Read data from a German medical card.
+.TP
+.B daemon
+Wait for insertion of a German medical card and run a
+program on it.
+.TP
+.B rdvd
+Dump RDVD data structure of a card.
+.TP
+.B rdpd
+Dump RDPD data structure of a card.
+
+.TP
+.B -v | --verbous
+Every occurrence of this option increases the verbosity.
+.TP
+.B -f FILE | --filename=FILE
+File to write to. If omitted stdout will be used.
+.TP
+.B -c CARDID | --cardid=CARDID
+Set the ID of the card to read.
+.TP
+.B -b | --beep
+Beep after reading a card.
+.TP
+.B -d | --dosmode
+Output data in DOS mode.
+.TP
+.B -p PROGRAM | --program=PROGRAM
+Program to call on cards found.
+.TP
+.B -a ARGUMENTS | --args=ARGUMENTS
+Arguments for the program to be called
+.TP
+.B -h | --help
+Shows this help.
+
+.SH "FILES"
+.PP
+.TP
+.B /etc/chipcard/
+The system-wide configuration files.
+.TP
+.B /var/log/chipcard/
+The default log files.
+
+.SH "SEE ALSO"
+.PP
+.TP
+.B http://www.libchipcard.de
+Homepage of libchipcard project.
+.TP
+.B /usr/share/doc/libchipcard-tools/
+Local documentation.
+
+.SH "REVISION"
+.\" please add some upstream GIT tags here
--- libchipcard-4.2.9.orig/debian/libchipcard-tools.postrm
+++ libchipcard-4.2.9/debian/libchipcard-tools.postrm
@@ -0,0 +1,45 @@
+#! /bin/sh
+# postrm script for chipcard-tools
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+# * <postrm> `remove'
+# * <postrm> `purge'
+# * <old-postrm> `upgrade' <new-version>
+# * <new-postrm> `failed-upgrade' <old-version>
+# * <new-postrm> `abort-install'
+# * <new-postrm> `abort-install' <old-version>
+# * <new-postrm> `abort-upgrade' <old-version>
+# * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+
+case "$1" in
+ purge)
+ rm -f /var/run/chipcard/chipcard.comm
+ rm -f /var/run/chipcard/chipcardd4.pid
+ if [ -d /var/run/chipcard ]; then
+ rmdir /var/run/chipcard
+ fi
+ ;;
+
+ remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+
+ ;;
+
+ *)
+ echo "postrm called with unknown argument \`$1'" >&2
+ exit 1
+
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
--- libchipcard-4.2.9.orig/debian/chipcard-tool.1
+++ libchipcard-4.2.9/debian/chipcard-tool.1
@@ -0,0 +1,120 @@
+.\" ========================================================
+.\" license: GPL
+.\" ========================================================
+.\"
+.\"
+.TH "CHIPCARD-TOOL" "1" "2009 March 19th" "Manual for chipcard-tool" ""
+
+.SH "NAME"
+.B chipcard-tool
+- a commandline client to access smart cards via libchipcard
+
+.SH "SYNOPSIS"
+.B chipcard-tool
+.RB list | check | atr | monitor
+.RB [-C FILE]
+.RB [--configfile=FILE]
+.RB [-f FILE]
+.RB [--file=FILE]
+.RB [--logtype=TYPE]
+.RB [--loglevel=LEVEL]
+.RB [--logfile=FILE]
+.RB [-v]
+.RB [--verbous]
+.RB [-a]
+.RB [--showall]
+.RB [-t TIMEOUT]
+.RB [--timeout=TIMEOUT]
+.RB [--readers]
+.RB [--drivers]
+.RB [--services]
+.RB [--start-all]
+.RB [-h]
+.RB [--help]
+
+.SH "DESCRIPTION"
+.B chipcard-tool
+is a command line client for libchipcard for testing the setup.
+
+.SH "ARGUMENTS"
+.PP
+.TP
+.B list
+List configured readers.
+.TP
+.B check
+Check the specified reader.
+.TP
+.B atr
+Execute ATR on the specified reader.
+.TP
+.B monitor
+Monitor communication between server and clients.
+
+.SH "OPTIONS"
+.PP
+.TP
+.B -C FILE | --configfile=FILE
+Configuration file to load.
+.TP
+.B -f FILE | --file=FILE
+This filename is used when reading or writing data such as public keys,
+bank information etc.
+.TP
+.B --logtype=TYPE
+Set the logtype (console, file).
+.TP
+.B --loglevel=LEVEL
+Set the log level (info, notice, warning, error).
+.TP
+.B --logfile=FILE
+Set the log file (if log type is "file").
+.TP
+.B -v | --verbous
+Every occurrence of this option increases the verbosity.
+.TP
+.B -a | --showall
+Show event log for drivers and readers.
+.TP
+.B -t TIMEOUT | --timeout=TIMEOUT
+Set the total timeout for check command.
+.TP
+.B --readers
+Show readers.
+.TP
+.B --drivers
+Show drivers.
+.TP
+.B --services
+Show services.
+.TP
+.B --start-all
+Start all readers when monitoring server
+.TP
+.B -h | --help
+Shows help.
+
+.SH "ENVIRONMENT"
+
+.SH "FILES"
+.PP
+.TP
+.B /etc/chipcard/
+The system-wide configuration files.
+.TP
+.B /var/log/chipcard/
+The default log files.
+
+.SH "SEE ALSO"
+.PP
+.TP
+.B http://www.libchipcard.de
+Homepage of libchipcard project.
+.TP
+.B /usr/share/doc/libchipcard-tools/
+Local documentation
+
+.SH "BUGS"
+
+.SH "REVISION"
+.\" please add some upstream GIT tags here
--- libchipcard-4.2.9.orig/debian/rules
+++ libchipcard-4.2.9/debian/rules
@@ -0,0 +1,48 @@
+#!/usr/bin/make -f
+
+# let LibChipcard benefit from symbol visibility feature of gcc
+# this explicit setting is needed because the corresponding test in
+# configure.ac checks for the basename of the called $CC binary.
+CC=gcc
+
+clean:
+ dh clean
+ find $(CURDIR) -type l -exec rm -v \{\} \;
+ rm -fv $(CURDIR)/debian/libchipcard-tools.udev
+
+build:
+ dh build
+
+install: build install-stamp
+install-stamp:
+ dh install --until dh_auto_install
+ # remove empty directory
+ rmdir $(CURDIR)/debian/tmp/usr/lib/chipcard/server/lowlevel
+ # install libchipcard-data specifics
+ mkdir -p $(CURDIR)/debian/tmp/usr/share/doc/libchipcard-data/examples
+ cp $(CURDIR)/debian/tmp/etc/chipcard/*/chipcard?.conf.* \
+ $(CURDIR)/debian/tmp/usr/share/doc/libchipcard-data/examples
+ cp $(CURDIR)/debian/etc/chipcardc.conf $(CURDIR)/debian/tmp/etc/chipcard/client/chipcardc.conf
+ cp $(CURDIR)/debian/etc/chipcardd.conf $(CURDIR)/debian/tmp/etc/chipcard/server/chipcardd.conf
+ # install libchipcard-tool specifics
+ sh debian/generate_udev_list.sh > debian/libchipcard-tools.udev
+ install -m 755 -d $(CURDIR)/debian/tmp/usr/share/bug/libchipcard-tools/
+ install -m 755 $(CURDIR)/debian/bug.script $(CURDIR)/debian/tmp/usr/share/bug/libchipcard-tools/script
+ install -m 755 $(CURDIR)/debian/trigger_chipcardreader_scan.sh $(CURDIR)/debian/tmp/usr/lib/chipcard/
+ # install libchipcardc2 specifics
+ install -m 755 -d $(CURDIR)/debian/tmp/usr/share/bug/libchipcardc2/
+ install -m 755 $(CURDIR)/debian/bug.script $(CURDIR)/debian/tmp/usr/share/bug/libchipcardc2/script
+ # install init script and run it in boot sequence AFTER hal (24/16)
+ dh install --before dh_installinit
+ dh_installinit -- defaults 25 15
+ # run remainder debhelper install
+ dh install --remaining
+ touch install-stamp
+
+binary-arch: install
+ dh binary-arch
+binary-indep: install
+ dh binary-indep
+binary: binary-arch binary-indep
+
+.PHONY: clean build install binary-arch binary-indep binary
--- libchipcard-4.2.9.orig/debian/bug.script
+++ libchipcard-4.2.9/debian/bug.script
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+CHIPCARDC_CONF=/etc/chipcard/client/chipcardc.conf
+CHIPCARD_TOOL="/usr/bin/chipcard-tool"
+lcc_resmgr=$(sed -n 's/^\s*char\s\+resmgr="\([^"]\+\)"/\1/p' $CHIPCARDC_CONF)
+
+
+exec >&3
+if [ ! -z $lcc_resmgr ]; then
+ echo "Configured resource manager in $(basename $CHIPCARDC_CONF) is: $lcc_resmgr"
+fi
+
+if [ "$lcc_resmgr" != "pcsc" ]; then
+ if [ -x $CHIPCARD_TOOL ]; then
+ echo 'Available chipcard readers (output of "chipcard-tool list"):'
+ $CHIPCARD_TOOL list | sed -e '/^Server:.*$/d'
+ else
+ echo "$CHIPCARD_TOOL is not executable. No information available."
+ fi
+fi
+
+dpkg-query -f='Status of package pcscd (${Version}): ${Status}' --show pcscd
+if [ -x /usr/bin/pgrep ]; then
+ if [ "$(pgrep -cU root pcscd)" = "1" ]; then
+ echo " and apparently running"
+ else
+ echo " and apparently stopped"
+ fi
+else # simply terminate the line
+ echo
+fi
--- libchipcard-4.2.9.orig/debian/libchipcard-ctapi0.install
+++ libchipcard-4.2.9/debian/libchipcard-ctapi0.install
@@ -0,0 +1 @@
+usr/lib/libchipcard_ctapi.so.*
--- libchipcard-4.2.9.orig/debian/libchipcardc2.docs
+++ libchipcard-4.2.9/debian/libchipcardc2.docs
@@ -0,0 +1 @@
+README
--- libchipcard-4.2.9.orig/debian/libchipcardc2.README.Debian
+++ libchipcard-4.2.9/debian/libchipcardc2.README.Debian
@@ -0,0 +1,16 @@
+PC/SC daemon
+------------
+
+Some smartcard readers like the Omnikey Cardman 4000 or Omnikey Cardman 4040
+need the installation of a binary shared library, which is available from the
+manufacturer's homepage. If you have trouble getting such a device
+working but you got it working with the PC/SC daemon (package »pcscd«) you
+should configure the libchipcard client library to make use of the PC/SC daemon
+instead of the libchipcard daemon. You can do this by adding the following line
+to the beginning of the configuration file /etc/chipcard/client/chipcardc.conf:
+
+ char resmgr="pcsc"
+
+With this configuration the libchipcard daemon is not needed at all, so
+you can even uninstall the package »libchipcard-tools«. This will save
+some resources on your system.
--- libchipcard-4.2.9.orig/debian/libchipcard-tools.NEWS
+++ libchipcard-4.2.9/debian/libchipcard-tools.NEWS
@@ -0,0 +1,42 @@
+libchipcard (4.2.7-3) unstable; urgency=low
+
+ For auto-configuration the chipcard daemon now depends on a running HAL
+ daemon. As a consequence the libchipcard-tools init script needs to be
+ started after HAL has been started. On new installations the correct boot
+ sequence will be ensured by the package's postinst script automatically and
+ you can skip the remainder of this NEWS entry.
+
+ On upgrades from older versions the package's postinst script will try to fix
+ the boot sequence. On init-based systems the boot sequence is determined by
+ the presence and naming of symbolic links in /etc/rc?.d/ (with '?' being a
+ placeholder for the System V runlevel). If you never heard about such init
+ scripts before and you have never disabled the libchipcard service, the boot
+ sequence will most likely get fixed automatically and you can skip the
+ remainder of this NEWS entry.
+
+ If you did not change the symlinks related to libchipcard-tools in
+ /etc/rc?.d/ manually or for instance by disabling the libchipcard-tools
+ service by using 'rcconf' or any other similar tool, the boot sequence will
+ most likely get fixed successfully and you can skip the remainder of this
+ NEWS entry.
+
+ If you've modified the boot sequence for libchipcard-tools or if you've
+ disabled the init script (for instance by using 'rcconf') the package's
+ postinst script will not touch your modifications. The decision will be
+ taken based on the presence of all symlinks installed by the older versions
+ of the package libchipcard-tools you're upgrading from. I.e. if any of the
+ symbolic links listed below is missing while running the upgrade, the
+ postinst script will not touch the symbolic links in /etc/rc?.d/ at all:
+
+ /etc/rc0.d/K20libchipcard-tools
+ /etc/rc1.d/K20libchipcard-tools
+ /etc/rc2.d/S20libchipcard-tools
+ /etc/rc3.d/S20libchipcard-tools
+ /etc/rc4.d/S20libchipcard-tools
+ /etc/rc5.d/S20libchipcard-tools
+ /etc/rc6.d/K20libchipcard-tools
+
+ In this case or if in any doubt please check manually and verify that the
+ chipcard daemon is always started after HAL.
+
+ -- Micha Lenk <micha@debian.org> Wed, 02 Dec 2009 15:53:58 +0100
--- libchipcard-4.2.9.orig/debian/libchipcardc2.symbols
+++ libchipcard-4.2.9/debian/libchipcardc2.symbols
@@ -0,0 +1,927 @@
+libchipcardc.so.2 libchipcardc2 #MINVER#
+ LCM_Driver_GetDriverId@Base 4.0.0
+ LCM_Driver_GetDriverName@Base 4.0.0
+ LCM_Driver_GetDriverType@Base 4.0.0
+ LCM_Driver_GetLastChangeTime@Base 4.0.0
+ LCM_Driver_GetLibraryFile@Base 4.0.0
+ LCM_Driver_GetLogBuffer@Base 4.0.0
+ LCM_Driver_GetServerId@Base 4.0.0
+ LCM_Driver_GetStatus@Base 4.0.0
+ LCM_Driver_List2Iterator_Data@Base 4.0.0
+ LCM_Driver_List2Iterator_GetLinkCount@Base 4.2.8
+ LCM_Driver_List2Iterator_IncLinkCount@Base 4.0.0
+ LCM_Driver_List2Iterator_Next@Base 4.0.0
+ LCM_Driver_List2Iterator_Previous@Base 4.0.0
+ LCM_Driver_List2Iterator_free@Base 4.0.0
+ LCM_Driver_List2Iterator_new@Base 4.0.0
+ LCM_Driver_List2_Clear@Base 4.0.0
+ LCM_Driver_List2_Contains@Base 4.0.0
+ LCM_Driver_List2_Dump@Base 4.0.0
+ LCM_Driver_List2_Erase@Base 4.0.0
+ LCM_Driver_List2_FindIter@Base 4.0.0
+ LCM_Driver_List2_First@Base 4.0.0
+ LCM_Driver_List2_ForEach@Base 4.0.0
+ LCM_Driver_List2_GetBack@Base 4.0.0
+ LCM_Driver_List2_GetFront@Base 4.0.0
+ LCM_Driver_List2_GetSize@Base 4.0.0
+ LCM_Driver_List2_IsEmpty@Base 4.0.0
+ LCM_Driver_List2_Last@Base 4.0.0
+ LCM_Driver_List2_PopBack@Base 4.0.0
+ LCM_Driver_List2_PopFront@Base 4.0.0
+ LCM_Driver_List2_PushBack@Base 4.0.0
+ LCM_Driver_List2_PushFront@Base 4.0.0
+ LCM_Driver_List2_Remove@Base 4.0.0
+ LCM_Driver_List2_Unshare@Base 4.0.0
+ LCM_Driver_List2_dup@Base 4.0.0
+ LCM_Driver_List2_free@Base 4.0.0
+ LCM_Driver_List2_new@Base 4.0.0
+ LCM_Driver_List_Add@Base 4.0.0
+ LCM_Driver_List_AddList@Base 4.0.0
+ LCM_Driver_List_Clear@Base 4.0.0
+ LCM_Driver_List_Del@Base 4.0.0
+ LCM_Driver_List_First@Base 4.0.0
+ LCM_Driver_List_GetCount@Base 4.0.0
+ LCM_Driver_List_HasElement@Base 4.0.0
+ LCM_Driver_List_Insert@Base 4.0.0
+ LCM_Driver_List_Last@Base 4.0.0
+ LCM_Driver_List_Next@Base 4.0.0
+ LCM_Driver_List_Previous@Base 4.0.0
+ LCM_Driver_List_free@Base 4.0.0
+ LCM_Driver_List_new@Base 4.0.0
+ LCM_Driver_SetDriverId@Base 4.0.0
+ LCM_Driver_SetDriverName@Base 4.0.0
+ LCM_Driver_SetDriverType@Base 4.0.0
+ LCM_Driver_SetLibraryFile@Base 4.0.0
+ LCM_Driver_SetStatus@Base 4.0.0
+ LCM_Driver_free@Base 4.0.0
+ LCM_Driver_new@Base 4.0.0
+ LCM_Monitor_FindDriver@Base 4.0.0
+ LCM_Monitor_FindReader@Base 4.0.0
+ LCM_Monitor_FindServer@Base 4.0.0
+ LCM_Monitor_GetLastChangeTime@Base 4.0.0
+ LCM_Monitor_GetServers@Base 4.0.0
+ LCM_Reader_GetDriverId@Base 4.0.0
+ LCM_Reader_GetLastChangeTime@Base 4.0.0
+ LCM_Reader_GetLogBuffer@Base 4.0.0
+ LCM_Reader_GetReaderFlags@Base 4.0.0
+ LCM_Reader_GetReaderId@Base 4.0.0
+ LCM_Reader_GetReaderInfo@Base 4.0.0
+ LCM_Reader_GetReaderName@Base 4.0.0
+ LCM_Reader_GetReaderPort@Base 4.0.0
+ LCM_Reader_GetReaderType@Base 4.0.0
+ LCM_Reader_GetServerId@Base 4.0.0
+ LCM_Reader_GetShortDescr@Base 4.0.0
+ LCM_Reader_GetStatus@Base 4.0.0
+ LCM_Reader_List2Iterator_Data@Base 4.0.0
+ LCM_Reader_List2Iterator_GetLinkCount@Base 4.2.8
+ LCM_Reader_List2Iterator_IncLinkCount@Base 4.0.0
+ LCM_Reader_List2Iterator_Next@Base 4.0.0
+ LCM_Reader_List2Iterator_Previous@Base 4.0.0
+ LCM_Reader_List2Iterator_free@Base 4.0.0
+ LCM_Reader_List2Iterator_new@Base 4.0.0
+ LCM_Reader_List2_Clear@Base 4.0.0
+ LCM_Reader_List2_Contains@Base 4.0.0
+ LCM_Reader_List2_Dump@Base 4.0.0
+ LCM_Reader_List2_Erase@Base 4.0.0
+ LCM_Reader_List2_FindIter@Base 4.0.0
+ LCM_Reader_List2_First@Base 4.0.0
+ LCM_Reader_List2_ForEach@Base 4.0.0
+ LCM_Reader_List2_GetBack@Base 4.0.0
+ LCM_Reader_List2_GetFront@Base 4.0.0
+ LCM_Reader_List2_GetSize@Base 4.0.0
+ LCM_Reader_List2_IsEmpty@Base 4.0.0
+ LCM_Reader_List2_Last@Base 4.0.0
+ LCM_Reader_List2_PopBack@Base 4.0.0
+ LCM_Reader_List2_PopFront@Base 4.0.0
+ LCM_Reader_List2_PushBack@Base 4.0.0
+ LCM_Reader_List2_PushFront@Base 4.0.0
+ LCM_Reader_List2_Remove@Base 4.0.0
+ LCM_Reader_List2_Unshare@Base 4.0.0
+ LCM_Reader_List2_dup@Base 4.0.0
+ LCM_Reader_List2_free@Base 4.0.0
+ LCM_Reader_List2_new@Base 4.0.0
+ LCM_Reader_List_Add@Base 4.0.0
+ LCM_Reader_List_AddList@Base 4.0.0
+ LCM_Reader_List_Clear@Base 4.0.0
+ LCM_Reader_List_Del@Base 4.0.0
+ LCM_Reader_List_First@Base 4.0.0
+ LCM_Reader_List_GetCount@Base 4.0.0
+ LCM_Reader_List_HasElement@Base 4.0.0
+ LCM_Reader_List_Insert@Base 4.0.0
+ LCM_Reader_List_Last@Base 4.0.0
+ LCM_Reader_List_Next@Base 4.0.0
+ LCM_Reader_List_Previous@Base 4.0.0
+ LCM_Reader_List_free@Base 4.0.0
+ LCM_Reader_List_new@Base 4.0.0
+ LCM_Reader_SetDriverId@Base 4.0.0
+ LCM_Reader_SetReaderFlags@Base 4.0.0
+ LCM_Reader_SetReaderId@Base 4.0.0
+ LCM_Reader_SetReaderInfo@Base 4.0.0
+ LCM_Reader_SetReaderName@Base 4.0.0
+ LCM_Reader_SetReaderPort@Base 4.0.0
+ LCM_Reader_SetReaderType@Base 4.0.0
+ LCM_Reader_SetShortDescr@Base 4.0.0
+ LCM_Reader_SetStatus@Base 4.0.0
+ LCM_Reader_free@Base 4.0.0
+ LCM_Reader_new@Base 4.0.0
+ LCM_Server_GetClientId@Base 4.0.0
+ LCM_Server_GetDrivers@Base 4.0.0
+ LCM_Server_GetReaders@Base 4.0.0
+ LCM_Server_GetServerId@Base 4.0.0
+ LCM_Server_GetServices@Base 4.0.0
+ LCM_Server_List2Iterator_Data@Base 4.0.0
+ LCM_Server_List2Iterator_GetLinkCount@Base 4.2.8
+ LCM_Server_List2Iterator_IncLinkCount@Base 4.0.0
+ LCM_Server_List2Iterator_Next@Base 4.0.0
+ LCM_Server_List2Iterator_Previous@Base 4.0.0
+ LCM_Server_List2Iterator_free@Base 4.0.0
+ LCM_Server_List2Iterator_new@Base 4.0.0
+ LCM_Server_List2_Clear@Base 4.0.0
+ LCM_Server_List2_Contains@Base 4.0.0
+ LCM_Server_List2_Dump@Base 4.0.0
+ LCM_Server_List2_Erase@Base 4.0.0
+ LCM_Server_List2_FindIter@Base 4.0.0
+ LCM_Server_List2_First@Base 4.0.0
+ LCM_Server_List2_ForEach@Base 4.0.0
+ LCM_Server_List2_GetBack@Base 4.0.0
+ LCM_Server_List2_GetFront@Base 4.0.0
+ LCM_Server_List2_GetSize@Base 4.0.0
+ LCM_Server_List2_IsEmpty@Base 4.0.0
+ LCM_Server_List2_Last@Base 4.0.0
+ LCM_Server_List2_PopBack@Base 4.0.0
+ LCM_Server_List2_PopFront@Base 4.0.0
+ LCM_Server_List2_PushBack@Base 4.0.0
+ LCM_Server_List2_PushFront@Base 4.0.0
+ LCM_Server_List2_Remove@Base 4.0.0
+ LCM_Server_List2_Unshare@Base 4.0.0
+ LCM_Server_List2_dup@Base 4.0.0
+ LCM_Server_List2_free@Base 4.0.0
+ LCM_Server_List2_new@Base 4.0.0
+ LCM_Server_List_Add@Base 4.0.0
+ LCM_Server_List_AddList@Base 4.0.0
+ LCM_Server_List_Clear@Base 4.0.0
+ LCM_Server_List_Del@Base 4.0.0
+ LCM_Server_List_First@Base 4.0.0
+ LCM_Server_List_GetCount@Base 4.0.0
+ LCM_Server_List_HasElement@Base 4.0.0
+ LCM_Server_List_Insert@Base 4.0.0
+ LCM_Server_List_Last@Base 4.0.0
+ LCM_Server_List_Next@Base 4.0.0
+ LCM_Server_List_Previous@Base 4.0.0
+ LCM_Server_List_free@Base 4.0.0
+ LCM_Server_List_new@Base 4.0.0
+ LCM_Server_SetClientId@Base 4.0.0
+ LCM_Server_free@Base 4.0.0
+ LCM_Server_new@Base 4.0.0
+ LCM_Service_GetLastChangeTime@Base 4.0.0
+ LCM_Service_GetLogBuffer@Base 4.0.0
+ LCM_Service_GetServerId@Base 4.0.0
+ LCM_Service_GetServiceId@Base 4.0.0
+ LCM_Service_GetServiceName@Base 4.0.0
+ LCM_Service_GetStatus@Base 4.0.0
+ LCM_Service_List2Iterator_Data@Base 4.0.0
+ LCM_Service_List2Iterator_GetLinkCount@Base 4.2.8
+ LCM_Service_List2Iterator_IncLinkCount@Base 4.0.0
+ LCM_Service_List2Iterator_Next@Base 4.0.0
+ LCM_Service_List2Iterator_Previous@Base 4.0.0
+ LCM_Service_List2Iterator_free@Base 4.0.0
+ LCM_Service_List2Iterator_new@Base 4.0.0
+ LCM_Service_List2_Clear@Base 4.0.0
+ LCM_Service_List2_Contains@Base 4.0.0
+ LCM_Service_List2_Dump@Base 4.0.0
+ LCM_Service_List2_Erase@Base 4.0.0
+ LCM_Service_List2_FindIter@Base 4.0.0
+ LCM_Service_List2_First@Base 4.0.0
+ LCM_Service_List2_ForEach@Base 4.0.0
+ LCM_Service_List2_GetBack@Base 4.0.0
+ LCM_Service_List2_GetFront@Base 4.0.0
+ LCM_Service_List2_GetSize@Base 4.0.0
+ LCM_Service_List2_IsEmpty@Base 4.0.0
+ LCM_Service_List2_Last@Base 4.0.0
+ LCM_Service_List2_PopBack@Base 4.0.0
+ LCM_Service_List2_PopFront@Base 4.0.0
+ LCM_Service_List2_PushBack@Base 4.0.0
+ LCM_Service_List2_PushFront@Base 4.0.0
+ LCM_Service_List2_Remove@Base 4.0.0
+ LCM_Service_List2_Unshare@Base 4.0.0
+ LCM_Service_List2_dup@Base 4.0.0
+ LCM_Service_List2_free@Base 4.0.0
+ LCM_Service_List2_new@Base 4.0.0
+ LCM_Service_List_Add@Base 4.0.0
+ LCM_Service_List_AddList@Base 4.0.0
+ LCM_Service_List_Clear@Base 4.0.0
+ LCM_Service_List_Del@Base 4.0.0
+ LCM_Service_List_First@Base 4.0.0
+ LCM_Service_List_GetCount@Base 4.0.0
+ LCM_Service_List_HasElement@Base 4.0.0
+ LCM_Service_List_Insert@Base 4.0.0
+ LCM_Service_List_Last@Base 4.0.0
+ LCM_Service_List_Next@Base 4.0.0
+ LCM_Service_List_Previous@Base 4.0.0
+ LCM_Service_List_free@Base 4.0.0
+ LCM_Service_List_new@Base 4.0.0
+ LCM_Service_SetStatus@Base 4.0.0
+ LCM_Service_free@Base 4.0.0
+ LCM_Service_new@Base 4.0.0
+ LC_BaseClient_new@Base 4.0.0
+ LC_CARD__INHERIT_GETLIST@Base 4.0.0
+ LC_CARD__INHERIT_ISOFTYPE@Base 4.0.0
+ LC_CARD__INHERIT_SETDATA@Base 4.0.0
+ LC_CARD__INHERIT_UNLINK@Base 4.0.0
+ LC_CLIENT__INHERIT_GETLIST@Base 4.0.0
+ LC_CLIENT__INHERIT_ISOFTYPE@Base 4.0.0
+ LC_CLIENT__INHERIT_SETDATA@Base 4.0.0
+ LC_CLIENT__INHERIT_UNLINK@Base 4.0.0
+ LC_Card_AddCardType@Base 4.0.0
+ LC_Card_BuildApdu@Base 4.0.0
+ LC_Card_Close@Base 4.0.0
+ LC_Card_CreateData@Base 4.0.0
+ LC_Card_CreateRecord@Base 4.0.0
+ LC_Card_CreateResultString@Base 4.0.0
+ LC_Card_Dump@Base 4.0.0
+ LC_Card_ExecApdu@Base 4.0.0
+ LC_Card_ExecCommand@Base 4.0.0
+ LC_Card_GetAppNode@Base 4.0.0
+ LC_Card_GetAtr@Base 4.0.0
+ LC_Card_GetCardId@Base 4.0.0
+ LC_Card_GetCardNode@Base 4.0.0
+ LC_Card_GetCardType@Base 4.0.0
+ LC_Card_GetCardTypes@Base 4.0.0
+ LC_Card_GetClient@Base 4.0.0
+ LC_Card_GetCloseFn@Base 4.0.0
+ LC_Card_GetDfNode@Base 4.0.0
+ LC_Card_GetDriverType@Base 4.0.0
+ LC_Card_GetEfNode@Base 4.0.0
+ LC_Card_GetInitialPin@Base 4.0.0
+ LC_Card_GetLastResult@Base 4.0.0
+ LC_Card_GetLastSW1@Base 4.0.0
+ LC_Card_GetLastSW2@Base 4.0.0
+ LC_Card_GetLastText@Base 4.0.0
+ LC_Card_GetOpenFn@Base 4.0.0
+ LC_Card_GetPinInfoById@Base 4.0.0
+ LC_Card_GetPinInfoByName@Base 4.0.0
+ LC_Card_GetPinStatus@Base 4.0.0
+ LC_Card_GetReaderFlags@Base 4.0.0
+ LC_Card_GetReaderType@Base 4.0.0
+ LC_Card_IsoAppendRecord@Base 4.0.0
+ LC_Card_IsoDecipher@Base 4.0.0
+ LC_Card_IsoEncipher@Base 4.0.0
+ LC_Card_IsoEraseBinary@Base 4.0.0
+ LC_Card_IsoManageSe@Base 4.0.0
+ LC_Card_IsoModifyPin@Base 4.0.0
+ LC_Card_IsoPerformModification@Base 4.0.0
+ LC_Card_IsoPerformVerification@Base 4.0.0
+ LC_Card_IsoReadBinary@Base 4.0.0
+ LC_Card_IsoReadRecord@Base 4.0.0
+ LC_Card_IsoSign@Base 4.0.0
+ LC_Card_IsoUpdateBinary@Base 4.0.0
+ LC_Card_IsoUpdateRecord@Base 4.0.0
+ LC_Card_IsoVerify@Base 4.0.0
+ LC_Card_IsoVerifyPin@Base 4.0.0
+ LC_Card_IsoWriteBinary@Base 4.0.0
+ LC_Card_IsoWriteRecord@Base 4.0.0
+ LC_Card_List2Iterator_Data@Base 4.0.0
+ LC_Card_List2Iterator_GetLinkCount@Base 4.2.8
+ LC_Card_List2Iterator_IncLinkCount@Base 4.0.0
+ LC_Card_List2Iterator_Next@Base 4.0.0
+ LC_Card_List2Iterator_Previous@Base 4.0.0
+ LC_Card_List2Iterator_free@Base 4.0.0
+ LC_Card_List2Iterator_new@Base 4.0.0
+ LC_Card_List2_Clear@Base 4.0.0
+ LC_Card_List2_Contains@Base 4.0.0
+ LC_Card_List2_Dump@Base 4.0.0
+ LC_Card_List2_Erase@Base 4.0.0
+ LC_Card_List2_FindIter@Base 4.0.0
+ LC_Card_List2_First@Base 4.0.0
+ LC_Card_List2_ForEach@Base 4.0.0
+ LC_Card_List2_GetBack@Base 4.0.0
+ LC_Card_List2_GetFront@Base 4.0.0
+ LC_Card_List2_GetSize@Base 4.0.0
+ LC_Card_List2_IsEmpty@Base 4.0.0
+ LC_Card_List2_Last@Base 4.0.0
+ LC_Card_List2_PopBack@Base 4.0.0
+ LC_Card_List2_PopFront@Base 4.0.0
+ LC_Card_List2_PushBack@Base 4.0.0
+ LC_Card_List2_PushFront@Base 4.0.0
+ LC_Card_List2_Remove@Base 4.0.0
+ LC_Card_List2_Unshare@Base 4.0.0
+ LC_Card_List2_dup@Base 4.0.0
+ LC_Card_List2_free@Base 4.0.0
+ LC_Card_List2_freeAll@Base 4.0.0
+ LC_Card_List2_new@Base 4.0.0
+ LC_Card_List_Add@Base 4.0.0
+ LC_Card_List_AddList@Base 4.0.0
+ LC_Card_List_Clear@Base 4.0.0
+ LC_Card_List_Del@Base 4.0.0
+ LC_Card_List_First@Base 4.0.0
+ LC_Card_List_GetCount@Base 4.0.0
+ LC_Card_List_HasElement@Base 4.0.0
+ LC_Card_List_Insert@Base 4.0.0
+ LC_Card_List_Last@Base 4.0.0
+ LC_Card_List_Next@Base 4.0.0
+ LC_Card_List_Previous@Base 4.0.0
+ LC_Card_List_free@Base 4.0.0
+ LC_Card_List_new@Base 4.0.0
+ LC_Card_Open@Base 4.0.0
+ LC_Card_ParseData@Base 4.0.0
+ LC_Card_ParseRecord@Base 4.0.0
+ LC_Card_ReadBinary@Base 4.0.0
+ LC_Card_ResetCardId@Base 4.0.0
+ LC_Card_SelectApp@Base 4.0.0
+ LC_Card_SelectCard@Base 4.0.0
+ LC_Card_SelectDf@Base 4.0.0
+ LC_Card_SelectEf@Base 4.0.0
+ LC_Card_SelectMf@Base 4.0.0
+ LC_Card_SetCloseFn@Base 4.0.0
+ LC_Card_SetDriverType@Base 4.0.0
+ LC_Card_SetGetInitialPinFn@Base 4.0.0
+ LC_Card_SetGetPinStatusFn@Base 4.0.0
+ LC_Card_SetIsoAppendRecordFn@Base 4.0.0
+ LC_Card_SetIsoDecipherFn@Base 4.0.0
+ LC_Card_SetIsoEncipherFn@Base 4.0.0
+ LC_Card_SetIsoEraseBinaryFn@Base 4.0.0
+ LC_Card_SetIsoManageSeFn@Base 4.0.0
+ LC_Card_SetIsoModifyPinFn@Base 4.0.0
+ LC_Card_SetIsoPerformModificationFn@Base 4.0.0
+ LC_Card_SetIsoPerformVerificationFn@Base 4.0.0
+ LC_Card_SetIsoReadBinaryFn@Base 4.0.0
+ LC_Card_SetIsoReadRecordFn@Base 4.0.0
+ LC_Card_SetIsoSignFn@Base 4.0.0
+ LC_Card_SetIsoUpdateBinaryFn@Base 4.0.0
+ LC_Card_SetIsoUpdateRecordFn@Base 4.0.0
+ LC_Card_SetIsoVerifyFn@Base 4.0.0
+ LC_Card_SetIsoVerifyPinFn@Base 4.0.0
+ LC_Card_SetIsoWriteBinaryFn@Base 4.0.0
+ LC_Card_SetIsoWriteRecordFn@Base 4.0.0
+ LC_Card_SetLastResult@Base 4.0.0
+ LC_Card_SetOpenFn@Base 4.0.0
+ LC_Card_SetReaderType@Base 4.0.0
+ LC_Card_free@Base 4.0.0
+ LC_Card_new@Base 4.0.0
+ LC_ClientLcc_CheckCommandCard@Base 4.0.0
+ LC_ClientLcc_CheckLockReader@Base 4.0.0
+ LC_ClientLcc_CheckReaderCommand@Base 4.0.0
+ LC_ClientLcc_CheckReleaseCard@Base 4.0.0
+ LC_ClientLcc_CheckSetNotify@Base 4.0.0
+ LC_ClientLcc_CheckStartWait@Base 4.0.0
+ LC_ClientLcc_CheckStopWait@Base 4.0.0
+ LC_ClientLcc_CheckTakeCard@Base 4.0.0
+ LC_ClientLcc_CheckUnlockReader@Base 4.0.0
+ LC_ClientLcc_CommandCard@Base 4.0.0
+ LC_ClientLcc_DeleteRequest@Base 4.0.0
+ LC_ClientLcc_GetNextCard@Base 4.0.0
+ LC_ClientLcc_LockReader@Base 4.0.0
+ LC_ClientLcc_PeekNextCard@Base 4.0.0
+ LC_ClientLcc_ReaderCommand@Base 4.0.0
+ LC_ClientLcc_ReleaseCard@Base 4.0.0
+ LC_ClientLcc_SendCommandCard@Base 4.0.0
+ LC_ClientLcc_SendLockReader@Base 4.0.0
+ LC_ClientLcc_SendReaderCommand@Base 4.0.0
+ LC_ClientLcc_SendReleaseCard@Base 4.0.0
+ LC_ClientLcc_SendSetNotify@Base 4.0.0
+ LC_ClientLcc_SendStartWait@Base 4.0.0
+ LC_ClientLcc_SendStopWait@Base 4.0.0
+ LC_ClientLcc_SendTakeCard@Base 4.0.0
+ LC_ClientLcc_SendUnlockReader@Base 4.0.0
+ LC_ClientLcc_SetNotify@Base 4.0.0
+ LC_ClientLcc_StartWait@Base 4.0.0
+ LC_ClientLcc_StopWait@Base 4.0.0
+ LC_ClientLcc_TakeCard@Base 4.0.0
+ LC_ClientLcc_WaitForNextCard@Base 4.0.0
+ LC_ClientLcc_Work@Base 4.0.0
+ LC_ClientLcc_Work_Wait@Base 4.0.0
+ LC_ClientLcc_new@Base 4.0.0
+ LC_ClientPcsc_new@Base 4.0.0
+ LC_Client_Factory@Base 4.0.0
+ LC_Client_Fini@Base 4.0.0
+ LC_Client_GetAppNodes@Base 4.0.0
+ LC_Client_GetCardNodes@Base 4.0.0
+ LC_Client_GetConfig@Base 4.0.0
+ LC_Client_GetIoTypeName@Base 4.0.0
+ LC_Client_GetLongTimeout@Base 4.0.0
+ LC_Client_GetMonitor@Base 4.0.0
+ LC_Client_GetNextCard@Base 4.0.0
+ LC_Client_GetProgramName@Base 4.0.0
+ LC_Client_GetProgramVersion@Base 4.0.0
+ LC_Client_GetReaderAndDriverType@Base 4.0.0
+ LC_Client_GetShortTimeout@Base 4.0.0
+ LC_Client_GetVeryLongTimeout@Base 4.0.0
+ LC_Client_HandleNotification@Base 4.0.0
+ LC_Client_Init@Base 4.0.0
+ LC_Client_ReleaseCard@Base 4.0.0
+ LC_Client_SetExecApduFn@Base 4.0.0
+ LC_Client_SetFiniFn@Base 4.0.0
+ LC_Client_SetGetNextCardFn@Base 4.0.0
+ LC_Client_SetInitFn@Base 4.0.0
+ LC_Client_SetNotify@Base 4.0.0
+ LC_Client_SetRecvNotificationFn@Base 4.0.0
+ LC_Client_SetReleaseCardFn@Base 4.0.0
+ LC_Client_SetSetNotifyFn@Base 4.0.0
+ LC_Client_SetStartFn@Base 4.0.0
+ LC_Client_SetStopFn@Base 4.0.0
+ LC_Client_Start@Base 4.0.0
+ LC_Client_Stop@Base 4.0.0
+ LC_Client_Version@Base 4.1.0
+ LC_Client_free@Base 4.0.0
+ LC_Client_new@Base 4.0.0
+ LC_Crypt_Token_ChangePin@Base 4.0.0
+ LC_Crypt_Token_ResultToError@Base 4.0.0
+ LC_Crypt_Token_VerifyPin@Base 4.0.0
+ LC_DDVCard_CryptBlock@Base 4.0.0
+ LC_DDVCard_CryptCharBlock@Base 4.0.0
+ LC_DDVCard_ExtendCard@Base 4.0.0
+ LC_DDVCard_GetCardDataAsBuffer@Base 4.0.0
+ LC_DDVCard_GetCardDataAsDb@Base 4.0.0
+ LC_DDVCard_GetChallenge@Base 4.0.0
+ LC_DDVCard_GetCryptKeyNumber@Base 4.0.0
+ LC_DDVCard_GetCryptKeyVersion@Base 4.0.0
+ LC_DDVCard_GetSignKeyNumber@Base 4.0.0
+ LC_DDVCard_GetSignKeyVersion@Base 4.0.0
+ LC_DDVCard_ReadInstituteData@Base 4.0.0
+ LC_DDVCard_Reopen@Base 4.0.0
+ LC_DDVCard_SecureVerifyPin@Base 4.0.0
+ LC_DDVCard_SignHash@Base 4.0.0
+ LC_DDVCard_UnextendCard@Base 4.0.0
+ LC_DDVCard_VerifyPin@Base 4.0.0
+ LC_DDVCard_WriteInstituteData@Base 4.0.0
+ LC_DriverFlags_fromDb@Base 4.0.0
+ LC_DriverFlags_toDb@Base 4.0.0
+ LC_DriverInfo_ReadDrivers@Base 4.0.0
+ LC_DriverStatus_fromString@Base 4.0.0
+ LC_DriverStatus_toString@Base 4.0.0
+ LC_EgkCard_ExtendCard@Base 4.0.0
+ LC_EgkCard_ReadInsuranceData@Base 4.2.4
+ LC_EgkCard_ReadPd@Base 4.0.0
+ LC_EgkCard_ReadPersonalData@Base 4.2.4
+ LC_EgkCard_ReadRawPd@Base 4.2.4
+ LC_EgkCard_ReadRawVd@Base 4.2.4
+ LC_EgkCard_ReadVd@Base 4.0.0
+ LC_EgkCard_Reopen@Base 4.0.0
+ LC_EgkCard_SecureVerifyPin@Base 4.0.0
+ LC_EgkCard_UnextendCard@Base 4.0.0
+ LC_EgkCard_VerifyPin@Base 4.0.0
+ LC_Error_toString@Base 4.0.0
+ LC_GeldKarte_BLog_Attach@Base 4.0.0
+ LC_GeldKarte_BLog_GetBSeq@Base 4.0.0
+ LC_GeldKarte_BLog_GetHSeq@Base 4.0.0
+ LC_GeldKarte_BLog_GetKeyId@Base 4.0.0
+ LC_GeldKarte_BLog_GetLSeq@Base 4.0.0
+ LC_GeldKarte_BLog_GetLoaded@Base 4.0.0
+ LC_GeldKarte_BLog_GetMerchantId@Base 4.0.0
+ LC_GeldKarte_BLog_GetSSeq@Base 4.0.0
+ LC_GeldKarte_BLog_GetStatus@Base 4.0.0
+ LC_GeldKarte_BLog_GetTime@Base 4.0.0
+ LC_GeldKarte_BLog_GetValue@Base 4.0.0
+ LC_GeldKarte_BLog_IsModified@Base 4.0.0
+ LC_GeldKarte_BLog_List2Iterator_Data@Base 4.0.0
+ LC_GeldKarte_BLog_List2Iterator_GetLinkCount@Base 4.2.8
+ LC_GeldKarte_BLog_List2Iterator_IncLinkCount@Base 4.0.0
+ LC_GeldKarte_BLog_List2Iterator_Next@Base 4.0.0
+ LC_GeldKarte_BLog_List2Iterator_Previous@Base 4.0.0
+ LC_GeldKarte_BLog_List2Iterator_free@Base 4.0.0
+ LC_GeldKarte_BLog_List2Iterator_new@Base 4.0.0
+ LC_GeldKarte_BLog_List2_Clear@Base 4.0.0
+ LC_GeldKarte_BLog_List2_Contains@Base 4.0.0
+ LC_GeldKarte_BLog_List2_Dump@Base 4.0.0
+ LC_GeldKarte_BLog_List2_Erase@Base 4.0.0
+ LC_GeldKarte_BLog_List2_FindIter@Base 4.0.0
+ LC_GeldKarte_BLog_List2_First@Base 4.0.0
+ LC_GeldKarte_BLog_List2_ForEach@Base 4.0.0
+ LC_GeldKarte_BLog_List2_GetBack@Base 4.0.0
+ LC_GeldKarte_BLog_List2_GetFront@Base 4.0.0
+ LC_GeldKarte_BLog_List2_GetSize@Base 4.0.0
+ LC_GeldKarte_BLog_List2_IsEmpty@Base 4.0.0
+ LC_GeldKarte_BLog_List2_Last@Base 4.0.0
+ LC_GeldKarte_BLog_List2_PopBack@Base 4.0.0
+ LC_GeldKarte_BLog_List2_PopFront@Base 4.0.0
+ LC_GeldKarte_BLog_List2_PushBack@Base 4.0.0
+ LC_GeldKarte_BLog_List2_PushFront@Base 4.0.0
+ LC_GeldKarte_BLog_List2_Remove@Base 4.0.0
+ LC_GeldKarte_BLog_List2_Unshare@Base 4.0.0
+ LC_GeldKarte_BLog_List2_dup@Base 4.0.0
+ LC_GeldKarte_BLog_List2_free@Base 4.0.0
+ LC_GeldKarte_BLog_List2_freeAll@Base 4.0.0
+ LC_GeldKarte_BLog_List2_new@Base 4.0.0
+ LC_GeldKarte_BLog_ReadDb@Base 4.0.0
+ LC_GeldKarte_BLog_SetBSeq@Base 4.0.0
+ LC_GeldKarte_BLog_SetHSeq@Base 4.0.0
+ LC_GeldKarte_BLog_SetKeyId@Base 4.0.0
+ LC_GeldKarte_BLog_SetLSeq@Base 4.0.0
+ LC_GeldKarte_BLog_SetLoaded@Base 4.0.0
+ LC_GeldKarte_BLog_SetMerchantId@Base 4.0.0
+ LC_GeldKarte_BLog_SetModified@Base 4.0.0
+ LC_GeldKarte_BLog_SetSSeq@Base 4.0.0
+ LC_GeldKarte_BLog_SetStatus@Base 4.0.0
+ LC_GeldKarte_BLog_SetTime@Base 4.0.0
+ LC_GeldKarte_BLog_SetValue@Base 4.0.0
+ LC_GeldKarte_BLog_dup@Base 4.0.0
+ LC_GeldKarte_BLog_free@Base 4.0.0
+ LC_GeldKarte_BLog_fromDb@Base 4.0.0
+ LC_GeldKarte_BLog_new@Base 4.0.0
+ LC_GeldKarte_BLog_toDb@Base 4.0.0
+ LC_GeldKarte_ExtendCard@Base 4.0.0
+ LC_GeldKarte_GetAccountDataAsBuffer@Base 4.0.0
+ LC_GeldKarte_GetAccountDataAsDb@Base 4.0.0
+ LC_GeldKarte_GetCardDataAsBuffer@Base 4.0.0
+ LC_GeldKarte_GetCardDataAsDb@Base 4.0.0
+ LC_GeldKarte_LLog_Attach@Base 4.0.0
+ LC_GeldKarte_LLog_GetBSeq@Base 4.0.0
+ LC_GeldKarte_LLog_GetCenterId@Base 4.0.0
+ LC_GeldKarte_LLog_GetLSeq@Base 4.0.0
+ LC_GeldKarte_LLog_GetLoaded@Base 4.0.0
+ LC_GeldKarte_LLog_GetStatus@Base 4.0.0
+ LC_GeldKarte_LLog_GetTerminalId@Base 4.0.0
+ LC_GeldKarte_LLog_GetTime@Base 4.0.0
+ LC_GeldKarte_LLog_GetTraceId@Base 4.0.0
+ LC_GeldKarte_LLog_GetValue@Base 4.0.0
+ LC_GeldKarte_LLog_IsModified@Base 4.0.0
+ LC_GeldKarte_LLog_List2Iterator_Data@Base 4.0.0
+ LC_GeldKarte_LLog_List2Iterator_GetLinkCount@Base 4.2.8
+ LC_GeldKarte_LLog_List2Iterator_IncLinkCount@Base 4.0.0
+ LC_GeldKarte_LLog_List2Iterator_Next@Base 4.0.0
+ LC_GeldKarte_LLog_List2Iterator_Previous@Base 4.0.0
+ LC_GeldKarte_LLog_List2Iterator_free@Base 4.0.0
+ LC_GeldKarte_LLog_List2Iterator_new@Base 4.0.0
+ LC_GeldKarte_LLog_List2_Clear@Base 4.0.0
+ LC_GeldKarte_LLog_List2_Contains@Base 4.0.0
+ LC_GeldKarte_LLog_List2_Dump@Base 4.0.0
+ LC_GeldKarte_LLog_List2_Erase@Base 4.0.0
+ LC_GeldKarte_LLog_List2_FindIter@Base 4.0.0
+ LC_GeldKarte_LLog_List2_First@Base 4.0.0
+ LC_GeldKarte_LLog_List2_ForEach@Base 4.0.0
+ LC_GeldKarte_LLog_List2_GetBack@Base 4.0.0
+ LC_GeldKarte_LLog_List2_GetFront@Base 4.0.0
+ LC_GeldKarte_LLog_List2_GetSize@Base 4.0.0
+ LC_GeldKarte_LLog_List2_IsEmpty@Base 4.0.0
+ LC_GeldKarte_LLog_List2_Last@Base 4.0.0
+ LC_GeldKarte_LLog_List2_PopBack@Base 4.0.0
+ LC_GeldKarte_LLog_List2_PopFront@Base 4.0.0
+ LC_GeldKarte_LLog_List2_PushBack@Base 4.0.0
+ LC_GeldKarte_LLog_List2_PushFront@Base 4.0.0
+ LC_GeldKarte_LLog_List2_Remove@Base 4.0.0
+ LC_GeldKarte_LLog_List2_Unshare@Base 4.0.0
+ LC_GeldKarte_LLog_List2_dup@Base 4.0.0
+ LC_GeldKarte_LLog_List2_free@Base 4.0.0
+ LC_GeldKarte_LLog_List2_freeAll@Base 4.0.0
+ LC_GeldKarte_LLog_List2_new@Base 4.0.0
+ LC_GeldKarte_LLog_ReadDb@Base 4.0.0
+ LC_GeldKarte_LLog_SetBSeq@Base 4.0.0
+ LC_GeldKarte_LLog_SetCenterId@Base 4.0.0
+ LC_GeldKarte_LLog_SetLSeq@Base 4.0.0
+ LC_GeldKarte_LLog_SetLoaded@Base 4.0.0
+ LC_GeldKarte_LLog_SetModified@Base 4.0.0
+ LC_GeldKarte_LLog_SetStatus@Base 4.0.0
+ LC_GeldKarte_LLog_SetTerminalId@Base 4.0.0
+ LC_GeldKarte_LLog_SetTime@Base 4.0.0
+ LC_GeldKarte_LLog_SetTraceId@Base 4.0.0
+ LC_GeldKarte_LLog_SetValue@Base 4.0.0
+ LC_GeldKarte_LLog_dup@Base 4.0.0
+ LC_GeldKarte_LLog_free@Base 4.0.0
+ LC_GeldKarte_LLog_fromDb@Base 4.0.0
+ LC_GeldKarte_LLog_new@Base 4.0.0
+ LC_GeldKarte_LLog_toDb@Base 4.0.0
+ LC_GeldKarte_ReadBLogs@Base 4.0.0
+ LC_GeldKarte_ReadLLogs@Base 4.0.0
+ LC_GeldKarte_ReadValues@Base 4.0.0
+ LC_GeldKarte_Reopen@Base 4.0.0
+ LC_GeldKarte_SecureVerifyPin@Base 4.0.0
+ LC_GeldKarte_UnextendCard@Base 4.0.0
+ LC_GeldKarte_Values_Attach@Base 4.0.0
+ LC_GeldKarte_Values_GetLoaded@Base 4.0.0
+ LC_GeldKarte_Values_GetMaxLoad@Base 4.0.0
+ LC_GeldKarte_Values_GetMaxXfer@Base 4.0.0
+ LC_GeldKarte_Values_IsModified@Base 4.0.0
+ LC_GeldKarte_Values_List2Iterator_Data@Base 4.0.0
+ LC_GeldKarte_Values_List2Iterator_GetLinkCount@Base 4.2.8
+ LC_GeldKarte_Values_List2Iterator_IncLinkCount@Base 4.0.0
+ LC_GeldKarte_Values_List2Iterator_Next@Base 4.0.0
+ LC_GeldKarte_Values_List2Iterator_Previous@Base 4.0.0
+ LC_GeldKarte_Values_List2Iterator_free@Base 4.0.0
+ LC_GeldKarte_Values_List2Iterator_new@Base 4.0.0
+ LC_GeldKarte_Values_List2_Clear@Base 4.0.0
+ LC_GeldKarte_Values_List2_Contains@Base 4.0.0
+ LC_GeldKarte_Values_List2_Dump@Base 4.0.0
+ LC_GeldKarte_Values_List2_Erase@Base 4.0.0
+ LC_GeldKarte_Values_List2_FindIter@Base 4.0.0
+ LC_GeldKarte_Values_List2_First@Base 4.0.0
+ LC_GeldKarte_Values_List2_ForEach@Base 4.0.0
+ LC_GeldKarte_Values_List2_GetBack@Base 4.0.0
+ LC_GeldKarte_Values_List2_GetFront@Base 4.0.0
+ LC_GeldKarte_Values_List2_GetSize@Base 4.0.0
+ LC_GeldKarte_Values_List2_IsEmpty@Base 4.0.0
+ LC_GeldKarte_Values_List2_Last@Base 4.0.0
+ LC_GeldKarte_Values_List2_PopBack@Base 4.0.0
+ LC_GeldKarte_Values_List2_PopFront@Base 4.0.0
+ LC_GeldKarte_Values_List2_PushBack@Base 4.0.0
+ LC_GeldKarte_Values_List2_PushFront@Base 4.0.0
+ LC_GeldKarte_Values_List2_Remove@Base 4.0.0
+ LC_GeldKarte_Values_List2_Unshare@Base 4.0.0
+ LC_GeldKarte_Values_List2_dup@Base 4.0.0
+ LC_GeldKarte_Values_List2_free@Base 4.0.0
+ LC_GeldKarte_Values_List2_freeAll@Base 4.0.0
+ LC_GeldKarte_Values_List2_new@Base 4.0.0
+ LC_GeldKarte_Values_ReadDb@Base 4.0.0
+ LC_GeldKarte_Values_SetLoaded@Base 4.0.0
+ LC_GeldKarte_Values_SetMaxLoad@Base 4.0.0
+ LC_GeldKarte_Values_SetMaxXfer@Base 4.0.0
+ LC_GeldKarte_Values_SetModified@Base 4.0.0
+ LC_GeldKarte_Values_dup@Base 4.0.0
+ LC_GeldKarte_Values_free@Base 4.0.0
+ LC_GeldKarte_Values_fromDb@Base 4.0.0
+ LC_GeldKarte_Values_new@Base 4.0.0
+ LC_GeldKarte_Values_toDb@Base 4.0.0
+ LC_GeldKarte_VerifyPin@Base 4.0.0
+ LC_HIInsuranceData_Attach@Base 4.2.4
+ LC_HIInsuranceData_GetCoverBegin@Base 4.2.4
+ LC_HIInsuranceData_GetCoverEnd@Base 4.2.4
+ LC_HIInsuranceData_GetGroup@Base 4.2.4
+ LC_HIInsuranceData_GetInstitutionId@Base 4.2.4
+ LC_HIInsuranceData_GetInstitutionName@Base 4.2.4
+ LC_HIInsuranceData_GetStatus@Base 4.2.4
+ LC_HIInsuranceData_IsModified@Base 4.2.4
+ LC_HIInsuranceData_ReadDb@Base 4.2.4
+ LC_HIInsuranceData_SetCoverBegin@Base 4.2.4
+ LC_HIInsuranceData_SetCoverEnd@Base 4.2.4
+ LC_HIInsuranceData_SetGroup@Base 4.2.4
+ LC_HIInsuranceData_SetInstitutionId@Base 4.2.4
+ LC_HIInsuranceData_SetInstitutionName@Base 4.2.4
+ LC_HIInsuranceData_SetModified@Base 4.2.4
+ LC_HIInsuranceData_SetStatus@Base 4.2.4
+ LC_HIInsuranceData_dup@Base 4.2.4
+ LC_HIInsuranceData_free@Base 4.2.4
+ LC_HIInsuranceData_fromDb@Base 4.2.4
+ LC_HIInsuranceData_new@Base 4.2.4
+ LC_HIInsuranceData_toDb@Base 4.2.4
+ LC_HIPersonalData_Attach@Base 4.2.4
+ LC_HIPersonalData_GetAddrCity@Base 4.2.4
+ LC_HIPersonalData_GetAddrCountry@Base 4.2.4
+ LC_HIPersonalData_GetAddrHouseNum@Base 4.2.4
+ LC_HIPersonalData_GetAddrState@Base 4.2.4
+ LC_HIPersonalData_GetAddrStreet@Base 4.2.4
+ LC_HIPersonalData_GetAddrZipCode@Base 4.2.4
+ LC_HIPersonalData_GetDateOfBirth@Base 4.2.4
+ LC_HIPersonalData_GetInsuranceId@Base 4.2.4
+ LC_HIPersonalData_GetName@Base 4.2.4
+ LC_HIPersonalData_GetNameSuffix@Base 4.2.4
+ LC_HIPersonalData_GetPrename@Base 4.2.4
+ LC_HIPersonalData_GetSex@Base 4.2.4
+ LC_HIPersonalData_GetTitle@Base 4.2.4
+ LC_HIPersonalData_IsModified@Base 4.2.4
+ LC_HIPersonalData_ReadDb@Base 4.2.4
+ LC_HIPersonalData_SetAddrCity@Base 4.2.4
+ LC_HIPersonalData_SetAddrCountry@Base 4.2.4
+ LC_HIPersonalData_SetAddrHouseNum@Base 4.2.4
+ LC_HIPersonalData_SetAddrState@Base 4.2.4
+ LC_HIPersonalData_SetAddrStreet@Base 4.2.4
+ LC_HIPersonalData_SetAddrZipCode@Base 4.2.4
+ LC_HIPersonalData_SetDateOfBirth@Base 4.2.4
+ LC_HIPersonalData_SetInsuranceId@Base 4.2.4
+ LC_HIPersonalData_SetModified@Base 4.2.4
+ LC_HIPersonalData_SetName@Base 4.2.4
+ LC_HIPersonalData_SetNameSuffix@Base 4.2.4
+ LC_HIPersonalData_SetPrename@Base 4.2.4
+ LC_HIPersonalData_SetSex@Base 4.2.4
+ LC_HIPersonalData_SetTitle@Base 4.2.4
+ LC_HIPersonalData_Sex_fromString@Base 4.2.4
+ LC_HIPersonalData_Sex_toString@Base 4.2.4
+ LC_HIPersonalData_dup@Base 4.2.4
+ LC_HIPersonalData_free@Base 4.2.4
+ LC_HIPersonalData_fromDb@Base 4.2.4
+ LC_HIPersonalData_new@Base 4.2.4
+ LC_HIPersonalData_toDb@Base 4.2.4
+ LC_KVKCard_ExtendCard@Base 4.0.0
+ LC_KVKCard_GetCardData@Base 4.0.0
+ LC_KVKCard_Reopen@Base 4.0.0
+ LC_KVKCard_UnextendCard@Base 4.0.0
+ LC_KvkCard_GetCardNumber@Base 4.2.4
+ LC_KvkCard_ReadCardData@Base 4.2.4
+ LC_MSGENGINE__INHERIT_ID@Base 4.0.0
+ LC_MemoryCard_ExtendCard@Base 4.0.0
+ LC_MemoryCard_GetCapacity@Base 4.0.0
+ LC_MemoryCard_ReadBinary@Base 4.0.0
+ LC_MemoryCard_UnextendCard@Base 4.0.0
+ LC_MemoryCard_WriteBinary@Base 4.0.0
+ LC_MsgEngine_new@Base 4.0.0
+ LC_NOTIFICATION__INHERIT_GETLIST@Base 4.0.0
+ LC_NOTIFICATION__INHERIT_ISOFTYPE@Base 4.0.0
+ LC_NOTIFICATION__INHERIT_SETDATA@Base 4.0.0
+ LC_NOTIFICATION__INHERIT_UNLINK@Base 4.0.0
+ LC_Notification_GetClientId@Base 4.0.0
+ LC_Notification_GetCode@Base 4.0.0
+ LC_Notification_GetData@Base 4.0.0
+ LC_Notification_GetServerId@Base 4.0.0
+ LC_Notification_GetType@Base 4.0.0
+ LC_Notification_List2Iterator_Data@Base 4.0.0
+ LC_Notification_List2Iterator_GetLinkCount@Base 4.2.8
+ LC_Notification_List2Iterator_IncLinkCount@Base 4.0.0
+ LC_Notification_List2Iterator_Next@Base 4.0.0
+ LC_Notification_List2Iterator_Previous@Base 4.0.0
+ LC_Notification_List2Iterator_free@Base 4.0.0
+ LC_Notification_List2Iterator_new@Base 4.0.0
+ LC_Notification_List2_Clear@Base 4.0.0
+ LC_Notification_List2_Contains@Base 4.0.0
+ LC_Notification_List2_Dump@Base 4.0.0
+ LC_Notification_List2_Erase@Base 4.0.0
+ LC_Notification_List2_FindIter@Base 4.0.0
+ LC_Notification_List2_First@Base 4.0.0
+ LC_Notification_List2_ForEach@Base 4.0.0
+ LC_Notification_List2_GetBack@Base 4.0.0
+ LC_Notification_List2_GetFront@Base 4.0.0
+ LC_Notification_List2_GetSize@Base 4.0.0
+ LC_Notification_List2_IsEmpty@Base 4.0.0
+ LC_Notification_List2_Last@Base 4.0.0
+ LC_Notification_List2_PopBack@Base 4.0.0
+ LC_Notification_List2_PopFront@Base 4.0.0
+ LC_Notification_List2_PushBack@Base 4.0.0
+ LC_Notification_List2_PushFront@Base 4.0.0
+ LC_Notification_List2_Remove@Base 4.0.0
+ LC_Notification_List2_Unshare@Base 4.0.0
+ LC_Notification_List2_dup@Base 4.0.0
+ LC_Notification_List2_free@Base 4.0.0
+ LC_Notification_List2_new@Base 4.0.0
+ LC_Notification_free@Base 4.0.0
+ LC_Notification_new@Base 4.0.0
+ LC_NotifyFlags_fromDb@Base 4.0.0
+ LC_NotifyFlags_toDb@Base 4.0.0
+ LC_PININFO__INHERIT_GETLIST@Base 4.0.0
+ LC_PININFO__INHERIT_ISOFTYPE@Base 4.0.0
+ LC_PININFO__INHERIT_SETDATA@Base 4.0.0
+ LC_PININFO__INHERIT_UNLINK@Base 4.0.0
+ LC_PinInfo_Attach@Base 4.0.0
+ LC_PinInfo_GetAllowChange@Base 4.0.0
+ LC_PinInfo_GetEncoding@Base 4.0.0
+ LC_PinInfo_GetFiller@Base 4.0.0
+ LC_PinInfo_GetId@Base 4.0.0
+ LC_PinInfo_GetMaxLength@Base 4.0.0
+ LC_PinInfo_GetMinLength@Base 4.0.0
+ LC_PinInfo_GetName@Base 4.0.0
+ LC_PinInfo_IsModified@Base 4.0.0
+ LC_PinInfo_List2Iterator_Data@Base 4.0.0
+ LC_PinInfo_List2Iterator_GetLinkCount@Base 4.0.0
+ LC_PinInfo_List2Iterator_IncLinkCount@Base 4.0.0
+ LC_PinInfo_List2Iterator_Next@Base 4.0.0
+ LC_PinInfo_List2Iterator_Previous@Base 4.0.0
+ LC_PinInfo_List2Iterator_free@Base 4.0.0
+ LC_PinInfo_List2Iterator_new@Base 4.0.0
+ LC_PinInfo_List2_Clear@Base 4.0.0
+ LC_PinInfo_List2_Contains@Base 4.0.0
+ LC_PinInfo_List2_Dump@Base 4.0.0
+ LC_PinInfo_List2_Erase@Base 4.0.0
+ LC_PinInfo_List2_FindIter@Base 4.0.0
+ LC_PinInfo_List2_First@Base 4.0.0
+ LC_PinInfo_List2_ForEach@Base 4.0.0
+ LC_PinInfo_List2_GetBack@Base 4.0.0
+ LC_PinInfo_List2_GetFront@Base 4.0.0
+ LC_PinInfo_List2_GetSize@Base 4.0.0
+ LC_PinInfo_List2_IsEmpty@Base 4.0.0
+ LC_PinInfo_List2_Last@Base 4.0.0
+ LC_PinInfo_List2_PopBack@Base 4.0.0
+ LC_PinInfo_List2_PopFront@Base 4.0.0
+ LC_PinInfo_List2_PushBack@Base 4.0.0
+ LC_PinInfo_List2_PushFront@Base 4.0.0
+ LC_PinInfo_List2_Remove@Base 4.0.0
+ LC_PinInfo_List2_Unshare@Base 4.0.0
+ LC_PinInfo_List2__freeAll_cb@Base 4.0.0
+ LC_PinInfo_List2_dup@Base 4.0.0
+ LC_PinInfo_List2_free@Base 4.0.0
+ LC_PinInfo_List2_freeAll@Base 4.0.0
+ LC_PinInfo_List2_new@Base 4.0.0
+ LC_PinInfo_List_Add@Base 4.0.0
+ LC_PinInfo_List_AddList@Base 4.0.0
+ LC_PinInfo_List_Clear@Base 4.0.0
+ LC_PinInfo_List_Del@Base 4.0.0
+ LC_PinInfo_List_First@Base 4.0.0
+ LC_PinInfo_List_GetCount@Base 4.0.0
+ LC_PinInfo_List_HasElement@Base 4.0.0
+ LC_PinInfo_List_Insert@Base 4.0.0
+ LC_PinInfo_List_Last@Base 4.0.0
+ LC_PinInfo_List_Next@Base 4.0.0
+ LC_PinInfo_List_Previous@Base 4.0.0
+ LC_PinInfo_List_dup@Base 4.0.0
+ LC_PinInfo_List_free@Base 4.0.0
+ LC_PinInfo_List_new@Base 4.0.0
+ LC_PinInfo_ReadDb@Base 4.0.0
+ LC_PinInfo_SetAllowChange@Base 4.0.0
+ LC_PinInfo_SetEncoding@Base 4.0.0
+ LC_PinInfo_SetFiller@Base 4.0.0
+ LC_PinInfo_SetId@Base 4.0.0
+ LC_PinInfo_SetMaxLength@Base 4.0.0
+ LC_PinInfo_SetMinLength@Base 4.0.0
+ LC_PinInfo_SetModified@Base 4.0.0
+ LC_PinInfo_SetName@Base 4.0.0
+ LC_PinInfo_dup@Base 4.0.0
+ LC_PinInfo_free@Base 4.0.0
+ LC_PinInfo_fromDb@Base 4.0.0
+ LC_PinInfo_new@Base 4.0.0
+ LC_PinInfo_toDb@Base 4.0.0
+ LC_ProcessorCard_ExtendCard@Base 4.0.0
+ LC_ProcessorCard_UnextendCard@Base 4.0.0
+ LC_ReaderFlags_fromDb@Base 4.0.0
+ LC_ReaderFlags_fromXml@Base 4.0.0
+ LC_ReaderFlags_toDb@Base 4.0.0
+ LC_ReaderStatus_fromString@Base 4.0.0
+ LC_ReaderStatus_toString@Base 4.0.0
+ LC_SERVICECLIENT__INHERIT_GETLIST@Base 4.0.0
+ LC_SERVICECLIENT__INHERIT_ISOFTYPE@Base 4.0.0
+ LC_SERVICECLIENT__INHERIT_SETDATA@Base 4.0.0
+ LC_SERVICECLIENT__INHERIT_UNLINK@Base 4.0.0
+ LC_ServiceClient_GetClientId@Base 4.0.0
+ LC_ServiceClient_GetUserName@Base 4.0.0
+ LC_ServiceClient_List_Add@Base 4.0.0
+ LC_ServiceClient_List_AddList@Base 4.0.0
+ LC_ServiceClient_List_Clear@Base 4.0.0
+ LC_ServiceClient_List_Del@Base 4.0.0
+ LC_ServiceClient_List_First@Base 4.0.0
+ LC_ServiceClient_List_GetCount@Base 4.0.0
+ LC_ServiceClient_List_HasElement@Base 4.0.0
+ LC_ServiceClient_List_Insert@Base 4.0.0
+ LC_ServiceClient_List_Last@Base 4.0.0
+ LC_ServiceClient_List_Next@Base 4.0.0
+ LC_ServiceClient_List_Previous@Base 4.0.0
+ LC_ServiceClient_List_free@Base 4.0.0
+ LC_ServiceClient_List_new@Base 4.0.0
+ LC_ServiceClient_SetUserName@Base 4.0.0
+ LC_ServiceClient_free@Base 4.0.0
+ LC_ServiceClient_new@Base 4.0.0
+ LC_ServiceFlags_fromDb@Base 4.0.0
+ LC_ServiceFlags_toDb@Base 4.0.0
+ LC_ServiceStatus_fromString@Base 4.0.0
+ LC_ServiceStatus_toString@Base 4.0.0
+ LC_Service_AddClient@Base 4.0.0
+ LC_Service_Close@Base 4.0.0
+ LC_Service_Command@Base 4.0.0
+ LC_Service_Connect@Base 4.0.0
+ LC_Service_DelClient@Base 4.0.0
+ LC_Service_FindClientById@Base 4.0.0
+ LC_Service_GetClients@Base 4.0.0
+ LC_Service_GetErrorText@Base 4.0.0
+ LC_Service_GetLibraryFile@Base 4.0.0
+ LC_Service_GetServiceConfigDir@Base 4.0.0
+ LC_Service_GetServiceDataDir@Base 4.0.0
+ LC_Service_GetServiceId@Base 4.0.0
+ LC_Service_Open@Base 4.0.0
+ LC_Service_SetCloseFn@Base 4.0.0
+ LC_Service_SetCommandFn@Base 4.0.0
+ LC_Service_SetGetErrorTextFn@Base 4.0.0
+ LC_Service_SetOpenFn@Base 4.0.0
+ LC_Service_SetWorkFn@Base 4.0.0
+ LC_Service_Usage@Base 4.0.0
+ LC_Service_Work@Base 4.0.0
+ LC_Service_new@Base 4.0.0
+ LC_Starcos_ActivateKeyPair@Base 4.1.0
+ LC_Starcos_ExtendCard@Base 4.1.0
+ LC_Starcos_GenerateKeyPair@Base 4.1.0
+ LC_Starcos_GetCardDataAsBuffer@Base 4.1.0
+ LC_Starcos_GetCardDataAsDb@Base 4.1.0
+ LC_Starcos_GetChallenge@Base 4.1.0
+ LC_Starcos_GetKeyDescr@Base 4.1.0
+ LC_Starcos_KeyDescr_Attach@Base 4.1.0
+ LC_Starcos_KeyDescr_GetKeyId@Base 4.1.0
+ LC_Starcos_KeyDescr_GetKeyNum@Base 4.1.0
+ LC_Starcos_KeyDescr_GetKeyType@Base 4.1.0
+ LC_Starcos_KeyDescr_GetKeyVer@Base 4.1.0
+ LC_Starcos_KeyDescr_GetStatus@Base 4.1.0
+ LC_Starcos_KeyDescr_IsModified@Base 4.1.0
+ LC_Starcos_KeyDescr_ReadDb@Base 4.1.0
+ LC_Starcos_KeyDescr_SetKeyId@Base 4.1.0
+ LC_Starcos_KeyDescr_SetKeyNum@Base 4.1.0
+ LC_Starcos_KeyDescr_SetKeyType@Base 4.1.0
+ LC_Starcos_KeyDescr_SetKeyVer@Base 4.1.0
+ LC_Starcos_KeyDescr_SetModified@Base 4.1.0
+ LC_Starcos_KeyDescr_SetStatus@Base 4.1.0
+ LC_Starcos_KeyDescr_dup@Base 4.1.0
+ LC_Starcos_KeyDescr_free@Base 4.1.0
+ LC_Starcos_KeyDescr_fromDb@Base 4.1.0
+ LC_Starcos_KeyDescr_new@Base 4.1.0
+ LC_Starcos_KeyDescr_toDb@Base 4.1.0
+ LC_Starcos_ReadInstituteData@Base 4.1.0
+ LC_Starcos_ReadPublicKey@Base 4.1.0
+ LC_Starcos_ReadSigCounter@Base 4.1.0
+ LC_Starcos_Reopen@Base 4.1.0
+ LC_Starcos_SaveKeyDescr@Base 4.1.0
+ LC_Starcos_UnextendCard@Base 4.1.0
+ LC_Starcos_WriteInstituteData@Base 4.1.0
+ LC_Starcos_WritePublicKey@Base 4.1.0
+ LC_TLV_GetClass@Base 4.0.0
+ LC_TLV_GetTagData@Base 4.0.0
+ LC_TLV_GetTagLength@Base 4.0.0
+ LC_TLV_GetTagSize@Base 4.0.0
+ LC_TLV_GetTagType@Base 4.0.0
+ LC_TLV_IsBerTlv@Base 4.0.0
+ LC_TLV_IsContructed@Base 4.0.0
+ LC_TLV_List_Add@Base 4.0.0
+ LC_TLV_List_AddList@Base 4.0.0
+ LC_TLV_List_Clear@Base 4.0.0
+ LC_TLV_List_Del@Base 4.0.0
+ LC_TLV_List_First@Base 4.0.0
+ LC_TLV_List_GetCount@Base 4.0.0
+ LC_TLV_List_HasElement@Base 4.0.0
+ LC_TLV_List_Insert@Base 4.0.0
+ LC_TLV_List_Last@Base 4.0.0
+ LC_TLV_List_Next@Base 4.0.0
+ LC_TLV_List_Previous@Base 4.0.0
+ LC_TLV_List_free@Base 4.0.0
+ LC_TLV_List_new@Base 4.0.0
+ LC_TLV_free@Base 4.0.0
+ LC_TLV_fromBuffer@Base 4.0.0
+ LC_TLV_new@Base 4.0.0
--- libchipcard-4.2.9.orig/debian/watch
+++ libchipcard-4.2.9/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=filenamemangle=s/.*\&dummy=(.*)/$1/ \
+ http://www2.aquamaniac.de/sites/download/packages.php \
+ /sites/download/download.php\?package=02\&.*\&dummy=libchipcard-([\d.]*).tar.gz debian uupdate
--- libchipcard-4.2.9.orig/debian/trigger_chipcardreader_scan.sh
+++ libchipcard-4.2.9/debian/trigger_chipcardreader_scan.sh
@@ -0,0 +1,12 @@
+#! /bin/sh
+
+PIDFILE=/var/run/chipcard/chipcardd4.pid
+
+MASTER_PID=$(cat $PIDFILE)
+if [ -z $MASTER_PID ]; then
+ echo "Found no PID in $PIDFILE." >& 2
+ echo "Apparently there is no Chipcard daemon running." >& 2
+ exit 1
+fi
+SLAVE_PIDs=$(pgrep -P $MASTER_PID)
+kill -USR2 $MASTER_PID $SLAVE_PIDs
--- libchipcard-4.2.9.orig/debian/control
+++ libchipcard-4.2.9/debian/control
@@ -0,0 +1,96 @@
+Source: libchipcard
+Section: libs
+Priority: optional
+Maintainer: Micha Lenk <micha@debian.org>
+Build-Depends: debhelper (>= 7), libgwenhywfar47-dev (>= 3.5.1),
+ libhal-dev, gawk, libpcsclite-dev, zlib1g-dev
+Standards-Version: 3.8.4
+Vcs-Browser: http://svn.debian.org/wsvn/aqbanking/libchipcard/trunk/
+Vcs-Svn: svn+ssh://svn.debian.org/svn/aqbanking/libchipcard/trunk
+Homepage: http://www.aquamaniac.de/sites/libchipcard/
+
+Package: libchipcard-dev
+Section: libdevel
+Architecture: any
+Priority: extra
+Depends: libchipcardc2 (= ${binary:Version}),
+ libchipcard-ctapi0 (= ${binary:Version}),
+ libchipcard-data (>= ${source:Version}), ${misc:Depends}
+Description: API for smartcard readers
+ libchipcard provides an API for accessing smartcards. Examples are
+ memory cards, as well as HBCI (home banking), German GeldKarte
+ (electronic small change), and KVK (health insurance) cards.
+ .
+ This package contains the development files for libchipcard.
+
+Package: libchipcardc2
+Section: libs
+Architecture: any
+Depends: libchipcard-data (>= ${source:Version}), ${shlibs:Depends},
+ ${misc:Depends}
+Recommends: libchipcard-tools, libchipcard-ctapi0
+Priority: optional
+Description: library for accessing smartcards
+ libchipcard provides an API for accessing smartcards. Examples are
+ memory cards, as well as HBCI (home banking), German GeldKarte
+ (electronic small change), and KVK (health insurance) cards.
+ .
+ This package contains the client API.
+
+Package: libchipcard-ctapi0
+Section: libs
+Architecture: any
+Depends: libchipcard-data (>= ${source:Version}), ${shlibs:Depends},
+ ${misc:Depends}
+Priority: optional
+Description: library for accessing smartcards
+ libchipcard provides an API for accessing smartcards. Examples are
+ memory cards, as well as HBCI (home banking), German GeldKarte
+ (electronic small change), and KVK (health insurance) cards.
+ .
+ This package contains the fake CT-API which enables CT-API capable
+ applications to access libchipcard's card readers.
+
+Package: libchipcard-data
+Section: libs
+Depends: ${misc:Depends}
+Architecture: all
+Priority: optional
+Description: configuration files for libchipcard
+ libchipcard provides an API for accessing smartcards. Examples are
+ memory cards, as well as HBCI (home banking), German GeldKarte
+ (electronic small change), and KVK (health insurance) cards.
+ .
+ This package contains configuration files for libchipcard.
+
+Package: libchipcard-tools
+Section: misc
+Architecture: any
+Priority: optional
+Depends: ${shlibs:Depends}, libchipcard-data (>= ${source:Version}),
+ adduser, procps, ${misc:Depends}
+Recommends: hal
+Conflicts: libchipcardd0 (<< 4.2.7)
+Replaces: libchipcardd0 (<< 4.2.7)
+Suggests: libtowitoko2, libccid
+Description: tools for accessing chipcards
+ libchipcard provides an API for accessing smartcards. Examples are
+ memory cards, as well as HBCI (home banking), German GeldKarte
+ (electronic small change), and KVK (health insurance) cards.
+ .
+ This package contains tools for chipcards, e.g. geldkarte, as
+ well as the server managing the communication between chipcards and
+ applications.
+
+Package: libchipcard-libgwenhywfar47-plugins
+Section: misc
+Architecture: any
+Priority: optional
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: crypttoken plugin to libgwenhywfar
+ libchipcard provides an API for accessing smartcards. Examples are
+ memory cards, as well as HBCI (home banking), German GeldKarte
+ (electronic small change), and KVK (health insurance) cards.
+ .
+ This package contains plugins to gwenhywfar providing cryptographic
+ services via smartcards.
--- libchipcard-4.2.9.orig/debian/libchipcard-libgwenhywfar47-plugins.install
+++ libchipcard-4.2.9/debian/libchipcard-libgwenhywfar47-plugins.install
@@ -0,0 +1,2 @@
+usr/lib/gwenhywfar/plugins/*/*/*.so*
+usr/lib/gwenhywfar/plugins/*/*/*.xml
--- libchipcard-4.2.9.orig/debian/libchipcard-ctapi0.symbols
+++ libchipcard-4.2.9/debian/libchipcard-ctapi0.symbols
@@ -0,0 +1,35 @@
+libchipcard_ctapi.so.0 libchipcard-ctapi0 #MINVER#
+ CTAPI_APDU_Dump@Base 4.0.0
+ CTAPI_APDU_free@Base 4.0.0
+ CTAPI_APDU_new@Base 4.0.0
+ CTAPI_Context_FindByCtn@Base 4.0.0
+ CTAPI_Context_FindByPort@Base 4.0.0
+ CTAPI_Context_List_Add@Base 4.0.0
+ CTAPI_Context_List_AddList@Base 4.0.0
+ CTAPI_Context_List_Clear@Base 4.0.0
+ CTAPI_Context_List_Del@Base 4.0.0
+ CTAPI_Context_List_First@Base 4.0.0
+ CTAPI_Context_List_GetCount@Base 4.0.0
+ CTAPI_Context_List_HasElement@Base 4.0.0
+ CTAPI_Context_List_Insert@Base 4.0.0
+ CTAPI_Context_List_Last@Base 4.0.0
+ CTAPI_Context_List_Next@Base 4.0.0
+ CTAPI_Context_List_Previous@Base 4.0.0
+ CTAPI_Context_List_free@Base 4.0.0
+ CTAPI_Context_List_new@Base 4.0.0
+ CTAPI_Context_SetCardType@Base 4.0.0
+ CTAPI_Context_free@Base 4.0.0
+ CTAPI_Context_new@Base 4.0.0
+ CT__closeCard@Base 4.0.0
+ CT__ejectICC@Base 4.0.0
+ CT__fillPinInfo@Base 4.0.0
+ CT__getStatusICC@Base 4.0.0
+ CT__openCard@Base 4.0.0
+ CT__requestICC@Base 4.0.0
+ CT__resetICC@Base 4.0.0
+ CT__secureModify@Base 4.0.0
+ CT__secureVerify@Base 4.0.0
+ CT__showError@Base 4.0.0
+ CT_close@Base 4.0.0
+ CT_data@Base 4.0.0
+ CT_init@Base 4.0.0
--- libchipcard-4.2.9.orig/debian/libchipcard-tools.dirs
+++ libchipcard-4.2.9/debian/libchipcard-tools.dirs
@@ -0,0 +1,5 @@
+/var/log/chipcard
+/var/log/chipcard/drivers
+/var/log/chipcard/services
+/var/lib/chipcard
+/var/lib/chipcard/newcerts
--- libchipcard-4.2.9.orig/debian/libchipcard-tools.install
+++ libchipcard-4.2.9/debian/libchipcard-tools.install
@@ -0,0 +1,9 @@
+usr/bin/cardcommander
+usr/bin/chipcard-tool
+usr/bin/geldkarte
+usr/bin/kvkcard
+usr/bin/memcard
+usr/lib/chipcard/trigger_chipcardreader_scan.sh
+usr/lib/chipcard/server
+usr/sbin/*
+usr/share/bug/libchipcard-tools
--- libchipcard-4.2.9.orig/debian/libchipcard-tools.preinst
+++ libchipcard-4.2.9/debian/libchipcard-tools.preinst
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+set -e
+
+if [ "$1" = install ] || [ "$1" = upgrade ]; then
+ if [ -L "/etc/udev/rules.d/025_libchipcard.rules" ]; then
+ rm -f "/etc/udev/rules.d/025_libchipcard.rules"
+ fi
+
+ if [ -e "/etc/udev/libchipcard.rules" ]; then
+ if [ "`md5sum \"/etc/udev/libchipcard.rules\" | sed -e \"s/ .*//\"`" = \
+ "`dpkg-query -W -f='${Conffiles}' libchipcard-tools | sed -n -e \"\\\\' /etc/udev/libchipcard.rules's/.* //p\"`" ]
+ then
+ rm -f "/etc/udev/libchipcard.rules"
+ else
+ mv "/etc/udev/libchipcard.rules" "/etc/udev/rules.d/z60_libchipcard-tools.rules"
+ fi
+ fi
+fi
+
+#DEBHELPER#
--- libchipcard-4.2.9.orig/debian/libchipcard-data.install
+++ libchipcard-4.2.9/debian/libchipcard-data.install
@@ -0,0 +1,4 @@
+usr/share/chipcard
+usr/share/doc/libchipcard-data
+etc/chipcard/server/chipcardd.conf
+etc/chipcard/client/chipcardc.conf
--- libchipcard-4.2.9.orig/debian/libchipcard-tools.manpages
+++ libchipcard-4.2.9/debian/libchipcard-tools.manpages
@@ -0,0 +1,2 @@
+debian/chipcard-tool.1
+debian/kvkcard.1
--- libchipcard-4.2.9.orig/debian/libchipcard-dev.install
+++ libchipcard-4.2.9/debian/libchipcard-dev.install
@@ -0,0 +1,5 @@
+usr/bin/chipcard-config
+usr/include
+usr/share/aclocal
+usr/lib/*.la
+usr/lib/*.so
--- libchipcard-4.2.9.orig/debian/libchipcardc2.install
+++ libchipcard-4.2.9/debian/libchipcardc2.install
@@ -0,0 +1,2 @@
+usr/lib/libchipcardc.so.*
+usr/share/bug/libchipcardc2
--- libchipcard-4.2.9.orig/debian/copyright
+++ libchipcard-4.2.9/debian/copyright
@@ -0,0 +1,42 @@
+Initially this package was debianized by Thomas Viehmann <tv@beamnet.de> on
+Mon, 9 Aug 2004 21:57:32 +0200. Since summer 2007 the package is actively
+maintained by Micha Lenk <micha@lenk.info> with the help of Georg W. Leonhardt
+<repo@geole.info>.
+
+It was downloaded from http://sf.net/projects/libchipcard/
+See also http://www.libchipcard.de/
+
+Upstream Author: Martin Preuss <martin@libchipcard.de>
+
+Copyright: (c) 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Martin Preuss
+
+Libchipcard is licensed under the GNU LGPL (see below).
+
+As the copyright holder of Libchipcard, Martin Preuss grants the following
+license exception:
+
+Martin Preuss explicitly allows the compilation and distribution of
+Libchipcard with the OpenSSL Toolkit.
+No developer is required to provide this exception in a derived work.
+
+License:
+
+ This package is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation as
+ version 2.1.
+
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+On Debian systems, the complete text of the GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL-2.1'.
+
+The Debian packaging is (C) 2007, Micha Lenk <micha@lenk.info> and
+is licensed under the GPL v2, see `/usr/share/common-licenses/GPL-2'.
--- libchipcard-4.2.9.orig/debian/libchipcard-ctapi0.shlibs
+++ libchipcard-4.2.9/debian/libchipcard-ctapi0.shlibs
@@ -0,0 +1 @@
+libchipcard_ctapi 0 libchipcard-ctapi0
--- libchipcard-4.2.9.orig/debian/libchipcard-tools.init
+++ libchipcard-4.2.9/debian/libchipcard-tools.init
@@ -0,0 +1,81 @@
+#! /bin/sh
+### BEGIN INIT INFO
+# Provides: libchipcard-tools chipcardd
+# Required-Start: $syslog $remote_fs $local_fs $network
+# Required-Stop: $syslog $remote_fs $local_fs $named
+# Should-Start: hal
+# Should-Stop: hal
+# Default-Start: 2 3 4 5
+# Default-Stop: 0 1 6
+# Short-Description: daemon for smartcard access
+# Description: server that libchipcard-based program can
+# connect to
+### END INIT INFO
+#
+# NOTE: The above assumes unix sockets are used (otherwise $network and
+# $named might be wanted)
+#
+# Start and stop chipcardd, adapted by packager from skeleton by:
+#
+# Written by Miquel van Smoorenburg <miquels@cistron.nl>.
+# Modified for Debian GNU/Linux
+# by Ian Murdock <imurdock@gnu.ai.mit.edu>.
+#
+
+PATH=/sbin:/bin:/usr/sbin:/usr/bin
+DAEMON=/usr/sbin/chipcardd4
+PIDFILE=/var/run/chipcard/chipcardd4.pid
+DAEMON_ARGS="--pidfile $PIDFILE --exit-on-error"
+NAME=chipcardd4
+DESC="libchipcard daemon"
+[ -f /etc/default/libchipcard-tools ] && . /etc/default/libchipcard-tools
+
+test -x $DAEMON || exit 0
+
+set -e
+
+check_var_run() {
+ if [ ! -d /var/run/chipcard ] ; then
+ mkdir -p /var/run/chipcard
+ fi
+ chown chipcard /var/run/chipcard
+}
+
+case "$1" in
+ start)
+ echo -n "Starting $DESC: "
+ check_var_run
+ start-stop-daemon --start --quiet --pidfile $PIDFILE \
+ --user chipcard --chuid chipcard \
+ --exec $DAEMON -- $DAEMON_ARGS
+ echo "$NAME."
+ ;;
+ stop)
+ echo -n "Stopping $DESC: "
+ start-stop-daemon --oknodo --stop --quiet --pidfile $PIDFILE \
+ --user chipcard --exec $DAEMON
+ echo "$NAME."
+ ;;
+ reload)
+ echo "Reloading $DESC configuration files."
+ start-stop-daemon --stop --signal 1 --quiet --pidfile \
+ $PIDFILE --exec $DAEMON
+ ;;
+ restart|force-reload)
+ echo -n "Restarting $DESC: "
+ start-stop-daemon --oknodo --stop --quiet --pidfile $PIDFILE \
+ --user chipcard --exec $DAEMON
+ sleep 1
+ check_var_run
+ start-stop-daemon --start --quiet --pidfile $PIDFILE \
+ --user chipcard --chuid chipcard --exec $DAEMON -- $DAEMON_ARGS
+ echo "$NAME."
+ ;;
+ *)
+ N=$0
+ echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
+ exit 1
+ ;;
+esac
+
+exit 0
--- libchipcard-4.2.9.orig/debian/libchipcard-tools.README.Debian
+++ libchipcard-4.2.9/debian/libchipcard-tools.README.Debian
@@ -0,0 +1,38 @@
+Notes for libchipcard
+=====================
+
+Device Permissions
+------------------
+
+The chipcard daemon (chipcardd4) is run as the non-privileged user
+chipcard. By default, it is in the group dialout and thus has access
+to the serial and ttyUSB ports. Some readers are directly interfaced
+via USB devices without tty emulation. For those libchipcard-tools
+provides udev scripts setting the the group to chipcard. Unfortunately,
+some driver packages, notably those for Reiner SCT CyberJack ship
+conflicting rules. You may want to check the permissions and your
+installed driver package if you have trouble accessing the reader
+despite correct recognition by chipcardd. For the CyberJack readers,
+look at /etc/udev/rules.d/z80cyberjack.rules.
+Unfortunately, the error messages are not always clear.
+
+Unfortunately, the package chipcard-tools from libchipcard 1.x (shipped
+with Debian 3.1 (sarge) releases prior to r2), removes this user. If
+this happens, please reinstall libchipcard-tools.
+
+PC/SC daemon
+------------
+
+Some smartcard readers like the Omnikey Cardman 4000 or Omnikey Cardman 4040
+need the installation of a binary shared library, which is available from the
+manufacturer's homepage. If you have trouble getting such a device
+working but you got it working with the PC/SC daemon (package »pcscd«) you
+should configure the libchipcard client library to make use of the PC/SC daemon
+instead of the libchipcard daemon. You can do this by adding the following line
+to the beginning of the configuration file /etc/chipcard/client/chipcardc.conf:
+
+ char resmgr="pcsc"
+
+With this configuration the libchipcard daemon is not needed at all, so
+you can even uninstall the package »libchipcard-tools«. This will save
+some resources on your system.
--- libchipcard-4.2.9.orig/debian/libchipcard-data.dirs
+++ libchipcard-4.2.9/debian/libchipcard-data.dirs
@@ -0,0 +1,5 @@
+/etc/chipcard
+/etc/chipcard/client
+/etc/chipcard/client/certs
+/etc/chipcard/server
+/etc/chipcard/server/certs
--- libchipcard-4.2.9.orig/debian/generate_udev_list.sh
+++ libchipcard-4.2.9/debian/generate_udev_list.sh
@@ -0,0 +1,18 @@
+#!/bin/sh
+echo 'SUBSYSTEM!="usb", GOTO="libchipcard_rules_usb_end"'
+echo 'ENV{DEVTYPE}!="usb_device", GOTO="libchipcard_rules_usb_end"'
+find data/drivers/ -name \*.xml -and -exec cat '{}' ';' | \
+ gawk 'BEGIN { RS="[<>][ \t\n]*" ; FS="[ \t\n>]+" ; IGNORECASE=1 } ;
+ /^reader[ \t\n]+.*busType="UsbRaw"/ {
+ split("",da) ;
+ for (i=1; i<=NF; i++) { match($i, /^([^=]*)="([^"]*)"/ , arr) ; da[arr[1]]=arr[2] } ;
+ if (da["vendor"] && da["product"]) {
+ sub(/^0x/,"",da["vendor"]);
+ sub(/^0x/,"",da["product"]);
+ print "ATTR{idVendor}==\"" da["vendor"] "\", ATTR{idProduct}==\"" da["product"] "\", GROUP=\"chipcard\", RUN+=\"/usr/lib/chipcard/trigger_chipcardreader_scan.sh\""
+ }
+ }'
+echo 'LABEL="libchipcard_rules_usb_end"'
+echo 'KERNEL=="cmm0", SUBSYSTEM=="cardman_4000", GROUP="chipcard", RUN+="/usr/lib/chipcard/trigger_chipcardreader_scan.sh"'
+echo 'KERNEL=="ozscrlx", SUBSYSTEM=="ozscrlx", GROUP="chipcard", RUN+="/usr/lib/chipcard/trigger_chipcardreader_scan.sh"'
+echo 'KERNEL=="o2scr0", SUBSYSTEM=="ozscrlx", GROUP="chipcard", RUN+="/usr/lib/chipcard/trigger_chipcardreader_scan.sh"'
--- libchipcard-4.2.9.orig/debian/libchipcard-tools.postinst
+++ libchipcard-4.2.9/debian/libchipcard-tools.postinst
@@ -0,0 +1,78 @@
+#! /bin/sh
+
+set -e
+
+case "$1" in
+ configure)
+
+ if ! getent passwd | grep -q "^chipcard:" ; then
+ echo "Adding chipcard-tools daemon account to the system..."
+ adduser --quiet --system --home /var/run/chipcard --group \
+ --disabled-login --disabled-password --no-create-home \
+ --gecos "Chipcard-Tools Daemon Account" chipcard
+ fi
+ if ! getent group | grep -q "^dialout:.*\bchipcard\b" ; then
+ echo "Adding chipcard-tools daemon account to dialout group..."
+ adduser --quiet chipcard dialout
+ fi
+
+ # are we upgrading from libchipcard prior to 4.0.0-5?
+ upgrade_from_statoverride_using_version=0
+ if dpkg --compare-versions "$2" lt 4.0.0-5 && ! test -z "$2" ; then
+ upgrade_from_statoverride_using_version=1
+ fi
+
+ # handle the following directories' ownerships
+ for a_chipcard_dir in \
+ /var/log/chipcard \
+ /var/log/chipcard/drivers \
+ /var/log/chipcard/services \
+ /var/lib/chipcard \
+ /var/lib/chipcard/newcerts ; do
+
+ # if we are upgrading from a bad version, remove the statoverride
+ if [ "$upgrade_from_statoverride_using_version" = "1" ] ; then
+ dpkg-statoverride --remove $a_chipcard_dir >/dev/null 2>&1 || true
+ fi
+
+ # change ownership ONLY IF NO dpkg-statoverride exists
+ if ! dpkg-statoverride --list $a_chipcard_dir >/dev/null ; then
+ chown chipcard:root $a_chipcard_dir
+ fi
+ done
+
+ # are we upgrading from libchipcard prior to 4.2.7-3?
+ if dpkg --compare-versions "$2" lt 4.2.7-3~ && ! test -z "$2" ; then
+ # check for old boot sequence being unmodified by local admin
+ if [ -e /etc/rc0.d/K20libchipcard-tools ] && \
+ [ -e /etc/rc1.d/K20libchipcard-tools ] && \
+ [ -e /etc/rc2.d/S20libchipcard-tools ] && \
+ [ -e /etc/rc3.d/S20libchipcard-tools ] && \
+ [ -e /etc/rc4.d/S20libchipcard-tools ] && \
+ [ -e /etc/rc5.d/S20libchipcard-tools ] && \
+ [ -e /etc/rc6.d/K20libchipcard-tools ];
+ then
+ # ... if it really is unmodified, remove the old symlinks for
+ # getting the fixed boot order installed by the snippet added
+ # by dh_installinit below
+ update-rc.d -f libchipcard-tools remove > /dev/null
+ fi
+ fi
+
+ ;;
+
+ abort-upgrade|abort-remove|abort-deconfigure)
+
+ ;;
+
+ *)
+ echo "postinst called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0
+
+
--- libchipcard-4.2.9.orig/debian/libchipcard-ctapi0.docs
+++ libchipcard-4.2.9/debian/libchipcard-ctapi0.docs
@@ -0,0 +1 @@
+README
--- libchipcard-4.2.9.orig/debian/changelog
+++ libchipcard-4.2.9/debian/changelog
@@ -0,0 +1,633 @@
+libchipcard (4.2.9-2) unstable; urgency=low
+
+ * Update udev rules now using ATTR{} instead of SYSFS{} attributes
+ (closes: #563086).
+ * Package is compliant to Debian Policy 3.8.4 (no changes needed).
+
+ -- Micha Lenk <micha@debian.org> Sat, 06 Mar 2010 12:41:58 +0100
+
+libchipcard (4.2.9-1) unstable; urgency=low
+
+ * New upstream release
+ + fixes faulty use of D-BUS protocol (closes: #532893, LP: #429853)
+ + doesn't show confusing "Closing GWEN" message anymore (LP: #429887).
+ * libchipcard-dev: Fix weak library dependencies on libchipcardc2 and
+ libchipcard-ctapi0 (thanks to lintian).
+ * Fix typos in package descriptions (closes: 557498, 557499, 557500, 557501).
+ Thanks to Pascal De Vuyst for pointing them out.
+ * Improve NEWS entry for libchipcard-tools, clarifying that a
+ disabled init script will need a manual check for correct boot order.
+
+ -- Micha Lenk <micha@debian.org> Mon, 28 Dec 2009 14:29:12 +0100
+
+libchipcard (4.2.8-2) unstable; urgency=low
+
+ * Clean up directory /var/run/chipcard/ on purge of libchipcard-tools.
+ * Bump standards version. Package is compliant to standards version 3.8.3 now
+ (no changes needed).
+ * Improve bug script to include information about used resource manager and
+ pcscd package/daemon status.
+ * Add comments about usage with pcscd to README.Debian for packages
+ libchipcard-tools and libchipcardc2 (closes: #362844).
+ * Don't ship .la-files for plugin shared libraries any more.
+ * Update maintainer's mail address and drop DM upload privileges.
+ * Change init.d LSB header dependency on hal to a soft dependency
+ (closes: #548581). Thanks to Petter Reinholdtsen for providing the patch.
+ * Let init script provide libchipcard-tools in init.d LSB headers.
+ * Add new symbols (stuff like *_GetLinkCount) to symbols file.
+
+ -- Micha Lenk <micha@debian.org> Mon, 28 Sep 2009 21:46:09 +0200
+
+libchipcard (4.2.8-1) unstable; urgency=low
+
+ * New upstream release
+ + drop patch 20_gemexpress (included upstream)
+ + drop patch 40_scanner_init_improved_error_handling (included upstream)
+ * No patches left, so drop dpatch from build-depends and debian/rules.
+
+ -- Micha Lenk <micha@lenk.info> Mon, 11 May 2009 16:59:21 +0200
+
+libchipcard (4.2.7-4) unstable; urgency=low
+
+ * Fix formatting of libchipcard-tools.NEWS file (thanks to lintian).
+
+ -- Micha Lenk <micha@lenk.info> Sat, 18 Apr 2009 19:46:02 +0200
+
+libchipcard (4.2.7-3) unstable; urgency=low
+
+ * libchipcard-tools: Run init script in boot sequence AFTER hal has been
+ started or BEFORE hal has been stopped and fix boot sequence in postinst
+ script (untouched configurations only).
+
+ -- Micha Lenk <micha@lenk.info> Sat, 18 Apr 2009 19:03:55 +0200
+
+libchipcard (4.2.7-2) unstable; urgency=low
+
+ * debian/libchipcard-tools.init: Include file /etc/defaults/libchipcard-tools
+ if it exists.
+ * Add patch 40_scanner_init_improved_error_handling for propper handling of
+ device scanners failing to initialize (closes: #524320).
+ * debian/control:
+ + minor improvement of the long package description for libchipcard-ctapi0
+ + let libchipcard-tools recommend hal (needed by the daemon for automatic
+ device detection).
+
+ -- Micha Lenk <micha@lenk.info> Thu, 16 Apr 2009 14:42:44 +0200
+
+libchipcard (4.2.7-1) unstable; urgency=low
+
+ * New upstream release
+ + fixes memory leaks in HAL scanner code (closes: #522885).
+ + drops shared library libchipcardd.so.
+ * debian/control:
+ + drop binary package libchipcardd0
+ + split dependencies into multiple lines.
+ + add Conflicts/Replaces for removal of now obsolete package libchipcardd0
+ on upgrade to current package libchipcard-tools.
+ * debian/rules: Drop snippets for package libchipcardd0.
+ * drop files debian/libchipcardd0.README.Debian (completely out of date)
+ and debian/libchipcardd0.* (now obsolete).
+ * now install README.Debian in package libchipcard-tools, the home of the
+ daemon binary chipcardd4, the README talks about.
+
+ -- Micha Lenk <micha@lenk.info> Wed, 08 Apr 2009 00:06:05 +0200
+
+libchipcard (4.2.5-1) unstable; urgency=low
+
+ * New upstream release
+ + drop patch 10_halscanner_bugfix (included upstream)
+ + modify patch 20_gemexpress to not patch ccid_ifd.xml any more
+ (this hunk is included upstream)
+
+ -- Micha Lenk <micha@lenk.info> Wed, 01 Apr 2009 11:13:30 +0200
+
+libchipcard (4.2.4-3) unstable; urgency=low
+
+ * libchipcard-tools: Suggest installation of packages libtowitoko2 and
+ libccid (closes: #520418).
+ * Add man pages for chipcard-tool and kvkcard written by Karsten Hilbert
+ (closes: #508084). Thanks a lot, Karsten, for your contributions.
+ * Add patch 20_gemexpress for improved libccid driver handling
+ (closes: #520283). This makes GemPC Express readers work.
+ Thanks to Joachim Breitner for contributing the patch.
+
+ -- Micha Lenk <micha@lenk.info> Wed, 25 Mar 2009 14:28:55 +0100
+
+libchipcard (4.2.4-2) unstable; urgency=low
+
+ * Upload to Debian unstable (closes: #496939).
+ * Fire udev rules on SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device" events
+ instead on SUBSYSTEM=="usb_device" events, which does not work on some
+ systems (closes: #509251).
+ * chown directory /var/run/chipcard to user chipcard in initscript only
+ and not in libchipcard-tools.postinst script any more as suggested by
+ James Westby in Ubuntu's Launchpad (LP: #283925).
+ * debian/libchipcard-tools.dirs: don't list /var/run/chipcard, which is
+ created by the init script now (thanks to lintian for the hint).
+ * debian/control:
+ + package is compliant with standards version 3.8.1 now
+ + fix lintian warnings about missing ${misc:Depends}.
+ + add build-dependency on dpatch
+ * Add patch 10_halscanner_bugfix enabling the HAL scanner to recognize
+ PCMCIA chipcard readers.
+ * Adopt some changes from 4.1.3-2ubuntu1 (thanks to Scott James Remnant):
+ + debian/rules: Generate udev rules to a file debhelper can pick up.
+ + debian/libchipcard-tools.dirs: No need to create udev directories
+ + debian/libchipcard-tools.preinst: Remove the symlink on upgrade,
+ remove old rules files unless changed in which case rename it
+ + debian/libchipcard-tools.postinst: Don't create symlink anymore.
+ This is done by dh_installudev-generated code now (if necessary)
+ + debian/libchipcard-tools.postrm: No need to remove symlink.
+ Ubuntu's "Breaks: udev (<< 136-1)" is not needed because on Debian
+ systems udev rules files still live in /etc/udev/.
+ * debian/libchipcard-tools.postinst: Remove general comments
+ (originally generated by dh_make?)
+ * debian/rules:
+ + remove generated file debian/libchipcard-tools.udev in clean target
+ + make additional deletions in clean target verbose.
+ * Add symbols files for new dpkg-shlibdeps feature.
+ * debian/copyright:
+ + point to versioned license files in /usr/share/common-licenses/
+ (thanks to lintian for the hint). The packaging is now licensed
+ under GPL version 2.
+ + add missing copyrighted years up to 2009
+
+ -- Micha Lenk <micha@lenk.info> Tue, 17 Mar 2009 22:17:06 +0100
+
+libchipcard (4.2.4-1) experimental; urgency=low
+
+ * New upstream release
+ * bump debian/watch file for new download location
+
+ -- Micha Lenk <micha@lenk.info> Wed, 04 Feb 2009 15:02:28 +0100
+
+libchipcard (4.2.3-1) experimental; urgency=low
+
+ * New upstream release
+
+ -- Micha Lenk <micha@lenk.info> Sat, 08 Nov 2008 21:34:54 +0100
+
+libchipcard (4.2.2-1) experimental; urgency=low
+
+ * New upstream release
+ * debian/control:
+ + bump Gwenhywfar version in build-deps as required in release notes
+ + build-dep on libhal-dev instead of libsysfs-dev
+ * stop scanning for new chipcard readers every 2 seconds (closes: #470629).
+ This is done by
+ - setting hardwareScanInterval="0" in /etc/chipcard/server/chipcardd.conf,
+ - adding a script /usr/lib/chipcard/trigger_chipcardreader_scan.sh sending
+ the needed signal to the chipcard daemon,
+ - update the udev rules to call the new script on hardware changes.
+ * Let the udev script not skip USB devices on non-"add" actions in order to
+ get notified about reader removals.
+
+ -- Micha Lenk <micha@lenk.info> Sun, 19 Oct 2008 16:31:32 +0200
+
+libchipcard (4.2.1-1) experimental; urgency=low
+
+ * New upstream release
+ * Get rid of CDBS by adapt debian/rules to debhelper 7.
+ * Drop Lintian overrides: Debhelper has been fixed, so we don't need them
+ any more.
+ * Drop empty directory /usr/lib/chipcard/server/lowlevel/.
+
+ -- Micha Lenk <micha@lenk.info> Fri, 17 Oct 2008 19:20:42 +0200
+
+libchipcard (4.2.0-2) experimental; urgency=low
+
+ * Add zlib1g-dev to build dependencies (closes: #497043) and fix my local
+ build environment.
+
+ -- Micha Lenk <micha@lenk.info> Fri, 29 Aug 2008 16:57:15 +0200
+
+libchipcard (4.2.0-1) experimental; urgency=low
+
+ * New upstream release (closes: #496939)
+ * Upload to experimental because of freeze for Lenny.
+
+ -- Micha Lenk <micha@lenk.info> Thu, 28 Aug 2008 20:54:35 +0200
+
+libchipcard (4.1.3-2) unstable; urgency=low
+
+ * libchipcard-tools: Remove stale IPC socket file in postrm script on purge
+ (closes: #495452).
+
+ -- Micha Lenk <micha@lenk.info> Sun, 17 Aug 2008 22:38:29 +0200
+
+libchipcard (4.1.3-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Micha Lenk <micha@lenk.info> Wed, 09 Jul 2008 17:59:44 +0200
+
+libchipcard (4.1.2-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Micha Lenk <micha@lenk.info> Sat, 05 Jul 2008 12:21:08 +0200
+
+libchipcard (4.1.1-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Micha Lenk <micha@lenk.info> Wed, 18 Jun 2008 18:31:41 +0200
+
+libchipcard (4.1.0-2) unstable; urgency=low
+
+ * Add udev rule for the new driver of O2Micro Smart Card readers
+ (closes: #486166).
+ * Bump standards version (no changes needed).
+ * Add bug scripts providing the output of command "chipcard-tool list" in
+ bug reports if chipcard-tool is installed.
+ * Remove Georg Leonhard from uploaders. Further contributions are still
+ welcome, but co-responsibility for a package needs more action.
+
+ -- Micha Lenk <micha@lenk.info> Tue, 17 Jun 2008 15:51:28 +0200
+
+libchipcard (4.1.0-1) unstable; urgency=low
+
+ * New upstream release
+ - drop all patches (included upstream) and dpatch.
+ * Make package libchipcard-dev arch:any until wanna-build is able to handle
+ arch:all -dev packages properly.
+
+ -- Micha Lenk <micha@lenk.info> Thu, 29 May 2008 15:07:45 +0200
+
+libchipcard (4.0.0-5) unstable; urgency=low
+
+ * Replace dpkg-statoverride by chown call (closes: #459355).
+ This requires debian/libchipcard-tools.postinst script to handle some
+ situations sensively:
+ - the old statoverrides are removed on upgrades from previous versions
+ - the ownership of the affected directories will only be changed if no
+ corresponding statoverride exists.
+ * Enable dpatch and add following patches:
+ - help-on-stdout_fix_346556: Lets libchipcard-tools output its help on
+ stdout, not stderr (closes: #346556)
+ - cardcommander-exitcode-fix_355114: Lets cardcommander return with zero
+ exitcode upon normal quit (closes: #355114)
+ - cardcommander-segfault-fix_364804: Fixes a segfault on empty input from
+ STDIN (closes: #364804).
+ * change section of package libchipcard-dev from devel to libdevel as
+ suggested by lintian.
+
+ -- Micha Lenk <micha@lenk.info> Mon, 11 Feb 2008 09:35:27 +0100
+
+libchipcard (4.0.0-4) unstable; urgency=low
+
+ * Bump standards version from 3.7.2 to 3.7.3 (no changes needed).
+ * Add Vcs-{Svn,Browser} fields.
+ * Adapt debian/watch file to new download location (closes: #456484).
+ * Add upsteam homepage field.
+
+ -- Micha Lenk <micha@lenk.info> Wed, 2 Jan 2008 18:52:53 +0100
+
+libchipcard (4.0.0-3) unstable; urgency=medium
+
+ * Let the client and server libraries recommend the daemon package
+ libchipcard-tools. Most users installing these libraries want the daemon
+ package too.
+ * Let all library packages depend on libchipcard3-data. Otherwise missing
+ data files can cause segfaults. Thus increased urgency medium.
+
+ -- Micha Lenk <micha@lenk.info> Thu, 29 Nov 2007 20:55:34 +0100
+
+libchipcard (4.0.0-2) unstable; urgency=low
+
+ * Release package to Debian unstable.
+ * Remove invalid option --store-all-certs from DAEMON_ARGS in init script.
+ * Install configuration files to correct location /etc/chipcard/server and
+ /etc/chipcard/client.
+
+ -- Micha Lenk <micha@lenk.info> Mon, 26 Nov 2007 19:25:34 +0100
+
+libchipcard (4.0.0-1) experimental; urgency=low
+
+ * New upstream release
+ * debian/control: Allow uploads by Debian Maintainers of this package
+ * build depend on libgwenhywfar >= 3.0.0-2~, which is the first version
+ shipping without troublesome libgwenhywfar.la (really fixes #451582)
+
+ -- Micha Lenk <micha@lenk.info> Sat, 24 Nov 2007 14:43:08 +0100
+
+libchipcard (3.9.6~beta-1) experimental; urgency=low
+
+ * New upstream release
+ * Tighten build-depends on libgwenhywfar as required by configure
+ * Update debian/copyright to reflect upstream's switch from GPL to LGPL
+ (and add some minor important packaging history)
+
+ -- Micha Lenk <micha@lenk.info> Sun, 4 Nov 2007 20:21:22 +0100
+
+libchipcard (3.9.4~beta-1) experimental; urgency=low
+
+ * New upstream release. This is a complete rewrite of libchipcard, cleaning
+ up the code base and making it fit for future use with SECCOS chipcards.
+ * Rename source package. It's not required any more to be installable in
+ parallel with future versions.
+ * Rename binary packages according to renamed library names and bumped
+ soname.
+
+ -- Micha Lenk <micha@lenk.info> Wed, 31 Oct 2007 22:54:09 +0100
+
+libchipcard3 (3.0.3-1) unstable; urgency=low
+
+ [ Georg W. Leonhardt ]
+ * New upstream release
+ * debian/rules: Add DEB_DH_INSTALL_SOURCEDIR=$(CURDIR)/debian/tmp and
+ clean up the *.install files accordingly.
+ * Adding myself to uploaders
+ * debian/compat: bump debhelper compat to 5, changed behaviour
+ doesn't affect the package.
+
+ [ Micha Lenk ]
+ * Remove conflicts and replace depends to libchipcard3c1 and
+ libchipcard3-1c102: As ftp-master pointed out these packages have never
+ been in the archive, hence these depends are unneccessary.
+
+ -- Micha Lenk <micha@lenk.info> Fri, 10 Aug 2007 01:27:30 +0200
+
+libchipcard3 (3.0.2-5) unstable; urgency=low
+
+ * first upload of libchipcard3 to Debian unstable (closes: #433647)
+ * Add udev rule for O2Micro SmartCardBus Reader device
+ * debian/control:
+ - Introduce a package for every single shared library. This is needed
+ because the sonames apparently don't change consistently. This makes a
+ lintian override file unnecessary as all libraries now match their
+ package names.
+ - switch from deprecated substvar ${Source-Version} to ${source:Version}
+ * debian/rules: add clean target hook deleting symlinks generated during builds.
+
+ -- Micha Lenk <micha@lenk.info> Thu, 19 Jul 2007 17:32:13 +0200
+
+libchipcard3 (3.0.2-4) experimental; urgency=low
+
+ * Fix udev script.
+
+ -- Micha Lenk <micha@lenk.info> Tue, 27 Mar 2007 17:02:09 +0200
+
+libchipcard3 (3.0.2-3) experimental; urgency=low
+
+ * Use my own configuration files as default config files based on upstream's
+ examples. This differs in changing default socket path to
+ /var/run/chipcard3/chipcard3.comm as needed against file ownership issues.
+
+ -- Micha Lenk <micha@lenk.info> Tue, 27 Mar 2007 05:59:34 +0200
+
+libchipcard3 (3.0.2-2) experimental; urgency=low
+
+ * package libchipcard3-1:
+ - drop bogus conflicts/replaces to itself
+ - bump soname of libchipcard3c in libchipcard3-1.shlibs
+ * debian/libchipcard3-tools.dirs:
+ - update to libchipcard3's directory layout
+ * debian/rules:
+ - cleanup file removals in clean target (artefacts of libchipcard2)
+ * install upstream config file examples as default
+ * disable some lintian warnings which have previously been disabled in
+ libchipcard2 too.
+
+ -- Micha Lenk <micha@lenk.info> Tue, 13 Mar 2007 22:21:04 +0100
+
+libchipcard3 (3.0.2-1) experimental; urgency=low
+
+ * New upstream release
+ The new upstream release should be installable parallel to libchipcard2.
+ Thus renamed source package and all binary packages accordingly.
+
+ -- Micha Lenk <micha@lenk.info> Tue, 13 Mar 2007 19:44:19 +0100
+
+libchipcard2 (2.1.9-2) unstable; urgency=high
+
+ * Rewrite udev rules generator to prevent wrong record showing up.
+ In particular this fixes granting permissions to too many devices.
+ (Thus urgency high)
+ - remove MODE statements during the rewrite at Marco d'Itri's
+ suggestion. (Thanks)
+
+ -- Thomas Viehmann <tv@beamnet.de> Wed, 18 Oct 2006 00:01:23 +0200
+
+libchipcard2 (2.1.9-1) unstable; urgency=low
+
+ * New upstream release
+ - PCMCIA scanning is enabled. Closes: #366445, #380062
+ * Include udev rules for rawUSB readers. Closes: #380248
+ Thanks to Seiden Tiger for an ad-hoc script preparing the list.
+ * Document permission problems. in particular with CyberJack and
+ after purging of chipcard-tools from sarge r0 and r1.
+ Closes: #373595, #346527.
+ * Make dependency of -dev package binNMU-safe.
+
+ -- Thomas Viehmann <tv@beamnet.de> Fri, 29 Sep 2006 22:10:04 +0200
+
+libchipcard2 (2.1.7-2) unstable; urgency=low
+
+ * Bump build-depends
+ * Add watch file
+ * New standards version, no changes necessary.
+
+ -- Thomas Viehmann <tv@beamnet.de> Wed, 26 Jul 2006 16:09:09 +0200
+
+libchipcard2 (2.1.7-1) unstable; urgency=low
+
+ * New upstream release
+ - fixes error in PIN input. Closes: #378639
+ * Bump shlibs.
+
+ -- Micha Lenk <micha@lenk.info> Wed, 19 Jul 2006 03:26:13 +0200
+
+libchipcard2 (2.1.6-1) unstable; urgency=low
+
+ [ Thomas Viehmann ]
+ * debian/rules: move DEB_CONFIGURE_EXTRA_FLAGS to where they work.
+
+ [ Micha Lenk ]
+ * New upstream release
+ - supports Debian's libccid. Closes: #355281
+ - fixes bug in CTAPI interface. Closes: #366458
+ * Bump shlibs.
+
+ -- Micha Lenk <micha@lenk.info> Fri, 30 Jun 2006 14:00:32 +0200
+
+libchipcard2 (2.1.4-1) unstable; urgency=low
+
+ * New upstream release
+ - fixes libsysfs2-support
+ - chipcardd2 will run properly without a config section ServiceManager
+ (though it will notice in the logs). Closes: #341105
+ - chipcardd2 addreader --dtype list works again. Closes: #344632
+ * Bump shlibs
+
+ -- Thomas Viehmann <tv@beamnet.de> Fri, 5 May 2006 09:47:19 +0200
+
+libchipcard2 (2.1.3-1) unstable; urgency=low
+
+ * New upstream release
+ - changes for libsysfs2 have been adopted by upstream
+ * Tweaked build-dep on libgwenhywfar as required by configure
+ * Bump shlibs
+
+ -- Micha Lenk <micha@lenk.info> Tue, 28 Mar 2006 19:51:27 +0200
+
+libchipcard2 (1.9.19.99+1.9.20beta-3) unstable; urgency=low
+
+ * Don't install config examples in /etc. Closes: #346558
+ * Fix URL in copyright file. Closes: #354402
+ Thanks to Joerg Sommer the bug reports.
+ * Move to libsysfs2. Closes: #347632
+ * Added closes for new upstream version in -1 (isn't uploaded yet).
+ * Update FSF address.
+
+ -- Thomas Viehmann <tv@beamnet.de> Sun, 26 Feb 2006 13:43:49 +0100
+
+libchipcard2 (1.9.19.99+1.9.20beta-2) unstable; urgency=low
+
+ * Rename package libchipcard2-libgwenhywfar17-plugins to
+ libchipcard2-libgwenhywfar38-plugins due to changed soname of
+ libgwenhywfar.
+ * Adding myself as Co-Maintainer.
+
+ -- Micha Lenk <micha@lenk.info> Sat, 25 Feb 2006 21:22:34 +0100
+
+libchipcard2 (1.9.19.99+1.9.20beta-1) unstable; urgency=low
+
+ * New upstream release. Closes: #350564
+ * Recreate /var/run/chipcard2 in init script if necessary
+ (for tmpfs-mounted /var/run)
+ * Do not delete user on purge
+
+ -- Thomas Viehmann <tv@beamnet.de> Mon, 30 Jan 2006 13:33:35 +0100
+
+libchipcard2 (1.9.15.99+1.9.16alpha-1) unstable; urgency=low
+
+ * New upstream release
+ * Add LSB init script comments
+ * Adjust Priorities in debian/control to reflect the more
+ widespread use
+
+ -- Thomas Viehmann <tv@beamnet.de> Wed, 2 Nov 2005 17:30:35 +0100
+
+libchipcard2 (1.9.14.99+1.9.15beta-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Thomas Viehmann <tv@beamnet.de> Mon, 29 Aug 2005 22:04:13 +0200
+
+libchipcard2 (1.9.13.99+1.9.14beta-1) unstable; urgency=low
+
+ * New upstream release
+ * Added shlibs file
+
+ -- Thomas Viehmann <tv@beamnet.de> Tue, 23 Aug 2005 23:24:15 +0200
+
+libchipcard2 (1.9.12.99+1.9.13beta-1) unstable; urgency=low
+
+ * New upstream release
+ * Added package for the plugins to libgwenhywfar
+ * Policy compliance is at 3.6.2 (no changes)
+ * Added lintian-overrides for irrelevant warnings
+
+ -- Thomas Viehmann <tv@beamnet.de> Sat, 20 Aug 2005 22:19:59 +0200
+
+libchipcard2 (1.9.11.99+1.9.12beta-6) unstable; urgency=low
+
+ * Add Conflicts/Replaces.
+
+ -- Thomas Viehmann <tv@beamnet.de> Thu, 4 Aug 2005 15:18:37 +0200
+
+libchipcard2 (1.9.11.99+1.9.12beta-5) unstable; urgency=low
+
+ * C++-Transition.
+
+ -- Thomas Viehmann <tv@beamnet.de> Tue, 26 Jul 2005 14:14:15 +0200
+
+libchipcard2 (1.9.11.99+1.9.12beta-4) unstable; urgency=low
+
+ * Bump arm build-dependency for libusb to fix arm problem.
+ Thanks to Aurelien Jarno for the detailed instructions in the
+ bug report. Although this is a grave bug, urgency is low because
+ sarge is not concerned, libchipcard2 isn't in sarge.
+ Closes: #308614
+
+ -- Thomas Viehmann <tv@beamnet.de> Thu, 12 May 2005 12:05:09 +0200
+
+libchipcard2 (1.9.11.99+1.9.12beta-3) unstable; urgency=low
+
+ * Fix short description for libchipcard2-0. Thanks to Marcin Orlowski
+ for pointing out the error. Closes: #303858.
+ * Add note about automatic USB reader detection and Linux 2.4 to
+ README.Debian.
+ * Change priority to extra.
+
+ -- Thomas Viehmann <tv@beamnet.de> Wed, 20 Apr 2005 18:31:43 +0200
+
+libchipcard2 (1.9.11.99+1.9.12beta-2) unstable; urgency=low
+
+ * Added README.Debian about relation to libchipcard.
+
+ -- Thomas Viehmann <tv@beamnet.de> Wed, 6 Apr 2005 19:51:39 +0200
+
+libchipcard2 (1.9.11.99+1.9.12beta-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Thomas Viehmann <tv@beamnet.de> Tue, 29 Mar 2005 09:47:42 +0200
+
+libchipcard2 (1.9.10.99+1.9.11beta-1) unstable; urgency=low
+
+ * New upstream release
+ * Added license exception to debian/copyright. Thanks Martin!
+ * Add versioned libgwenhywfar build-dependency.
+
+ -- Thomas Viehmann <tv@beamnet.de> Sat, 19 Mar 2005 14:05:25 +0100
+
+libchipcard2 (1.9.8.99+1.9.9beta-1) unstable; urgency=low
+
+ * New upstream release
+ * Merged chipcard2-server into libchipcard2-tools.
+
+ -- Thomas Viehmann <tv@beamnet.de> Mon, 31 Jan 2005 18:09:28 +0100
+
+libchipcard2 (1.9.6.99+1.9.7beta+cvs.20050125.4-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Thomas Viehmann <tv@beamnet.de> Sat, 29 Jan 2005 23:37:04 +0100
+
+libchipcard2 (1.9.6.99+1.9.7beta+cvs.20050125.3-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Thomas Viehmann <tv@beamnet.de> Sat, 29 Jan 2005 22:42:39 +0100
+
+libchipcard2 (1.9.6.99+1.9.7beta+cvs.20050125.2-2) unstable; urgency=low
+
+ * Did stuff
+
+ -- Thomas Viehmann <tv@beamnet.de> Sat, 29 Jan 2005 21:32:17 +0100
+
+libchipcard2 (1.9.6.99+1.9.7beta+cvs.20050125.2-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Thomas Viehmann <tv@beamnet.de> Sat, 29 Jan 2005 21:14:39 +0100
+
+libchipcard2 (1.9.6.99+1.9.7beta+cvs.20050125-1) unstable; urgency=low
+
+ * CVS Sync.
+
+ -- Thomas Viehmann <tv@beamnet.de> Tue, 25 Jan 2005 16:07:08 +0100
+
+libchipcard2 (1.9.6.99.1.9.7beta+cvs.20050120-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Thomas Viehmann <tv@beamnet.de> Thu, 20 Jan 2005 15:07:05 +0100
+
+libchipcard2 (1.9.6.99.1.9.7beta+cvs.20050112-1) unstable; urgency=low
+
+ * Repackaged after merge.
+
+ -- Thomas Viehmann <tv@beamnet.de> Thu, 13 Jan 2005 18:17:17 +0100
--- libchipcard-4.2.9.orig/debian/etc/chipcardc.conf
+++ libchipcard-4.2.9/debian/etc/chipcardc.conf
@@ -0,0 +1,29 @@
+# $RCSfile$
+# -------------------
+# cvs : $Id: chipcardc.conf.default 426 2007-10-24 13:15:34Z martin $
+# begin : Mon Mar 01 2004
+# copyright : (C) 2004 by Martin Preuss
+# email : martin@libchipcard.de
+#
+# ***************************************************************************
+# * Please see toplevel file COPYING for license details *
+# ***************************************************************************/
+#
+#
+# This file is used by chipcard client programs.
+# Please modify it to your needs and copy it to
+# $PREFIX/etc/chipcard3/client/chipcardc.conf
+#
+
+#char resmgr="lcc"
+
+
+#
+# Settings used for the Libchipcard ressource manager
+#
+server {
+ char typ="local"
+ char addr="/var/run/chipcard/chipcard.comm"
+} # service
+
+
--- libchipcard-4.2.9.orig/debian/etc/chipcardd.conf
+++ libchipcard-4.2.9/debian/etc/chipcardd.conf
@@ -0,0 +1,45 @@
+# $RCSfile$
+# -------------------
+# cvs : $Id: chipcardd.conf.default 381 2007-05-02 09:11:19Z martin $
+# begin : Mon Mar 01 2004
+# copyright : (C) 2004 by Martin Preuss
+# email : martin@libchipcard.de
+#
+# ***************************************************************************
+# * Please see toplevel file COPYING for license details *
+# ***************************************************************************/
+#
+#
+# This file is used by the chipcard daemon.
+# Please modify it to your needs and copy it to
+# $PREFIX/etc/chipcard/server/chipcardd.conf
+#
+# This is an example of a configuration file to be used when there are only
+# USB readers known by Libchipcard2 in your system.
+# Currently these known USB readers are:
+# - Towitoko Chipdrive Pinpad
+# - Reiner SCT Cyberjack
+# - Kobil USB readers
+# and various others.
+#
+# For serial readers (or unknown readers) a driver section is needed.
+
+
+# if this is "0" then the server won't start
+enabled="1"
+
+
+server {
+ # local server, using Unix Domain Sockets which can only be
+ # connected from the very same machine
+ typ="local"
+ addr="/var/run/chipcard/chipcard.comm"
+} # server
+
+DeviceManager {
+ # disable hardware scan. Scan is triggered by udev now
+ # (as of libchipcard 4.2.2-1).
+ hardwareScanInterval="0"
+}
+
+