Home
last modified time | relevance | path

Searched refs:se_slotid (Results 1 – 12 of 12) sorted by relevance

/illumos-gate/usr/src/lib/pkcs11/libpkcs11/common/
H A Dpkcs11Object.c64 rv = FUNCLIST(sessp->se_slotid)->C_CreateObject(sessp->se_handle, in C_CreateObject()
105 rv = FUNCLIST(sessp->se_slotid)->C_CopyObject(sessp->se_handle, in C_CopyObject()
143 rv = FUNCLIST(sessp->se_slotid)->C_DestroyObject(sessp->se_handle, in C_DestroyObject()
183 rv = FUNCLIST(sessp->se_slotid)->C_GetAttributeValue(sessp->se_handle, in C_GetAttributeValue()
224 rv = FUNCLIST(sessp->se_slotid)->C_SetAttributeValue(sessp->se_handle, in C_SetAttributeValue()
264 rv = FUNCLIST(sessp->se_slotid)->C_GetObjectSize(sessp->se_handle, in C_GetObjectSize()
304 rv = FUNCLIST(sessp->se_slotid)->C_FindObjectsInit(sessp->se_handle, in C_FindObjectsInit()
346 rv = FUNCLIST(sessp->se_slotid)->C_FindObjects(sessp->se_handle, in C_FindObjects()
384 rv = FUNCLIST(sessp->se_slotid)->C_FindObjectsFinal(sessp->se_handle); in C_FindObjectsFinal()
H A Dpkcs11Crypt.c70 slotid = sessp->se_slotid; in C_EncryptInit()
121 rv = FUNCLIST(sessp->se_slotid)->C_Encrypt(sessp->se_handle, pData, in C_Encrypt()
164 rv = FUNCLIST(sessp->se_slotid)->C_EncryptUpdate(sessp->se_handle, in C_EncryptUpdate()
205 rv = FUNCLIST(sessp->se_slotid)->C_EncryptFinal(sessp->se_handle, in C_EncryptFinal()
253 slotid = sessp->se_slotid; in C_DecryptInit()
304 rv = FUNCLIST(sessp->se_slotid)->C_Decrypt(sessp->se_handle, in C_Decrypt()
347 rv = FUNCLIST(sessp->se_slotid)->C_DecryptUpdate(sessp->se_handle, in C_DecryptUpdate()
388 rv = FUNCLIST(sessp->se_slotid)->C_DecryptFinal(sessp->se_handle, in C_DecryptFinal()
H A Dpkcs11Sign.c69 slotid = sessp->se_slotid; in C_SignInit()
120 rv = FUNCLIST(sessp->se_slotid)->C_Sign(sessp->se_handle, pData, in C_Sign()
159 rv = FUNCLIST(sessp->se_slotid)->C_SignUpdate(sessp->se_handle, pPart, in C_SignUpdate()
200 rv = FUNCLIST(sessp->se_slotid)->C_SignFinal(sessp->se_handle, in C_SignFinal()
247 slotid = sessp->se_slotid; in C_SignRecoverInit()
295 rv = FUNCLIST(sessp->se_slotid)->C_SignRecover(sessp->se_handle, pData, in C_SignRecover()
H A Dpkcs11Verify.c68 slotid = sessp->se_slotid; in C_VerifyInit()
117 rv = FUNCLIST(sessp->se_slotid)->C_Verify(sessp->se_handle, pData, in C_Verify()
158 rv = FUNCLIST(sessp->se_slotid)->C_VerifyUpdate(sessp->se_handle, in C_VerifyUpdate()
197 rv = FUNCLIST(sessp->se_slotid)->C_VerifyFinal(sessp->se_handle, in C_VerifyFinal()
245 slotid = sessp->se_slotid; in C_VerifyRecoverInit()
295 rv = FUNCLIST(sessp->se_slotid)->C_VerifyRecover(sessp->se_handle, in C_VerifyRecover()
H A Dpkcs11Digest.c68 slotid = sessp->se_slotid; in C_DigestInit()
117 rv = FUNCLIST(sessp->se_slotid)->C_Digest(sessp->se_handle, pData, in C_Digest()
158 rv = FUNCLIST(sessp->se_slotid)->C_DigestUpdate(sessp->se_handle, in C_DigestUpdate()
196 rv = FUNCLIST(sessp->se_slotid)->C_DigestKey(sessp->se_handle, hKey); in C_DigestKey()
235 rv = FUNCLIST(sessp->se_slotid)->C_DigestFinal(sessp->se_handle, in C_DigestFinal()
H A Dpkcs11Session.c138 rv = FUNCLIST(sessp->se_slotid)->C_CloseSession(sessp->se_handle); in C_CloseSession()
149 pkcs11_session_delete(slottable->st_slots[sessp->se_slotid], sessp); in C_CloseSession()
281 slot_id = sessp->se_slotid; in C_GetSessionInfo()
328 rv = FUNCLIST(sessp->se_slotid)->C_GetOperationState(sessp->se_handle, in C_GetOperationState()
371 rv = FUNCLIST(sessp->se_slotid)->C_SetOperationState(sessp->se_handle, in C_SetOperationState()
413 rv = FUNCLIST(sessp->se_slotid)->C_Login(sessp->se_handle, in C_Login()
450 rv = FUNCLIST(sessp->se_slotid)->C_Logout(sessp->se_handle); in C_Logout()
H A Dpkcs11DualCrypt.c65 rv = FUNCLIST(sessp->se_slotid)-> in C_DigestEncryptUpdate()
111 rv = FUNCLIST(sessp->se_slotid)-> in C_DecryptDigestUpdate()
156 rv = FUNCLIST(sessp->se_slotid)-> in C_SignEncryptUpdate()
201 rv = FUNCLIST(sessp->se_slotid)-> in C_DecryptVerifyUpdate()
H A Dpkcs11Keys.c68 slotid = sessp->se_slotid; in C_GenerateKey()
128 slotid = sessp->se_slotid; in C_GenerateKeyPair()
186 slotid = sessp->se_slotid; in C_WrapKey()
243 slotid = sessp->se_slotid; in C_UnwrapKey()
299 slotid = sessp->se_slotid; in C_DeriveKey()
H A Dpkcs11Rand.c66 slotid = sessp->se_slotid; in C_SeedRandom()
120 slotid = sessp->se_slotid; in C_GenerateRandom()
127 rv = FUNCLIST(sessp->se_slotid)->C_GenerateRandom(sessp->se_handle, in C_GenerateRandom()
H A Dpkcs11Session.h39 CK_SLOT_ID se_slotid; /* slotID in framework */ member
H A Dpkcs11Sessionlist.c57 newhandle->se_slotid = slot_id; in pkcs11_session_add()
H A Dpkcs11SlotToken.c835 rv = FUNCLIST(sessp->se_slotid)->C_InitPIN(sessp->se_handle, in C_InitPIN()
872 rv = FUNCLIST(sessp->se_slotid)->C_SetPIN(sessp->se_handle, in C_SetPIN()