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

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

?? pkcs11f.h

?? Unix_Linux下的CSP源碼
?? H
?? 第 1 頁 / 共 2 頁
字號:
  CK_SESSION_HANDLE hSession,       /* the session's handle */  CK_BYTE_PTR       pLastPart,      /* gets plaintext */  CK_ULONG_PTR      pulLastPartLen  /* p-text size */);#endif/* Message digesting *//* C_DigestInit initializes a message-digesting operation. */CK_PKCS11_FUNCTION_INFO(C_DigestInit)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,   /* the session's handle */  CK_MECHANISM_PTR  pMechanism  /* the digesting mechanism */);#endif/* C_Digest digests data in a single part. */CK_PKCS11_FUNCTION_INFO(C_Digest)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,     /* the session's handle */  CK_BYTE_PTR       pData,        /* data to be digested */  CK_ULONG          ulDataLen,    /* bytes of data to digest */  CK_BYTE_PTR       pDigest,      /* gets the message digest */  CK_ULONG_PTR      pulDigestLen  /* gets digest length */);#endif/* C_DigestUpdate continues a multiple-part message-digesting * operation. */CK_PKCS11_FUNCTION_INFO(C_DigestUpdate)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,  /* the session's handle */  CK_BYTE_PTR       pPart,     /* data to be digested */  CK_ULONG          ulPartLen  /* bytes of data to be digested */);#endif/* C_DigestKey continues a multi-part message-digesting * operation, by digesting the value of a secret key as part of * the data already digested. */CK_PKCS11_FUNCTION_INFO(C_DigestKey)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,  /* the session's handle */  CK_OBJECT_HANDLE  hKey       /* secret key to digest */);#endif/* C_DigestFinal finishes a multiple-part message-digesting * operation. */CK_PKCS11_FUNCTION_INFO(C_DigestFinal)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,     /* the session's handle */  CK_BYTE_PTR       pDigest,      /* gets the message digest */  CK_ULONG_PTR      pulDigestLen  /* gets byte count of digest */);#endif/* Signing and MACing *//* C_SignInit initializes a signature (private key encryption) * operation, where the signature is (will be) an appendix to * the data, and plaintext cannot be recovered from the *signature. */CK_PKCS11_FUNCTION_INFO(C_SignInit)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,    /* the session's handle */  CK_MECHANISM_PTR  pMechanism,  /* the signature mechanism */  CK_OBJECT_HANDLE  hKey         /* handle of signature key */);#endif/* C_Sign signs (encrypts with private key) data in a single * part, where the signature is (will be) an appendix to the * data, and plaintext cannot be recovered from the signature. */CK_PKCS11_FUNCTION_INFO(C_Sign)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,        /* the session's handle */  CK_BYTE_PTR       pData,           /* the data to sign */  CK_ULONG          ulDataLen,       /* count of bytes to sign */  CK_BYTE_PTR       pSignature,      /* gets the signature */  CK_ULONG_PTR      pulSignatureLen  /* gets signature length */);#endif/* C_SignUpdate continues a multiple-part signature operation, * where the signature is (will be) an appendix to the data,  * and plaintext cannot be recovered from the signature. */CK_PKCS11_FUNCTION_INFO(C_SignUpdate)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,  /* the session's handle */  CK_BYTE_PTR       pPart,     /* the data to sign */  CK_ULONG          ulPartLen  /* count of bytes to sign */);#endif/* C_SignFinal finishes a multiple-part signature operation,  * returning the signature. */CK_PKCS11_FUNCTION_INFO(C_SignFinal)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,        /* the session's handle */  CK_BYTE_PTR       pSignature,      /* gets the signature */  CK_ULONG_PTR      pulSignatureLen  /* gets signature length */);#endif/* C_SignRecoverInit initializes a signature operation, where * the data can be recovered from the signature. */CK_PKCS11_FUNCTION_INFO(C_SignRecoverInit)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,   /* the session's handle */  CK_MECHANISM_PTR  pMechanism, /* the signature mechanism */  CK_OBJECT_HANDLE  hKey        /* handle of the signature key */);#endif/* C_SignRecover signs data in a single operation, where the * data can be recovered from the signature. */CK_PKCS11_FUNCTION_INFO(C_SignRecover)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,        /* the session's handle */  CK_BYTE_PTR       pData,           /* the data to sign */  CK_ULONG          ulDataLen,       /* count of bytes to sign */  CK_BYTE_PTR       pSignature,      /* gets the signature */  CK_ULONG_PTR      pulSignatureLen  /* gets signature length */);#endif/* Verifying signatures and MACs *//* C_VerifyInit initializes a verification operation, where the * signature is an appendix to the data, and plaintext cannot *  cannot be recovered from the signature (e.g. DSA). */CK_PKCS11_FUNCTION_INFO(C_VerifyInit)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,    /* the session's handle */  CK_MECHANISM_PTR  pMechanism,  /* the verification mechanism */  CK_OBJECT_HANDLE  hKey         /* verification key */ );#endif/* C_Verify verifies a signature in a single-part operation,  * where the signature is an appendix to the data, and plaintext * cannot be recovered from the signature. */CK_PKCS11_FUNCTION_INFO(C_Verify)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,       /* the session's handle */  CK_BYTE_PTR       pData,          /* signed data */  CK_ULONG          ulDataLen,      /* length of signed data */  CK_BYTE_PTR       pSignature,     /* signature */  CK_ULONG          ulSignatureLen  /* signature length*/);#endif/* C_VerifyUpdate continues a multiple-part verification * operation, where the signature is an appendix to the data,  * and plaintext cannot be recovered from the signature. */CK_PKCS11_FUNCTION_INFO(C_VerifyUpdate)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,  /* the session's handle */  CK_BYTE_PTR       pPart,     /* signed data */  CK_ULONG          ulPartLen  /* length of signed data */);#endif/* C_VerifyFinal finishes a multiple-part verification * operation, checking the signature. */CK_PKCS11_FUNCTION_INFO(C_VerifyFinal)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,       /* the session's handle */  CK_BYTE_PTR       pSignature,     /* signature to verify */  CK_ULONG          ulSignatureLen  /* signature length */);#endif/* C_VerifyRecoverInit initializes a signature verification * operation, where the data is recovered from the signature. */CK_PKCS11_FUNCTION_INFO(C_VerifyRecoverInit)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,    /* the session's handle */  CK_MECHANISM_PTR  pMechanism,  /* the verification mechanism */  CK_OBJECT_HANDLE  hKey         /* verification key */);#endif/* C_VerifyRecover verifies a signature in a single-part * operation, where the data is recovered from the signature. */CK_PKCS11_FUNCTION_INFO(C_VerifyRecover)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,        /* the session's handle */  CK_BYTE_PTR       pSignature,      /* signature to verify */  CK_ULONG          ulSignatureLen,  /* signature length */  CK_BYTE_PTR       pData,           /* gets signed data */  CK_ULONG_PTR      pulDataLen       /* gets signed data len */);#endif/* Dual-function cryptographic operations *//* C_DigestEncryptUpdate continues a multiple-part digesting * and encryption operation. */CK_PKCS11_FUNCTION_INFO(C_DigestEncryptUpdate)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,            /* session's handle */  CK_BYTE_PTR       pPart,               /* the plaintext data */  CK_ULONG          ulPartLen,           /* plaintext length */  CK_BYTE_PTR       pEncryptedPart,      /* gets ciphertext */  CK_ULONG_PTR      pulEncryptedPartLen  /* gets c-text length */);#endif/* C_DecryptDigestUpdate continues a multiple-part decryption and * digesting operation. */CK_PKCS11_FUNCTION_INFO(C_DecryptDigestUpdate)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,            /* session's handle */  CK_BYTE_PTR       pEncryptedPart,      /* ciphertext */  CK_ULONG          ulEncryptedPartLen,  /* ciphertext length */  CK_BYTE_PTR       pPart,               /* gets plaintext */  CK_ULONG_PTR      pulPartLen           /* gets plaintext len */);#endif/* C_SignEncryptUpdate continues a multiple-part signing and * encryption operation. */CK_PKCS11_FUNCTION_INFO(C_SignEncryptUpdate)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,            /* session's handle */  CK_BYTE_PTR       pPart,               /* the plaintext data */  CK_ULONG          ulPartLen,           /* plaintext length */  CK_BYTE_PTR       pEncryptedPart,      /* gets ciphertext */  CK_ULONG_PTR      pulEncryptedPartLen  /* gets c-text length */);#endif/* C_DecryptVerifyUpdate continues a multiple-part decryption and * verify operation. */CK_PKCS11_FUNCTION_INFO(C_DecryptVerifyUpdate)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,            /* session's handle */  CK_BYTE_PTR       pEncryptedPart,      /* ciphertext */  CK_ULONG          ulEncryptedPartLen,  /* ciphertext length */  CK_BYTE_PTR       pPart,               /* gets plaintext */  CK_ULONG_PTR      pulPartLen           /* gets p-text length */);#endif/* Key management *//* C_GenerateKey generates a secret key, creating a new key * object. */CK_PKCS11_FUNCTION_INFO(C_GenerateKey)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE    hSession,    /* the session's handle */  CK_MECHANISM_PTR     pMechanism,  /* key generation mech. */  CK_ATTRIBUTE_PTR     pTemplate,   /* template for new key */  CK_ULONG             ulCount,     /* # of attrs in template */  CK_OBJECT_HANDLE_PTR phKey        /* gets handle of new key */);#endif/* C_GenerateKeyPair generates a public-key/private-key pair,  * creating new key objects. */CK_PKCS11_FUNCTION_INFO(C_GenerateKeyPair)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE    hSession,                    /* session                                                     * handle */  CK_MECHANISM_PTR     pMechanism,                  /* key-gen                                                     * mech. */  CK_ATTRIBUTE_PTR     pPublicKeyTemplate,          /* template                                                     * for pub.                                                     * key */  CK_ULONG             ulPublicKeyAttributeCount,   /* # pub.                                                     * attrs. */  CK_ATTRIBUTE_PTR     pPrivateKeyTemplate,         /* template                                                     * for priv.                                                     * key */  CK_ULONG             ulPrivateKeyAttributeCount,  /* # priv.                                                     * attrs. */  CK_OBJECT_HANDLE_PTR phPublicKey,                 /* gets pub.                                                     * key                                                     * handle */  CK_OBJECT_HANDLE_PTR phPrivateKey                 /* gets                                                     * priv. key                                                     * handle */);#endif/* C_WrapKey wraps (i.e., encrypts) a key. */CK_PKCS11_FUNCTION_INFO(C_WrapKey)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,        /* the session's handle */  CK_MECHANISM_PTR  pMechanism,      /* the wrapping mechanism */  CK_OBJECT_HANDLE  hWrappingKey,    /* wrapping key */  CK_OBJECT_HANDLE  hKey,            /* key to be wrapped */  CK_BYTE_PTR       pWrappedKey,     /* gets wrapped key */  CK_ULONG_PTR      pulWrappedKeyLen /* gets wrapped key size */);#endif/* C_UnwrapKey unwraps (decrypts) a wrapped key, creating a new * key object. */CK_PKCS11_FUNCTION_INFO(C_UnwrapKey)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE    hSession,          /* session's handle */  CK_MECHANISM_PTR     pMechanism,        /* unwrapping mech. */  CK_OBJECT_HANDLE     hUnwrappingKey,    /* unwrapping key */  CK_BYTE_PTR          pWrappedKey,       /* the wrapped key */  CK_ULONG             ulWrappedKeyLen,   /* wrapped key len */  CK_ATTRIBUTE_PTR     pTemplate,         /* new key template */  CK_ULONG             ulAttributeCount,  /* template length */  CK_OBJECT_HANDLE_PTR phKey              /* gets new handle */);#endif/* C_DeriveKey derives a key from a base key, creating a new key * object. */CK_PKCS11_FUNCTION_INFO(C_DeriveKey)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE    hSession,          /* session's handle */  CK_MECHANISM_PTR     pMechanism,        /* key deriv. mech. */  CK_OBJECT_HANDLE     hBaseKey,          /* base key */  CK_ATTRIBUTE_PTR     pTemplate,         /* new key template */  CK_ULONG             ulAttributeCount,  /* template length */  CK_OBJECT_HANDLE_PTR phKey              /* gets new handle */);#endif/* Random number generation *//* C_SeedRandom mixes additional seed material into the token's * random number generator. */CK_PKCS11_FUNCTION_INFO(C_SeedRandom)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,  /* the session's handle */  CK_BYTE_PTR       pSeed,     /* the seed material */  CK_ULONG          ulSeedLen  /* length of seed material */);#endif/* C_GenerateRandom generates random data. */CK_PKCS11_FUNCTION_INFO(C_GenerateRandom)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession,    /* the session's handle */  CK_BYTE_PTR       RandomData,  /* receives the random data */  CK_ULONG          ulRandomLen  /* # of bytes to generate */);#endif/* Parallel function management *//* C_GetFunctionStatus is a legacy function; it obtains an * updated status of a function running in parallel with an * application. */CK_PKCS11_FUNCTION_INFO(C_GetFunctionStatus)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession  /* the session's handle */);#endif/* C_CancelFunction is a legacy function; it cancels a function * running in parallel. */CK_PKCS11_FUNCTION_INFO(C_CancelFunction)#ifdef CK_NEED_ARG_LIST(  CK_SESSION_HANDLE hSession  /* the session's handle */);#endif/* Functions added in for Cryptoki Version 2.01 or later *//* C_WaitForSlotEvent waits for a slot event (token insertion, * removal, etc.) to occur. */CK_PKCS11_FUNCTION_INFO(C_WaitForSlotEvent)#ifdef CK_NEED_ARG_LIST(  CK_FLAGS flags,        /* blocking/nonblocking flag */  CK_SLOT_ID_PTR pSlot,  /* location that receives the slot ID */  CK_VOID_PTR pRserved   /* reserved.  Should be NULL_PTR */);#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91网站在线观看视频| 国产欧美日韩激情| www.综合网.com| 欧美一级二级三级蜜桃| 成人av高清在线| 艳妇臀荡乳欲伦亚洲一区| 99久久精品免费精品国产| 美洲天堂一区二卡三卡四卡视频| 久久影视一区二区| 91国偷自产一区二区三区成为亚洲经典 | 亚洲高清免费观看 | 欧美在线啊v一区| 日韩欧美高清一区| 亚洲综合色丁香婷婷六月图片| 久久91精品国产91久久小草| 欧美色视频一区| 国产精品久久久久久亚洲伦| 国产福利91精品| 欧美成人精品福利| 热久久一区二区| 欧美久久高跟鞋激| 夜夜精品视频一区二区| 91在线国内视频| 国产精品网站在线观看| 国产成人8x视频一区二区| 国产亚洲一区二区三区| 麻豆精品一区二区综合av| 欧美日韩精品福利| 亚洲电影在线播放| 精品视频1区2区3区| 亚洲综合丁香婷婷六月香| 色综合网站在线| 日本大胆欧美人术艺术动态| 欧美在线观看18| 亚洲二区在线视频| 欧美一级视频精品观看| 蜜桃视频在线一区| xnxx国产精品| 粗大黑人巨茎大战欧美成人| 国产精品美女一区二区| www.欧美亚洲| 亚洲国产美女搞黄色| 欧美丝袜丝交足nylons| 天天综合色天天| 日韩三级视频在线看| 黑人精品欧美一区二区蜜桃| 欧美变态凌虐bdsm| 国产高清亚洲一区| 国产精品卡一卡二| 欧美日韩三级一区二区| 蜜臀a∨国产成人精品| 久久亚洲欧美国产精品乐播| 99久久婷婷国产| 亚洲小说欧美激情另类| 欧美一区二区在线不卡| 国产成人一区在线| 一区二区三区四区国产精品| 91精品国产一区二区三区蜜臀| 久久精品国产在热久久| 国产精品欧美一区喷水| 欧美日韩一区 二区 三区 久久精品| 日韩国产在线一| 欧美国产日韩精品免费观看| 在线观看区一区二| 国产一区二区免费在线| 亚洲欧洲制服丝袜| 日韩欧美一区电影| 99re66热这里只有精品3直播 | 中文字幕乱码日本亚洲一区二区| av在线这里只有精品| 亚洲18女电影在线观看| 久久午夜羞羞影院免费观看| 日本韩国欧美国产| 另类小说色综合网站| 国产精品入口麻豆九色| 制服丝袜亚洲播放| 成人网在线免费视频| 麻豆久久久久久久| 伊人开心综合网| 国产色产综合产在线视频| 欧美亚日韩国产aⅴ精品中极品| 国产一区二区三区免费播放| 精品乱人伦一区二区三区| 91网站视频在线观看| 国内精品第一页| 午夜电影网一区| 国产精品不卡在线观看| 精品国产一区二区三区忘忧草| 欧美主播一区二区三区| 国产一区欧美二区| 免费精品99久久国产综合精品| 亚洲色图色小说| 久久欧美中文字幕| 欧美电视剧在线观看完整版| 欧美色倩网站大全免费| 99精品视频一区| 粉嫩久久99精品久久久久久夜 | www.亚洲激情.com| 精品亚洲porn| 久久精品国产亚洲一区二区三区| 亚洲黄色录像片| 最新高清无码专区| 国产精品国产三级国产三级人妇 | 亚洲图片欧美色图| 17c精品麻豆一区二区免费| 久久久精品日韩欧美| 精品99一区二区| 日韩精品一区二区三区蜜臀| 91精选在线观看| 欧美日韩亚洲综合| 欧美三级中文字| 欧美日韩视频第一区| 欧美日韩一区二区三区在线看| 欧美三级三级三级爽爽爽| 欧美亚洲免费在线一区| 色av综合在线| 欧美视频中文字幕| 欧美日韩一级片在线观看| 欧美三级韩国三级日本三斤| 欧美三区免费完整视频在线观看| 欧美日韩国产一区二区三区地区| 欧美中文字幕一区二区三区 | 国产精品理论在线观看| 国产精品理伦片| 亚洲欧美日韩中文播放| 亚洲午夜精品在线| 性做久久久久久| 六月丁香综合在线视频| 国产一区二区视频在线| 国产精品18久久久久| 成人福利视频在线看| 色呦呦一区二区三区| 欧美日韩国产高清一区| 日韩欧美在线123| 国产亚洲午夜高清国产拍精品| 亚洲国产精华液网站w| 亚洲最大成人综合| 日本欧美在线观看| 国产成人高清在线| 色婷婷综合久久久久中文一区二区 | 一区二区三区四区视频精品免费 | 日本中文字幕一区二区有限公司| 久久99国产精品久久| www.欧美亚洲| 欧美一区二区网站| 国产精品久久久久影院| 亚洲国产精品久久人人爱| 国内精品免费**视频| 国产成人三级在线观看| 色综合天天综合网国产成人综合天 | 五月婷婷色综合| 黑人精品欧美一区二区蜜桃| 91亚洲精品一区二区乱码| 91精品啪在线观看国产60岁| 国产欧美一二三区| 午夜精品久久久久久久99水蜜桃 | 美女性感视频久久| 91免费视频观看| 精品国产乱码久久久久久久| 一区二区三区在线观看动漫| 九九九久久久精品| 色婷婷精品久久二区二区蜜臂av| 日韩欧美一区二区久久婷婷| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 天堂av在线一区| 成人精品国产福利| 欧美成人在线直播| 婷婷久久综合九色综合绿巨人| 成人自拍视频在线观看| 日韩精品一区二区三区在线播放| 成人免费在线视频| 国产美女在线观看一区| 欧美日韩精品三区| 亚洲免费av在线| 成人一区在线观看| 亚洲精品一区二区三区影院| 亚洲一区免费视频| 91蜜桃传媒精品久久久一区二区| 2024国产精品| 麻豆精品久久久| 欧美日韩一区二区在线观看 | 91精品福利视频| 久久精品人人爽人人爽| 麻豆精品蜜桃视频网站| 欧美日韩不卡一区二区| 亚洲午夜av在线| 色综合久久久久久久久久久| 国产精品久久久久久久蜜臀| 国产电影一区二区三区| 精品久久久久久最新网址| 日韩在线a电影| 欧美性受xxxx| 亚洲国产视频网站| 欧美性大战久久| 亚洲美女屁股眼交| 91亚洲精华国产精华精华液| 中文字幕一区二区不卡 | 一区二区三区影院| 色哟哟国产精品| 亚洲理论在线观看|