blob: 7b07b8343597aeaba3c5896d30f633969cac5109 [file] [log] [blame]
Harald Welted54c2ee2012-01-17 18:25:50 +01001#ifndef _SIM_INT_H
2
3#include <osmocom/sim/sim.h>
4
5struct osim_decoded_element *
6element_alloc(struct osim_decoded_data *dd, const char *name,
7 enum osim_element_type type, enum osim_element_repr repr);
8
9struct osim_decoded_element *
10element_alloc_sub(struct osim_decoded_element *ee, const char *name,
11 enum osim_element_type type, enum osim_element_repr repr);
12
13extern const struct osim_card_sw ts102221_uicc_sw[0];
14
Harald Welte30115db2014-05-04 16:30:46 +020015int default_decode(struct osim_decoded_data *dd,
16 const struct osim_file_desc *desc,
17 int len, uint8_t *data);
Harald Welted54c2ee2012-01-17 18:25:50 +010018
19void add_filedesc(struct osim_file_desc *root, const struct osim_file_desc *in, int num);
20struct osim_file_desc *alloc_df(void *ctx, uint16_t fid, const char *name);
21struct osim_file_desc *
22add_df_with_ef(struct osim_file_desc *parent,
23 uint16_t fid, const char *name,
24 const struct osim_file_desc *in, int num);
25
26struct osim_file_desc *
27add_adf_with_ef(struct osim_file_desc *parent,
28 const uint8_t *adf_name, uint8_t adf_name_len,
29 const char *name, const struct osim_file_desc *in,
30 int num);
31
Holger Hans Peter Freytherc2b44582015-04-11 19:31:03 +020032extern const struct osim_reader_ops pcsc_reader_ops;
Harald Welted54c2ee2012-01-17 18:25:50 +010033
34#endif