Differences From Artifact [c59120c23a]:
- File
cackey.c
— part of check-in
[7cc9fb64cc]
at
2010-05-23 03:42:59
on branch trunk
— Updated to retry if got NOT_TRANSACTED
Fixed issue with retry in APDU transmit (user: rkeene, size: 161569) [annotate] [blame] [check-ins using]
To Artifact [a75c87a979]:
- File cackey.c — part of check-in [ab991c0450] at 2010-05-23 04:00:48 on branch trunk — Removed retry on NOT_TRANSACTED (user: rkeene, size: 161301) [annotate] [blame] [check-ins using]
︙ | |||
156 157 158 159 160 161 162 | 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | + - - + + | #define GSCIS_TAG_CERTIFICATE 0x70 #define GSCIS_TAG_CERT_ISSUE_DATE 0x71 #define GSCIS_TAG_CERT_EXPIRE_DATE 0x72 /** Applet IDs **/ #define GSCIS_AID_CCC 0xA0, 0x00, 0x00, 0x01, 0x16, 0xDB, 0x00 /* Maximum size of data portion of APDUs */ |
︙ | |||
1069 1070 1071 1072 1073 1074 1075 | 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 | - - - - - - | CACKEY_DEBUG_PRINTF("Sending APDU: <<censored>>"); } else { CACKEY_DEBUG_PRINTBUF("Sending APDU:", xmit_buf, xmit_len); } recv_len = sizeof(recv_buf); scard_xmit_ret = SCardTransmit(slot->pcsc_card, SCARD_PCI_T0, xmit_buf, xmit_len, SCARD_PCI_T1, recv_buf, &recv_len); |
︙ |