2003-08-05 19:11:04 +02:00
|
|
|
/* iso7816.h - ISO 7816 commands
|
|
|
|
* Copyright (C) 2003 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-04 21:49:40 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-08-05 19:11:04 +02:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2016-11-05 12:02:19 +01:00
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2003-08-05 19:11:04 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ISO7816_H
|
|
|
|
#define ISO7816_H
|
|
|
|
|
2003-10-02 12:27:34 +02:00
|
|
|
#if GNUPG_MAJOR_VERSION == 1
|
|
|
|
#include "cardglue.h"
|
|
|
|
#endif
|
|
|
|
|
scd: Rename 'keypad' to 'pinpad'.
* NEWS: Mention scd changes.
* agent/divert-scd.c (getpin_cb): Change message.
* agent/call-scd.c (inq_needpin): Change the protocol to
POPUPPINPADPROMPT and DISMISSPINPADPROMPT.
* scd/command.c (pin_cb): Likewise.
* scd/apdu.c (struct reader_table_s): Rename member functions.
(check_pcsc_pinpad, pcsc_pinpad_verify, pcsc_pinpad_modify,
check_ccid_pinpad, ccid_pinpad_operation, apdu_check_pinpad
apdu_pinpad_verify, apdu_pinpad_modify): Rename.
* scd/apdu.h (SW_HOST_NO_PINPAD, apdu_check_pinpad)
(apdu_pinpad_verify, apdu_pinpad_modify): Rename.
* scd/iso7816.h (iso7816_check_pinpad): Rename.
* scd/iso7816.c (map_sw): Use SW_HOST_NO_PINPAD.
(iso7816_check_pinpad): Rename.
(iso7816_verify_kp, iso7816_change_reference_data_kp): Follow
the change.
* scd/ccid-driver.h (CCID_DRIVER_ERR_NO_PINPAD): Rename.
* scd/ccid-driver.c (ccid_transceive_secure): Use it.
* scd/app-dinsig.c (verify_pin): Follow the change.
* scd/app-nks.c (verify_pin): Follow the change.
* scd/app-openpgp.c (check_pinpad_request): Rename.
(parse_login_data, verify_a_chv, verify_chv3, do_change_pin): Follow
the change.
* scd/scdaemon.c (oDisablePinpad, oEnablePinpadVarlen): Rename.
* scd/scdaemon.h (opt): Rename to disable_pinpad,
enable_pinpad_varlen.
* tools/gpgconf-comp.c (gc_options_scdaemon): Rename to
disable-pinpad.
2013-02-07 02:07:51 +01:00
|
|
|
/* Command codes used by iso7816_check_pinpad. */
|
2005-11-28 12:52:25 +01:00
|
|
|
#define ISO7816_VERIFY 0x20
|
|
|
|
#define ISO7816_CHANGE_REFERENCE_DATA 0x24
|
|
|
|
#define ISO7816_RESET_RETRY_COUNTER 0x2C
|
|
|
|
|
|
|
|
|
scd: Rename 'keypad' to 'pinpad'.
* NEWS: Mention scd changes.
* agent/divert-scd.c (getpin_cb): Change message.
* agent/call-scd.c (inq_needpin): Change the protocol to
POPUPPINPADPROMPT and DISMISSPINPADPROMPT.
* scd/command.c (pin_cb): Likewise.
* scd/apdu.c (struct reader_table_s): Rename member functions.
(check_pcsc_pinpad, pcsc_pinpad_verify, pcsc_pinpad_modify,
check_ccid_pinpad, ccid_pinpad_operation, apdu_check_pinpad
apdu_pinpad_verify, apdu_pinpad_modify): Rename.
* scd/apdu.h (SW_HOST_NO_PINPAD, apdu_check_pinpad)
(apdu_pinpad_verify, apdu_pinpad_modify): Rename.
* scd/iso7816.h (iso7816_check_pinpad): Rename.
* scd/iso7816.c (map_sw): Use SW_HOST_NO_PINPAD.
(iso7816_check_pinpad): Rename.
(iso7816_verify_kp, iso7816_change_reference_data_kp): Follow
the change.
* scd/ccid-driver.h (CCID_DRIVER_ERR_NO_PINPAD): Rename.
* scd/ccid-driver.c (ccid_transceive_secure): Use it.
* scd/app-dinsig.c (verify_pin): Follow the change.
* scd/app-nks.c (verify_pin): Follow the change.
* scd/app-openpgp.c (check_pinpad_request): Rename.
(parse_login_data, verify_a_chv, verify_chv3, do_change_pin): Follow
the change.
* scd/scdaemon.c (oDisablePinpad, oEnablePinpadVarlen): Rename.
* scd/scdaemon.h (opt): Rename to disable_pinpad,
enable_pinpad_varlen.
* tools/gpgconf-comp.c (gc_options_scdaemon): Rename to
disable-pinpad.
2013-02-07 02:07:51 +01:00
|
|
|
/* Information to be passed to pinpad equipped readers. See
|
2005-11-28 12:52:25 +01:00
|
|
|
ccid-driver.c for details. */
|
SCD: API cleanup for keypad handling.
* scd/iso7816.h (struct pininfo_s): Rename from iso7816_pininfo_s.
Change meaning of MODE.
(pininfo_t): Rename from iso7816_pininfo_t.
* scd/sc-copykeys.c: Include "iso7816.h".
* scd/scdaemon.c, scd/command.c: Likewise.
* scd/ccid-driver.c: Include "scdaemon.h" and "iso7816.h".
(ccid_transceive_secure): Follow the change of PININFO_T.
* scd/app.c: Include "apdu.h" after "iso7816.h".
* scd/iso7816.c (iso7816_check_keypad, iso7816_verify_kp)
(iso7816_change_reference_data_kp): Follow the change of API.
* scd/apdu.c (struct reader_table_s): Change API of CHECK_KEYPAD,
KEYPAD_VERIFY, KEYPAD_MODIFY to have arg of PININFO_T.
(check_pcsc_keypad, check_ccid_keypad): Likewise.
(apdu_check_keypad, apdu_keypad_verify, apdu_keypad_modify): Likewise.
(pcsc_keypad_verify, pcsc_keypad_modify, ct_send_apdu)
(pcsc_send_apdu_direct, pcsc_send_apdu_wrapped, pcsc_send_apdu)
(send_apdu_ccid, ccid_keypad_operation, my_rapdu_send_apdu, send_apdu)
(send_le): Follow the change of API.
* scd/apdu.h (apdu_check_keypad, apdu_keypad_verify)
(apdu_keypad_modify): Change the API.
* scd/app-dinsig.c, scd/app-nks.c, scd/app-openpgp.c: Follow the
change.
2013-01-09 06:10:08 +01:00
|
|
|
struct pininfo_s
|
2005-11-28 12:52:25 +01:00
|
|
|
{
|
2013-01-09 08:23:55 +01:00
|
|
|
int fixedlen; /*
|
|
|
|
* -1: Variable length input is not supported,
|
|
|
|
* no information of fixed length yet.
|
|
|
|
* 0: Use variable length input.
|
|
|
|
* >0: Fixed length of PIN.
|
|
|
|
*/
|
2005-11-28 12:52:25 +01:00
|
|
|
int minlen;
|
|
|
|
int maxlen;
|
|
|
|
};
|
SCD: API cleanup for keypad handling.
* scd/iso7816.h (struct pininfo_s): Rename from iso7816_pininfo_s.
Change meaning of MODE.
(pininfo_t): Rename from iso7816_pininfo_t.
* scd/sc-copykeys.c: Include "iso7816.h".
* scd/scdaemon.c, scd/command.c: Likewise.
* scd/ccid-driver.c: Include "scdaemon.h" and "iso7816.h".
(ccid_transceive_secure): Follow the change of PININFO_T.
* scd/app.c: Include "apdu.h" after "iso7816.h".
* scd/iso7816.c (iso7816_check_keypad, iso7816_verify_kp)
(iso7816_change_reference_data_kp): Follow the change of API.
* scd/apdu.c (struct reader_table_s): Change API of CHECK_KEYPAD,
KEYPAD_VERIFY, KEYPAD_MODIFY to have arg of PININFO_T.
(check_pcsc_keypad, check_ccid_keypad): Likewise.
(apdu_check_keypad, apdu_keypad_verify, apdu_keypad_modify): Likewise.
(pcsc_keypad_verify, pcsc_keypad_modify, ct_send_apdu)
(pcsc_send_apdu_direct, pcsc_send_apdu_wrapped, pcsc_send_apdu)
(send_apdu_ccid, ccid_keypad_operation, my_rapdu_send_apdu, send_apdu)
(send_le): Follow the change of API.
* scd/apdu.h (apdu_check_keypad, apdu_keypad_verify)
(apdu_keypad_modify): Change the API.
* scd/app-dinsig.c, scd/app-nks.c, scd/app-openpgp.c: Follow the
change.
2013-01-09 06:10:08 +01:00
|
|
|
typedef struct pininfo_s pininfo_t;
|
2005-11-28 12:52:25 +01:00
|
|
|
|
|
|
|
|
2004-10-14 11:12:36 +02:00
|
|
|
gpg_error_t iso7816_map_sw (int sw);
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
gpg_error_t iso7816_select_application (int slot,
|
2005-11-28 12:52:25 +01:00
|
|
|
const char *aid, size_t aidlen,
|
|
|
|
unsigned int flags);
|
2019-01-03 15:18:15 +01:00
|
|
|
gpg_error_t iso7816_select_application_ext (int slot,
|
|
|
|
const char *aid, size_t aidlen,
|
|
|
|
unsigned int flags,
|
|
|
|
unsigned char **result,
|
|
|
|
size_t *resultlen);
|
2017-03-06 05:39:46 +01:00
|
|
|
gpg_error_t iso7816_select_file (int slot, int tag, int is_dir);
|
2005-09-05 16:36:36 +02:00
|
|
|
gpg_error_t iso7816_select_path (int slot,
|
2017-03-06 05:39:46 +01:00
|
|
|
const unsigned short *path, size_t pathlen);
|
2004-01-27 17:40:42 +01:00
|
|
|
gpg_error_t iso7816_list_directory (int slot, int list_dirs,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
2019-03-05 15:49:20 +01:00
|
|
|
gpg_error_t iso7816_send_apdu (int slot, int extended_mode,
|
|
|
|
int class, int ins, int p0, int p1,
|
|
|
|
int lc, const void *data,
|
|
|
|
unsigned int *r_sw,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
2009-01-08 20:56:30 +01:00
|
|
|
gpg_error_t iso7816_apdu_direct (int slot,
|
2011-02-04 12:57:53 +01:00
|
|
|
const void *apdudata, size_t apdudatalen,
|
2019-01-20 11:41:23 +01:00
|
|
|
int handle_more, unsigned int *r_sw,
|
2009-01-08 20:56:30 +01:00
|
|
|
unsigned char **result, size_t *resultlen);
|
scd: Rename 'keypad' to 'pinpad'.
* NEWS: Mention scd changes.
* agent/divert-scd.c (getpin_cb): Change message.
* agent/call-scd.c (inq_needpin): Change the protocol to
POPUPPINPADPROMPT and DISMISSPINPADPROMPT.
* scd/command.c (pin_cb): Likewise.
* scd/apdu.c (struct reader_table_s): Rename member functions.
(check_pcsc_pinpad, pcsc_pinpad_verify, pcsc_pinpad_modify,
check_ccid_pinpad, ccid_pinpad_operation, apdu_check_pinpad
apdu_pinpad_verify, apdu_pinpad_modify): Rename.
* scd/apdu.h (SW_HOST_NO_PINPAD, apdu_check_pinpad)
(apdu_pinpad_verify, apdu_pinpad_modify): Rename.
* scd/iso7816.h (iso7816_check_pinpad): Rename.
* scd/iso7816.c (map_sw): Use SW_HOST_NO_PINPAD.
(iso7816_check_pinpad): Rename.
(iso7816_verify_kp, iso7816_change_reference_data_kp): Follow
the change.
* scd/ccid-driver.h (CCID_DRIVER_ERR_NO_PINPAD): Rename.
* scd/ccid-driver.c (ccid_transceive_secure): Use it.
* scd/app-dinsig.c (verify_pin): Follow the change.
* scd/app-nks.c (verify_pin): Follow the change.
* scd/app-openpgp.c (check_pinpad_request): Rename.
(parse_login_data, verify_a_chv, verify_chv3, do_change_pin): Follow
the change.
* scd/scdaemon.c (oDisablePinpad, oEnablePinpadVarlen): Rename.
* scd/scdaemon.h (opt): Rename to disable_pinpad,
enable_pinpad_varlen.
* tools/gpgconf-comp.c (gc_options_scdaemon): Rename to
disable-pinpad.
2013-02-07 02:07:51 +01:00
|
|
|
gpg_error_t iso7816_check_pinpad (int slot, int command,
|
SCD: API cleanup for keypad handling.
* scd/iso7816.h (struct pininfo_s): Rename from iso7816_pininfo_s.
Change meaning of MODE.
(pininfo_t): Rename from iso7816_pininfo_t.
* scd/sc-copykeys.c: Include "iso7816.h".
* scd/scdaemon.c, scd/command.c: Likewise.
* scd/ccid-driver.c: Include "scdaemon.h" and "iso7816.h".
(ccid_transceive_secure): Follow the change of PININFO_T.
* scd/app.c: Include "apdu.h" after "iso7816.h".
* scd/iso7816.c (iso7816_check_keypad, iso7816_verify_kp)
(iso7816_change_reference_data_kp): Follow the change of API.
* scd/apdu.c (struct reader_table_s): Change API of CHECK_KEYPAD,
KEYPAD_VERIFY, KEYPAD_MODIFY to have arg of PININFO_T.
(check_pcsc_keypad, check_ccid_keypad): Likewise.
(apdu_check_keypad, apdu_keypad_verify, apdu_keypad_modify): Likewise.
(pcsc_keypad_verify, pcsc_keypad_modify, ct_send_apdu)
(pcsc_send_apdu_direct, pcsc_send_apdu_wrapped, pcsc_send_apdu)
(send_apdu_ccid, ccid_keypad_operation, my_rapdu_send_apdu, send_apdu)
(send_le): Follow the change of API.
* scd/apdu.h (apdu_check_keypad, apdu_keypad_verify)
(apdu_keypad_modify): Change the API.
* scd/app-dinsig.c, scd/app-nks.c, scd/app-openpgp.c: Follow the
change.
2013-01-09 06:10:08 +01:00
|
|
|
pininfo_t *pininfo);
|
2003-08-05 19:11:04 +02:00
|
|
|
gpg_error_t iso7816_verify (int slot,
|
|
|
|
int chvno, const char *chv, size_t chvlen);
|
SCD: API cleanup for keypad handling.
* scd/iso7816.h (struct pininfo_s): Rename from iso7816_pininfo_s.
Change meaning of MODE.
(pininfo_t): Rename from iso7816_pininfo_t.
* scd/sc-copykeys.c: Include "iso7816.h".
* scd/scdaemon.c, scd/command.c: Likewise.
* scd/ccid-driver.c: Include "scdaemon.h" and "iso7816.h".
(ccid_transceive_secure): Follow the change of PININFO_T.
* scd/app.c: Include "apdu.h" after "iso7816.h".
* scd/iso7816.c (iso7816_check_keypad, iso7816_verify_kp)
(iso7816_change_reference_data_kp): Follow the change of API.
* scd/apdu.c (struct reader_table_s): Change API of CHECK_KEYPAD,
KEYPAD_VERIFY, KEYPAD_MODIFY to have arg of PININFO_T.
(check_pcsc_keypad, check_ccid_keypad): Likewise.
(apdu_check_keypad, apdu_keypad_verify, apdu_keypad_modify): Likewise.
(pcsc_keypad_verify, pcsc_keypad_modify, ct_send_apdu)
(pcsc_send_apdu_direct, pcsc_send_apdu_wrapped, pcsc_send_apdu)
(send_apdu_ccid, ccid_keypad_operation, my_rapdu_send_apdu, send_apdu)
(send_le): Follow the change of API.
* scd/apdu.h (apdu_check_keypad, apdu_keypad_verify)
(apdu_keypad_modify): Change the API.
* scd/app-dinsig.c, scd/app-nks.c, scd/app-openpgp.c: Follow the
change.
2013-01-09 06:10:08 +01:00
|
|
|
gpg_error_t iso7816_verify_kp (int slot, int chvno, pininfo_t *pininfo);
|
2003-08-05 19:11:04 +02:00
|
|
|
gpg_error_t iso7816_change_reference_data (int slot, int chvno,
|
|
|
|
const char *oldchv, size_t oldchvlen,
|
|
|
|
const char *newchv, size_t newchvlen);
|
2005-11-28 12:52:25 +01:00
|
|
|
gpg_error_t iso7816_change_reference_data_kp (int slot, int chvno,
|
2017-03-06 05:39:46 +01:00
|
|
|
int is_exchange,
|
SCD: API cleanup for keypad handling.
* scd/iso7816.h (struct pininfo_s): Rename from iso7816_pininfo_s.
Change meaning of MODE.
(pininfo_t): Rename from iso7816_pininfo_t.
* scd/sc-copykeys.c: Include "iso7816.h".
* scd/scdaemon.c, scd/command.c: Likewise.
* scd/ccid-driver.c: Include "scdaemon.h" and "iso7816.h".
(ccid_transceive_secure): Follow the change of PININFO_T.
* scd/app.c: Include "apdu.h" after "iso7816.h".
* scd/iso7816.c (iso7816_check_keypad, iso7816_verify_kp)
(iso7816_change_reference_data_kp): Follow the change of API.
* scd/apdu.c (struct reader_table_s): Change API of CHECK_KEYPAD,
KEYPAD_VERIFY, KEYPAD_MODIFY to have arg of PININFO_T.
(check_pcsc_keypad, check_ccid_keypad): Likewise.
(apdu_check_keypad, apdu_keypad_verify, apdu_keypad_modify): Likewise.
(pcsc_keypad_verify, pcsc_keypad_modify, ct_send_apdu)
(pcsc_send_apdu_direct, pcsc_send_apdu_wrapped, pcsc_send_apdu)
(send_apdu_ccid, ccid_keypad_operation, my_rapdu_send_apdu, send_apdu)
(send_le): Follow the change of API.
* scd/apdu.h (apdu_check_keypad, apdu_keypad_verify)
(apdu_keypad_modify): Change the API.
* scd/app-dinsig.c, scd/app-nks.c, scd/app-openpgp.c: Follow the
change.
2013-01-09 06:10:08 +01:00
|
|
|
pininfo_t *pininfo);
|
2003-08-05 19:11:04 +02:00
|
|
|
gpg_error_t iso7816_reset_retry_counter (int slot, int chvno,
|
|
|
|
const char *newchv, size_t newchvlen);
|
2008-09-25 12:06:02 +02:00
|
|
|
gpg_error_t iso7816_reset_retry_counter_with_rc (int slot, int chvno,
|
|
|
|
const char *data,
|
|
|
|
size_t datalen);
|
2009-06-17 11:45:50 +02:00
|
|
|
gpg_error_t iso7816_get_data (int slot, int extended_mode, int tag,
|
2003-08-05 19:11:04 +02:00
|
|
|
unsigned char **result, size_t *resultlen);
|
2019-01-03 15:18:15 +01:00
|
|
|
gpg_error_t iso7816_get_data_odd (int slot, int extended_mode, unsigned int tag,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
2008-09-23 11:57:45 +02:00
|
|
|
gpg_error_t iso7816_put_data (int slot, int extended_mode, int tag,
|
2009-09-03 12:57:23 +02:00
|
|
|
const void *data, size_t datalen);
|
2008-09-25 12:06:02 +02:00
|
|
|
gpg_error_t iso7816_put_data_odd (int slot, int extended_mode, int tag,
|
2009-09-03 12:57:23 +02:00
|
|
|
const void *data, size_t datalen);
|
2004-01-28 17:21:57 +01:00
|
|
|
gpg_error_t iso7816_manage_security_env (int slot, int p1, int p2,
|
|
|
|
const unsigned char *data,
|
|
|
|
size_t datalen);
|
2009-07-10 12:15:33 +02:00
|
|
|
gpg_error_t iso7816_compute_ds (int slot, int extended_mode,
|
2003-08-05 19:11:04 +02:00
|
|
|
const unsigned char *data, size_t datalen,
|
2009-07-10 12:15:33 +02:00
|
|
|
int le,
|
2003-08-05 19:11:04 +02:00
|
|
|
unsigned char **result, size_t *resultlen);
|
2009-03-30 14:46:06 +02:00
|
|
|
gpg_error_t iso7816_decipher (int slot, int extended_mode,
|
2003-08-05 19:11:04 +02:00
|
|
|
const unsigned char *data, size_t datalen,
|
2009-09-03 12:57:23 +02:00
|
|
|
int le, int padind,
|
2003-08-05 19:11:04 +02:00
|
|
|
unsigned char **result, size_t *resultlen);
|
2009-07-10 12:15:33 +02:00
|
|
|
gpg_error_t iso7816_internal_authenticate (int slot, int extended_mode,
|
2003-08-05 19:11:04 +02:00
|
|
|
const unsigned char *data, size_t datalen,
|
2009-07-10 12:15:33 +02:00
|
|
|
int le,
|
2003-08-05 19:11:04 +02:00
|
|
|
unsigned char **result, size_t *resultlen);
|
2019-01-20 11:41:23 +01:00
|
|
|
gpg_error_t iso7816_general_authenticate (int slot, int extended_mode,
|
|
|
|
int algoref, int keyref,
|
|
|
|
const unsigned char *data,
|
|
|
|
size_t datalen,
|
|
|
|
int le,
|
|
|
|
unsigned char **result,
|
|
|
|
size_t *resultlen);
|
2009-05-08 17:07:45 +02:00
|
|
|
gpg_error_t iso7816_generate_keypair (int slot, int extended_mode,
|
2019-02-06 14:07:42 +01:00
|
|
|
int p1, int p2,
|
|
|
|
const char *data, size_t datalen,
|
|
|
|
int le,
|
|
|
|
unsigned char **result,
|
|
|
|
size_t *resultlen);
|
2009-05-08 17:07:45 +02:00
|
|
|
gpg_error_t iso7816_read_public_key (int slot, int extended_mode,
|
2016-10-18 13:40:09 +02:00
|
|
|
const char *data, size_t datalen,
|
2009-05-08 17:07:45 +02:00
|
|
|
int le,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
2003-08-05 19:11:04 +02:00
|
|
|
gpg_error_t iso7816_get_challenge (int slot,
|
|
|
|
int length, unsigned char *buffer);
|
|
|
|
|
2004-01-27 17:40:42 +01:00
|
|
|
gpg_error_t iso7816_read_binary (int slot, size_t offset, size_t nmax,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
|
|
|
gpg_error_t iso7816_read_record (int slot, int recno, int reccount,
|
2004-03-16 11:49:37 +01:00
|
|
|
int short_ef,
|
2004-01-27 17:40:42 +01:00
|
|
|
unsigned char **result, size_t *resultlen);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
#endif /*ISO7816_H*/
|