⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 function_table.c

📁 linux下的专门用于处理PKCS11的c++库和源代码 非常好用
💻 C
字号:
/* * function_table.c: Table of PKCS#11 functions * * Copyright (C) 2001  Timo Ter鋝 <timo.teras@iki.fi> * * 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 */#include "sc-pkcs11.h"CK_FUNCTION_LIST function_list = {	{ 2, 11 },        // generic.c	C_Initialize,	C_Finalize,	C_GetInfo,	C_GetFunctionList,	C_GetSlotList,	C_GetSlotInfo,	C_GetTokenInfo,	C_GetMechanismList,	C_GetMechanismInfo,	C_InitToken,	C_InitPIN,	C_SetPIN,        // session.c	C_OpenSession,	C_CloseSession,	C_CloseAllSessions,	C_GetSessionInfo,	C_GetOperationState,	C_SetOperationState,	C_Login,	C_Logout,        // object.c	C_CreateObject,	C_CopyObject,	C_DestroyObject,	C_GetObjectSize,	C_GetAttributeValue,	C_SetAttributeValue,	C_FindObjectsInit,	C_FindObjects,	C_FindObjectsFinal,        // endecypt.c	C_EncryptInit,	C_Encrypt,	C_EncryptUpdate,	C_EncryptFinal,	C_DecryptInit,	C_Decrypt,	C_DecryptUpdate,	C_DecryptFinal,        // digestsign.c        C_DigestInit,	C_Digest,	C_DigestUpdate,	C_DigestKey,	C_DigestFinal,	C_SignInit,	C_Sign,	C_SignUpdate,	C_SignFinal,	C_SignRecoverInit,	C_SignRecover,        // verify.c	C_VerifyInit,	C_Verify,	C_VerifyUpdate,	C_VerifyFinal,	C_VerifyRecoverInit,	C_VerifyRecover,        // misc.c	C_DigestEncryptUpdate,	C_DecryptDigestUpdate,	C_SignEncryptUpdate,	C_DecryptVerifyUpdate,	C_GenerateKey,	C_GenerateKeyPair,	C_WrapKey,	C_UnwrapKey,	C_DeriveKey,	C_SeedRandom,	C_GenerateRandom,	C_GetFunctionStatus,        C_CancelFunction};

⌨️ 快捷键说明

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