Changeset 3502 for trunk/src/libopensc/card-akis.c
- Timestamp:
- 04/28/08 09:57:03 (7 months ago)
- Files:
-
- 1 modified
-
trunk/src/libopensc/card-akis.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libopensc/card-akis.c
r3278 r3502 336 336 { 337 337 if (data->cmd == SC_PIN_CMD_VERIFY) { 338 / / ISO7816 implementation works338 /* ISO7816 implementation works */ 339 339 return iso_ops->pin_cmd(card, data, tries_left); 340 340 } 341 341 342 342 if (data->cmd == SC_PIN_CMD_CHANGE) { 343 / / This is AKIS specific343 /* This is AKIS specific */ 344 344 int r; 345 345 sc_apdu_t apdu; … … 527 527 akis_ops.match_card = akis_match_card; 528 528 akis_ops.init = akis_init; 529 / / read_binary: ISO7816 implementation works530 / / write_binary: ISO7816 implementation works531 / / update_binary: ISO7816 implementation works532 / / erase_binary: Untested533 / / read_record: Untested534 / / write_record: Untested535 / / append_record: Untested536 / / update_record: Untested529 /* read_binary: ISO7816 implementation works */ 530 /* write_binary: ISO7816 implementation works */ 531 /* update_binary: ISO7816 implementation works */ 532 /* erase_binary: Untested */ 533 /* read_record: Untested */ 534 /* write_record: Untested */ 535 /* append_record: Untested */ 536 /* update_record: Untested */ 537 537 akis_ops.select_file = akis_select_file; 538 / / get_response: ISO7816 implementation works539 / / get_challenge: ISO7816 implementation works538 /* get_response: ISO7816 implementation works */ 539 /* get_challenge: ISO7816 implementation works */ 540 540 akis_ops.logout = akis_logout; 541 / / restore_security_env: Untested541 /* restore_security_env: Untested */ 542 542 akis_ops.set_security_env = akis_set_security_env; 543 / / decipher: Untested544 / / compute_signature: ISO7816 implementation works543 /* decipher: Untested */ 544 /* compute_signature: ISO7816 implementation works */ 545 545 akis_ops.create_file = akis_create_file; 546 546 akis_ops.delete_file = akis_delete_file; 547 547 akis_ops.list_files = akis_list_files; 548 / / check_sw: ISO7816 implementation works548 /* check_sw: ISO7816 implementation works */ 549 549 akis_ops.card_ctl = akis_card_ctl; 550 550 akis_ops.process_fci = akis_process_fci; 551 / / construct_fci: Not needed551 /* construct_fci: Not needed */ 552 552 akis_ops.pin_cmd = akis_pin_cmd; 553 553 akis_ops.get_data = akis_get_data; 554 / / put_data: Not implemented555 / / delete_record: Not implemented554 /* put_data: Not implemented */ 555 /* delete_record: Not implemented */ 556 556 557 557 return &akis_drv;
