source: trunk/etc/openct.conf.in @ 1173

Revision 1173, 3.1 KB checked in by s, 3 years ago (diff)

add uaToken S

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1# Set debug level
2debug   = 0;
3#
4# Enable hot plugging
5hotplug = yes;
6
7#
8# Path to ifdhandler
9ifdhandler {
10        program         = @sbindir@/ifdhandler;
11        #
12        # Safe to disable force_poll:
13        #  >=linux-2.6.27.14
14        #  >=linux-2.6.28.3
15        #
16        force_poll      = 1;
17@ENABLE_NON_PRIVILEGED@ user            = @daemon_user@;
18@ENABLE_NON_PRIVILEGED@ groups = {
19@ENABLE_NON_PRIVILEGED@         @daemon_groups@,
20@ENABLE_NON_PRIVILEGED@ };
21};
22
23#
24# Configuration for ifdproxy (if you use it)
25ifdproxy {
26#       server-port     = @OPENCT_SOCKET_PATH@/.ifdproxy,
27#       device-port     = :6666;
28};
29
30# Configure static, non-hotplug aware readers here
31#
32# For a list of drivers try command 'ifdhandler -i', please
33# notice that not all drivers have serial device capability.
34
35#reader towitoko {
36#       driver = towitoko;
37#       device = serial:/dev/ttyS0;
38#};
39
40#reader gempc {
41#       driver = gempc;
42#       device = serial:/dev/ttyS0;
43#};
44
45#reader cm4000 {
46#       driver = cm4000;
47#       device = pcmcia:/dev/cmm0;
48#};
49
50#reader cm4040 {
51#       driver = ccid;
52#       device = pcmcia_block:/dev/cmx0;
53#};
54
55#reader pertosmart1030 {
56#       driver = pertosmart1030;
57#       device = serial:/dev/ttyS0;
58#};
59
60#
61# Hotplug IDs
62driver  egate {
63        ids = {
64                usb:0973/0001,
65        };
66};
67
68driver  ePass3000 {
69        ids = {
70                usb:096e/0401,
71        };
72};
73
74driver  etoken {
75        ids = {
76                usb:0529/050c,
77                usb:0529/0514,
78        };
79};
80driver  etoken64 {
81        ids = {
82                usb:0529/0600,
83                usb:0529/0700,
84        };
85};
86driver  eutron {
87        ids = {
88                usb:073d/0005,
89        };
90};
91driver  ikey2k {
92        ids = {
93                usb:04b9/1202,
94        };
95};
96driver  ikey3k {
97        ids = {
98                usb:04b9/1300,
99        };
100};
101driver  starkey {
102        ids = {
103                usb:096e/0005,
104        };
105};
106driver  cardman {
107        ids = {
108#               usb:076b/0596, # OMNIKEY CardMan 2020
109#               usb:076b/1784, # OMNIKEY CardMan 6020
110#               usb:08d4/0009, # Fujitsu Siemens SCR USB Reader
111        };
112};
113driver  ccid {
114        ids = {
115                usb:03f0/1024,  # HP Keyboard with CCID reader
116                usb:046a/0010,  # Cherry smartboard G83-6744
117                usb:04e6/5115,
118                usb:04e6/5116,
119                usb:04e6/5117,  # SCM Micro token size reader
120                usb:04e6/511d,  # SCM Micro SCR3311
121                usb:04e6/E001,
122                usb:04e6/E003,
123                usb:073d/0c00,  # Eutron SimPocket (doesn't work yet)
124                usb:076b/1021,  # OmniKey CardMan 1021
125                usb:076b/3021,
126                usb:076b/5121,
127                usb:076b/5321,  # OmniKey CardMan 5321
128                usb:076b/6622,  # OmniKey CardMan 6121
129                usb:0783/0003,
130                usb:08e6/3437,  # Gemplus
131                usb:08e6/3438,  # Gemplus GemPC Key SmartCard Reader
132                usb:08e6/4433,  # Gemplus
133                usb:0b97/7762,  # O2 Micro, Inc. Oz776 SmartCard Reader
134                usb:0b97/7772,  # O2 Micro, Inc. Oz776 SmartCard Reader
135                usb:0bf8/1006,  # fujitsu siemens 3.5" drive size reader
136                usb:0dc3/1004,  # Athena Smartcard Solutions, Inc. ASEKey
137                usb:0a89/0030,  # Aktiv Rutoken ECP
138        };
139};
140driver pertosmart1030 {
141        ids = {
142                usb:072f/0001,
143                usb:072f/8009,
144        };
145};
146driver pertosmart1038 {
147        ids = {
148                usb:072f/9000,
149                usb:072f/9006, # ACS CryptoMate Token
150                usb:072f/9007, # ACS ACR 100 SIMFlash
151                usb:072f/90d0,
152        };
153};
154#driver wbeiuu {        #       driver not working yet
155#       ids = {
156#               usb:104f/0004,
157#       };
158#};
159
160# Tested with USBID 0c4b:0100. These are red readers: one with LCD,
161# another one without.
162driver cyberjack {
163        ids = {
164                usb:0c4b/0100,
165        };
166};
167driver rutoken {
168        ids = {
169                usb:0a89/0020, # Aktiv Rutoken S
170                usb:0a89/0012, # Aktiv uaToken S
171        };
172};
Note: See TracBrowser for help on using the repository browser.