/** * cwa-dnie.h: CWA specifics for DNIe * * This work is derived from many sources at OpenSC Project site, * (see references), and the information made public for Spanish * Direccion General de la Policia y de la Guardia Civil * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __CWADNIE_H__ #define __CWADNIE_H__ #if defined(ENABLE_OPENSSL) && defined(ENABLE_SM) #include "libopensc/opensc.h" #ifdef ENABLE_DNIE_UI /** * To handle user interface routines */ typedef struct ui_context { int user_consent_enabled; char *user_consent_app; } ui_context_t; #endif struct cwa_provider_st; /** * Structs for the channel configuration data. */ typedef struct dnie_buffer { u8 *value; size_t len; } dnie_buffer_t; typedef struct dnie_public_key { dnie_buffer_t modulus; dnie_buffer_t exponent; } dnie_public_key_t; typedef struct dnie_private_key { dnie_buffer_t modulus; dnie_buffer_t exponent; dnie_buffer_t private; } dnie_private_key_t; typedef struct dnie_channel_data { dnie_public_key_t icc_root_ca; dnie_private_key_t ifd; dnie_private_key_t ifd_pin; dnie_buffer_t C_CV_CA_CS_AUT_cert; dnie_buffer_t C_CV_IFDUser_AUT_cert; dnie_buffer_t C_CV_IFDUser_AUT_pin_cert; dnie_buffer_t root_ca_keyref; dnie_buffer_t icc_priv_keyref; dnie_buffer_t cvc_intca_keyref; dnie_buffer_t cvc_ifd_keyref; dnie_buffer_t cvc_ifd_keyref_pin; dnie_buffer_t sn_ifd; dnie_buffer_t sn_ifd_pin; } dnie_channel_data_t; /** * OpenDNIe private data declaration * * Defines internal data used in OpenDNIe code */ typedef struct dnie_private_data_st { /* sc_serial_number_t *serialnumber; < Cached copy of card serial number NOT USED AT THE MOMENT */ int rsa_key_ref; /**< Key id reference being used in sec operation */ u8 *cache; /**< Cache buffer for read_binary() operation */ size_t cachelen; /**< length of cache buffer */ struct cwa_provider_st *cwa_provider; #ifdef ENABLE_DNIE_UI struct ui_context ui_ctx; #endif dnie_channel_data_t *channel_data; /* Configuration data for the secure channel */ } dnie_private_data_t; /** * DNIe Card Driver private data */ #define GET_DNIE_PRIV_DATA(card) ((dnie_private_data_t *) ((card)->drv_data)) #define GET_DNIE_UI_CTX(card) (((dnie_private_data_t *) ((card)->drv_data))->ui_ctx) #define DNIE_30_VERSION 0x04 #define DNIE_30_CACHE_COUNTER 30000 cwa_provider_t *dnie_get_cwa_provider(sc_card_t * card); void dnie_change_cwa_provider_to_pin(sc_card_t * card); void dnie_change_cwa_provider_to_secure(sc_card_t * card); void dnie_format_apdu(sc_card_t *card, sc_apdu_t *apdu, int cse, int ins, int p1, int p2, int le, int lc, unsigned char * resp, size_t resplen, const unsigned char * data, size_t datalen); #endif #endif