opensc/src/pkcs15init/profile.h

141 lines
3.5 KiB
C
Raw Normal View History

/*
* Card profile information (internal)
*
* Copyright (C) 2002 Olaf Kirch <okir@lst.de>
*/
#ifndef _OPENSC_PROFILE_H
#define _OPENSC_PROFILE_H
#include <openssl/rsa.h>
#include <openssl/dsa.h>
#include <opensc/pkcs15.h>
#ifndef SC_PKCS15_PROFILE_DIRECTORY
#define SC_PKCS15_PROFILE_DIRECTORY "/usr/lib/opensc/profiles"
#endif
#ifndef SC_PKCS15_PROFILE_SUFFIX
#define SC_PKCS15_PROFILE_SUFFIX "profile"
#endif
struct auth_info {
struct auth_info * next;
unsigned int type; /* CHV, AUT, PRO */
unsigned int ref;
size_t key_len;
u8 key[32];
};
struct file_info {
char * ident;
struct file_info * next;
struct sc_file * file;
struct file_info * parent;
/* PKCS15 book-keeping info */
/*
struct {
unsigned int fileno;
unsigned int type;
} pkcs15;
*/
};
/* For now, we assume the PUK always resides
* in the same file as the PIN
*/
struct pin_info {
unsigned int id;
struct pin_info * next;
char * file_name;
unsigned int file_offset;
struct file_info * file;
struct sc_pkcs15_pin_info pin;
};
/* OBSOLESCENT */
struct sc_key_template {
char * ident;
struct sc_key_template *next;
struct sc_file * file;
unsigned int index; /* translates to file offset */
struct sc_acl_entry * key_acl;/* PINs for key usage */
struct sc_pkcs15_object pkcs15_obj;
union {
struct sc_pkcs15_prkey_info priv;
struct sc_pkcs15_pubkey_info pub;
} pkcs15;
};
/* OBSOLESCENT */
struct sc_cert_template {
char * ident;
struct sc_cert_template *next;
struct sc_file * file;
struct sc_pkcs15_object pkcs15_obj;
struct sc_pkcs15_cert_info pkcs15;
};
struct sc_profile {
char * driver;
struct sc_pkcs15init_operations *ops;
struct sc_pkcs15init_callbacks *cbs;
struct file_info * mf_info;
struct file_info * df_info;
struct file_info * ef_list;
struct sc_file * df[SC_PKCS15_DF_TYPE_COUNT];
struct pin_info * pin_list;
struct auth_info * auth_list;
#if 0
struct sc_key_template *prkey_list;
struct sc_key_template *pubkey_list;
struct sc_cert_template *cert_list;
#endif
unsigned int pin_maxlen;
unsigned int pin_minlen;
unsigned int pin_pad_char;
unsigned int pin_encoding;
unsigned int pin_attempts;
unsigned int puk_attempts;
unsigned int rsa_access_flags;
unsigned int dsa_access_flags;
/* PKCS15 information */
struct sc_pkcs15_card * p15_card;
char * p15_label;
char * p15_manufacturer;
char * p15_serial;
};
struct sc_profile *sc_profile_new();
int sc_profile_load(struct sc_profile *, const char *);
int sc_profile_finish(struct sc_profile *);
void sc_profile_free(struct sc_profile *);
int sc_profile_build_pkcs15(struct sc_profile *);
void sc_profile_set_so_pin(struct sc_profile *, const char *);
void sc_profile_set_user_pin(struct sc_profile *, const char *);
void sc_profile_set_secret(struct sc_profile *,
unsigned int, unsigned int, const u8 *, size_t);
int sc_profile_get_secret(struct sc_profile *,
unsigned int, unsigned int, u8 *, size_t *);
void sc_profile_get_pin_info(struct sc_profile *,
unsigned int, struct sc_pkcs15_pin_info *);
int sc_profile_get_pin_id(struct sc_profile *,
unsigned int, unsigned int *);
void sc_profile_set_pin_info(struct sc_profile *,
unsigned int, const struct sc_pkcs15_pin_info *);
int sc_profile_get_file(struct sc_profile *, const char *,
struct sc_file **);
int sc_profile_get_file_by_path(struct sc_profile *,
const struct sc_path *, struct sc_file **);
int sc_profile_get_path(struct sc_profile *,
const char *, struct sc_path *);
#endif /* _OPENSC_PROFILE_H */