diff options
| author | Jiří Keresteš <[email protected]> | 2018-07-17 15:11:42 +0000 |
|---|---|---|
| committer | NIIBE Yutaka <[email protected]> | 2018-07-26 02:44:50 +0000 |
| commit | 967d3649d24aba623133808e8d01675dff389fbb (patch) | |
| tree | ba4c59e292972093dc2eedabac149256877702bb /scd/apdu.c | |
| parent | Register DCO for Jiri Kerestes. (diff) | |
| download | gnupg-967d3649d24aba623133808e8d01675dff389fbb.tar.gz gnupg-967d3649d24aba623133808e8d01675dff389fbb.zip | |
scd: Add support for Trustica Cryptoucan.
Diffstat (limited to 'scd/apdu.c')
| -rw-r--r-- | scd/apdu.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scd/apdu.c b/scd/apdu.c index 66a16f820..ce7f41f61 100644 --- a/scd/apdu.c +++ b/scd/apdu.c @@ -965,7 +965,8 @@ pcsc_vendor_specific_init (int slot) else if (strstr (reader_table[slot].rdrname, "cyberJack") || strstr (reader_table[slot].rdrname, "DIGIPASS") || strstr (reader_table[slot].rdrname, "Gnuk") - || strstr (reader_table[slot].rdrname, "KAAN")) + || strstr (reader_table[slot].rdrname, "KAAN") + || strstr (reader_table[slot].rdrname, "Trustica")) reader_table[slot].pinpad_varlen_supported = 1; } @@ -1039,7 +1040,8 @@ pcsc_vendor_specific_init (int slot) else if (vendor == 0x0c4b /* Tested with Reiner cyberJack GO */ || vendor == 0x1a44 /* Tested with Vasco DIGIPASS 920 */ || vendor == 0x234b /* Tested with FSIJ Gnuk Token */ - || vendor == 0x0d46 /* Tested with KAAN Advanced??? */) + || vendor == 0x0d46 /* Tested with KAAN Advanced??? */ + || (vendor == 0x1fc9 && product == 0x81e6) /* Tested with Trustica Cryptoucan */) reader_table[slot].pinpad_varlen_supported = 1; return 0; |
