signer.h

来自「读写Smart卡加解密接口的程序」· C头文件 代码 · 共 36 行

H
36
字号
#ifndef _SIGNER_H#define _SIGNER_H#ifdef HAVE_CONFIG_H#include <config.h>#endif#include <X11/Intrinsic.h>#include <opensc/opensc.h>#include <opensc/pkcs15.h>typedef struct _PluginInstance{    char *signdata;    int signdata_len;    int reader_id;    struct sc_context *ctx;    struct sc_card *card;    struct sc_pkcs15_card *p15card;    const char *pinname;    char *pinbuf;    int pinlen;} PluginInstance;#ifdef __cplusplusextern "C" {#endifint ask_pin_code(PluginInstance *inst);#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?