亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? pkcs11.h

?? Unix_Linux下的CSP源碼
?? H
字號:
/* pkcs11.h include file for PKCS #11.  2001 June 25 */#ifndef _PKCS11_H_#define _PKCS11_H_ 1#ifdef __cplusplusextern "C" {#endif/* Before including this file (pkcs11.h) (or pkcs11t.h by * itself), 6 platform-specific macros must be defined.  These * macros are described below, and typical definitions for them * are also given.  Be advised that these definitions can depend * on both the platform and the compiler used (and possibly also * on whether a Cryptoki library is linked statically or * dynamically). * * In addition to defining these 6 macros, the packing convention * for Cryptoki structures should be set.  The Cryptoki * convention on packing is that structures should be 1-byte * aligned. * * If you're using Microsoft Developer Studio 5.0 to produce * Win32 stuff, this might be done by using the following * preprocessor directive before including pkcs11.h or pkcs11t.h: * * #pragma pack(push, cryptoki, 1) * * and using the following preprocessor directive after including * pkcs11.h or pkcs11t.h: * * #pragma pack(pop, cryptoki) * * If you're using an earlier version of Microsoft Developer * Studio to produce Win16 stuff, this might be done by using * the following preprocessor directive before including * pkcs11.h or pkcs11t.h: * * #pragma pack(1) * * In a UNIX environment, you're on your own for this.  You might * not need to do (or be able to do!) anything. * * * Now for the macros: * * * 1. CK_PTR: The indirection string for making a pointer to an * object.  It can be used like this: * * typedef CK_BYTE CK_PTR CK_BYTE_PTR; * * If you're using Microsoft Developer Studio 5.0 to produce * Win32 stuff, it might be defined by: * * #define CK_PTR * * * If you're using an earlier version of Microsoft Developer * Studio to produce Win16 stuff, it might be defined by: * * #define CK_PTR far * * * In a typical UNIX environment, it might be defined by: * * #define CK_PTR * * * * 2. CK_DEFINE_FUNCTION(returnType, name): A macro which makes * an exportable Cryptoki library function definition out of a * return type and a function name.  It should be used in the * following fashion to define the exposed Cryptoki functions in * a Cryptoki library: * * CK_DEFINE_FUNCTION(CK_RV, C_Initialize)( *   CK_VOID_PTR pReserved * ) * { *   ... * } * * If you're using Microsoft Developer Studio 5.0 to define a * function in a Win32 Cryptoki .dll, it might be defined by: * * #define CK_DEFINE_FUNCTION(returnType, name) \ *   returnType __declspec(dllexport) name * * If you're using an earlier version of Microsoft Developer * Studio to define a function in a Win16 Cryptoki .dll, it * might be defined by: * * #define CK_DEFINE_FUNCTION(returnType, name) \ *   returnType __export _far _pascal name * * In a UNIX environment, it might be defined by: * * #define CK_DEFINE_FUNCTION(returnType, name) \ *   returnType name * * * 3. CK_DECLARE_FUNCTION(returnType, name): A macro which makes * an importable Cryptoki library function declaration out of a * return type and a function name.  It should be used in the * following fashion: * * extern CK_DECLARE_FUNCTION(CK_RV, C_Initialize)( *   CK_VOID_PTR pReserved * ); * * If you're using Microsoft Developer Studio 5.0 to declare a * function in a Win32 Cryptoki .dll, it might be defined by: * * #define CK_DECLARE_FUNCTION(returnType, name) \ *   returnType __declspec(dllimport) name * * If you're using an earlier version of Microsoft Developer * Studio to declare a function in a Win16 Cryptoki .dll, it * might be defined by: * * #define CK_DECLARE_FUNCTION(returnType, name) \ *   returnType __export _far _pascal name * * In a UNIX environment, it might be defined by: * * #define CK_DECLARE_FUNCTION(returnType, name) \ *   returnType name * * * 4. CK_DECLARE_FUNCTION_POINTER(returnType, name): A macro * which makes a Cryptoki API function pointer declaration or * function pointer type declaration out of a return type and a * function name.  It should be used in the following fashion: * * // Define funcPtr to be a pointer to a Cryptoki API function * // taking arguments args and returning CK_RV. * CK_DECLARE_FUNCTION_POINTER(CK_RV, funcPtr)(args); * * or * * // Define funcPtrType to be the type of a pointer to a * // Cryptoki API function taking arguments args and returning * // CK_RV, and then define funcPtr to be a variable of type * // funcPtrType. * typedef CK_DECLARE_FUNCTION_POINTER(CK_RV, funcPtrType)(args); * funcPtrType funcPtr; * * If you're using Microsoft Developer Studio 5.0 to access * functions in a Win32 Cryptoki .dll, in might be defined by: * * #define CK_DECLARE_FUNCTION_POINTER(returnType, name) \ *   returnType __declspec(dllimport) (* name) * * If you're using an earlier version of Microsoft Developer * Studio to access functions in a Win16 Cryptoki .dll, it might * be defined by: * * #define CK_DECLARE_FUNCTION_POINTER(returnType, name) \ *   returnType __export _far _pascal (* name) * * In a UNIX environment, it might be defined by: * * #define CK_DECLARE_FUNCTION_POINTER(returnType, name) \ *   returnType (* name) * * * 5. CK_CALLBACK_FUNCTION(returnType, name): A macro which makes * a function pointer type for an application callback out of * a return type for the callback and a name for the callback. * It should be used in the following fashion: * * CK_CALLBACK_FUNCTION(CK_RV, myCallback)(args); * * to declare a function pointer, myCallback, to a callback * which takes arguments args and returns a CK_RV.  It can also * be used like this: * * typedef CK_CALLBACK_FUNCTION(CK_RV, myCallbackType)(args); * myCallbackType myCallback; * * If you're using Microsoft Developer Studio 5.0 to do Win32 * Cryptoki development, it might be defined by: * * #define CK_CALLBACK_FUNCTION(returnType, name) \ *   returnType (* name) * * If you're using an earlier version of Microsoft Developer * Studio to do Win16 development, it might be defined by: * * #define CK_CALLBACK_FUNCTION(returnType, name) \ *   returnType _far _pascal (* name) * * In a UNIX environment, it might be defined by: * * #define CK_CALLBACK_FUNCTION(returnType, name) \ *   returnType (* name) * * * 6. NULL_PTR: This macro is the value of a NULL pointer. * * In any ANSI/ISO C environment (and in many others as well), * this should best be defined by * * #ifndef NULL_PTR * #define NULL_PTR 0 * #endif */#if 0#include "unix.h"#endif/* All the various Cryptoki types and #define'd values are in the * file pkcs11t.h. */#include "pkcs11t.h"#define __PASTE(x,y)      x##y/* ============================================================== * Define the "extern" form of all the entry points. * ============================================================== */#define CK_NEED_ARG_LIST  1#define CK_PKCS11_FUNCTION_INFO(name) \  extern CK_DECLARE_FUNCTION(CK_RV, name)/* pkcs11f.h has all the information about the Cryptoki * function prototypes. */#include "pkcs11f.h"#undef CK_NEED_ARG_LIST#undef CK_PKCS11_FUNCTION_INFO/* ============================================================== * Define the typedef form of all the entry points.  That is, for * each Cryptoki function C_XXX, define a type CK_C_XXX which is * a pointer to that kind of function. * ============================================================== */#define CK_NEED_ARG_LIST  1#define CK_PKCS11_FUNCTION_INFO(name) \  typedef CK_DECLARE_FUNCTION_POINTER(CK_RV, __PASTE(CK_,name))/* pkcs11f.h has all the information about the Cryptoki * function prototypes. */#include "pkcs11f.h"#undef CK_NEED_ARG_LIST#undef CK_PKCS11_FUNCTION_INFO/* ============================================================== * Define structed vector of entry points.  A CK_FUNCTION_LIST * contains a CK_VERSION indicating a library's Cryptoki version * and then a whole slew of function pointers to the routines in * the library.  This type was declared, but not defined, in * pkcs11t.h. * ============================================================== */#define CK_PKCS11_FUNCTION_INFO(name) \  __PASTE(CK_,name) name;  struct CK_FUNCTION_LIST {  CK_VERSION    version;  /* Cryptoki version *//* Pile all the function pointers into the CK_FUNCTION_LIST. *//* pkcs11f.h has all the information about the Cryptoki * function prototypes. */#include "pkcs11f.h"};#undef CK_PKCS11_FUNCTION_INFO#undef __PASTE#ifdef __cplusplus}#endif#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩欧美在线不卡| 久久综合久久综合九色| 久久er精品视频| 亚洲男人的天堂av| 久久日韩粉嫩一区二区三区| 色久优优欧美色久优优| 国产精品一区二区x88av| 亚洲另类色综合网站| 欧美精品一区在线观看| 在线成人av影院| 色欧美片视频在线观看在线视频| 国产在线精品一区二区夜色| 亚洲国产一区视频| 亚洲特级片在线| 欧美国产欧美综合| 欧美一级在线观看| 欧美精品在线观看一区二区| 色综合天天综合在线视频| 国产精品自拍网站| 国产资源在线一区| 美女爽到高潮91| 亚洲国产乱码最新视频 | 精品三级在线看| 欧美三区在线视频| 色噜噜狠狠成人中文综合| 国产a精品视频| 国产成人精品一区二区三区网站观看| 偷窥国产亚洲免费视频 | 国产一区二区影院| 麻豆久久久久久| 日本不卡免费在线视频| 婷婷国产v国产偷v亚洲高清| 伊人开心综合网| 亚洲精品国产无天堂网2021 | 日韩高清欧美激情| 亚洲成人在线免费| 亚洲成人av在线电影| 亚洲免费三区一区二区| 中文字幕日韩一区二区| 中文字幕中文字幕一区| 国产精品五月天| 成人欧美一区二区三区白人| 国产精品不卡在线| 亚洲人精品一区| 亚洲欧美日韩国产成人精品影院 | 欧美撒尿777hd撒尿| 欧美在线观看视频一区二区| 欧美最新大片在线看| 欧美色图激情小说| 欧美日本在线一区| 欧美成人激情免费网| 亚洲欧美日韩国产手机在线| 成人欧美一区二区三区小说| 亚洲人成网站色在线观看| 亚洲综合免费观看高清在线观看| 亚洲综合丁香婷婷六月香| 偷拍与自拍一区| 精品一区二区三区久久| 国产一区二区三区最好精华液| 国产精品一二一区| 一本大道av一区二区在线播放| 欧美亚洲一区二区三区四区| 欧美日本韩国一区二区三区视频| 日韩欧美一区二区久久婷婷| 久久久天堂av| 亚洲女人****多毛耸耸8| 亚洲尤物在线视频观看| 欧美bbbbb| jlzzjlzz国产精品久久| 欧美三片在线视频观看| 91精品国产综合久久久久久久久久| 日韩三级视频在线观看| 国产欧美一区二区精品性色超碰 | 亚洲图片你懂的| 丝袜诱惑制服诱惑色一区在线观看 | 国产精品家庭影院| 亚洲高清久久久| 国产一区欧美二区| 91国偷自产一区二区三区观看 | 六月丁香婷婷色狠狠久久| 国产精品亚洲一区二区三区妖精| 99国产精品久久久久久久久久久| 91黄视频在线| 国产午夜亚洲精品不卡| 亚洲成人久久影院| 国产乱子伦一区二区三区国色天香 | 亚洲第一主播视频| 国产精品夜夜爽| 欧美日产国产精品| 亚洲欧洲另类国产综合| 日本美女视频一区二区| www.久久久久久久久| 欧美一激情一区二区三区| 亚洲色图色小说| 激情综合色综合久久综合| 99国产精品国产精品久久| 日韩美女一区二区三区四区| 国产精品初高中害羞小美女文| 免费在线观看日韩欧美| 91亚洲精品久久久蜜桃网站| 精品日韩99亚洲| 午夜精品免费在线| 91在线观看高清| 久久奇米777| 免费精品99久久国产综合精品| 色狠狠桃花综合| 一区二区中文字幕在线| 精品写真视频在线观看| 欧美年轻男男videosbes| 自拍偷自拍亚洲精品播放| 国产精品一二三四| 精品久久久久久久久久久久包黑料| 一区二区三区国产豹纹内裤在线| 韩日精品视频一区| 欧美一区中文字幕| 午夜久久福利影院| 在线欧美小视频| 亚洲精品国产精品乱码不99| 国产成人免费视频网站| 久久久一区二区三区| 美女www一区二区| 在线91免费看| 日韩不卡一二三区| 欧美美女bb生活片| 亚洲午夜久久久久久久久电影网| 91麻豆国产自产在线观看| 亚洲欧美怡红院| 99久久精品99国产精品| 中文字幕第一区综合| 国产精品 欧美精品| 久久久精品蜜桃| 国产剧情在线观看一区二区| 日韩一区二区三区三四区视频在线观看| 亚洲高清不卡在线| 91.麻豆视频| 人人狠狠综合久久亚洲| 91精品啪在线观看国产60岁| 日韩高清不卡一区| 日韩一区二区精品在线观看| 日本vs亚洲vs韩国一区三区二区| 欧美一区二区三区不卡| 美女视频免费一区| 精品999在线播放| 高清成人免费视频| 国产精品久久久久四虎| 91免费看片在线观看| 国产精品狼人久久影院观看方式| 成+人+亚洲+综合天堂| 亚洲欧美日韩国产综合| 欧美亚一区二区| 日韩成人一区二区三区在线观看| 欧美成人video| 国产精品一级在线| 亚洲欧美激情一区二区| 欧美日韩综合在线免费观看| 日韩经典一区二区| 久久午夜色播影院免费高清| 成人免费毛片高清视频| 一区二区三区不卡视频在线观看| 91精品午夜视频| 风流少妇一区二区| 一区二区三区四区蜜桃| 337p亚洲精品色噜噜狠狠| 激情图片小说一区| 国产精品伦一区| 欧美三级视频在线观看| 久久电影网电视剧免费观看| 中文字幕欧美日韩一区| 欧洲亚洲精品在线| 国产一区美女在线| 亚洲欧美激情插 | 风间由美一区二区三区在线观看| 亚洲激情六月丁香| 欧美成人国产一区二区| zzijzzij亚洲日本少妇熟睡| 亚洲午夜电影网| 国产区在线观看成人精品| 91豆麻精品91久久久久久| 美女性感视频久久| 亚洲欧美国产77777| 欧美大度的电影原声| eeuss鲁片一区二区三区在线看| 午夜私人影院久久久久| 国产欧美综合在线观看第十页| 欧美怡红院视频| 成人动漫一区二区在线| 免费在线观看视频一区| 亚洲色图制服诱惑 | 国产真实乱偷精品视频免| 亚洲欧美日韩中文字幕一区二区三区| 在线成人免费观看| 91视频在线看| 国产在线精品一区二区三区不卡| 亚洲夂夂婷婷色拍ww47| 国产免费成人在线视频| 欧美一区二区播放| 欧美最猛黑人xxxxx猛交| 成人网在线播放| 国内精品免费**视频| 亚洲成av人片在线观看|