2003-09-28 15:41:58 +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
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (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
|
|
|
|
* along with this program; if not, write to the Free Software
|
2005-05-31 10:39:18 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
|
|
* USA.
|
2004-10-20 11:39:56 +02:00
|
|
|
*
|
|
|
|
* $Id$
|
2003-09-28 15:41:58 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ISO7816_H
|
|
|
|
#define ISO7816_H
|
|
|
|
|
2003-10-02 12:20:12 +02:00
|
|
|
#if GNUPG_MAJOR_VERSION == 1
|
2003-09-28 15:41:58 +02:00
|
|
|
#include "cardglue.h"
|
2003-10-02 12:20:12 +02:00
|
|
|
#endif
|
2003-09-28 15:41:58 +02:00
|
|
|
|
2004-10-11 10:44:35 +02:00
|
|
|
gpg_error_t iso7816_map_sw (int sw);
|
|
|
|
|
2003-09-28 15:41:58 +02:00
|
|
|
gpg_error_t iso7816_select_application (int slot,
|
|
|
|
const char *aid, size_t aidlen);
|
2004-04-27 10:23:45 +02:00
|
|
|
gpg_error_t iso7816_select_file (int slot, int tag, int is_dir,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
2005-09-07 19:05:42 +02:00
|
|
|
gpg_error_t iso7816_select_path (int slot,
|
|
|
|
const unsigned short *path, size_t pathlen,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
2004-04-27 10:23:45 +02:00
|
|
|
gpg_error_t iso7816_list_directory (int slot, int list_dirs,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
2003-09-28 15:41:58 +02:00
|
|
|
gpg_error_t iso7816_verify (int slot,
|
|
|
|
int chvno, const char *chv, size_t chvlen);
|
|
|
|
gpg_error_t iso7816_change_reference_data (int slot, int chvno,
|
|
|
|
const char *oldchv, size_t oldchvlen,
|
|
|
|
const char *newchv, size_t newchvlen);
|
|
|
|
gpg_error_t iso7816_reset_retry_counter (int slot, int chvno,
|
|
|
|
const char *newchv, size_t newchvlen);
|
|
|
|
gpg_error_t iso7816_get_data (int slot, int tag,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
|
|
|
gpg_error_t iso7816_put_data (int slot, int tag,
|
|
|
|
const unsigned char *data, size_t datalen);
|
2004-04-27 10:23:45 +02:00
|
|
|
gpg_error_t iso7816_manage_security_env (int slot, int p1, int p2,
|
|
|
|
const unsigned char *data,
|
|
|
|
size_t datalen);
|
2003-09-28 15:41:58 +02:00
|
|
|
gpg_error_t iso7816_compute_ds (int slot,
|
|
|
|
const unsigned char *data, size_t datalen,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
|
|
|
gpg_error_t iso7816_decipher (int slot,
|
|
|
|
const unsigned char *data, size_t datalen,
|
2004-04-27 10:23:45 +02:00
|
|
|
int padind,
|
2003-09-28 15:41:58 +02:00
|
|
|
unsigned char **result, size_t *resultlen);
|
|
|
|
gpg_error_t iso7816_internal_authenticate (int slot,
|
|
|
|
const unsigned char *data, size_t datalen,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
|
|
|
gpg_error_t iso7816_generate_keypair (int slot,
|
|
|
|
const unsigned char *data, size_t datalen,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
|
|
|
gpg_error_t iso7816_read_public_key (int slot,
|
|
|
|
const unsigned char *data, size_t datalen,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
|
|
|
gpg_error_t iso7816_get_challenge (int slot,
|
|
|
|
int length, unsigned char *buffer);
|
|
|
|
|
2004-04-27 10:23:45 +02: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,
|
|
|
|
int short_ef,
|
|
|
|
unsigned char **result, size_t *resultlen);
|
2003-09-28 15:41:58 +02:00
|
|
|
|
|
|
|
#endif /*ISO7816_H*/
|