Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/pkcs11/libpkcs11/common/
H A Dpkcs11Object.c66 rv = FUNCLIST(sessp->se_slotid)->C_CreateObject(sessp->se_handle, in C_CreateObject()
107 rv = FUNCLIST(sessp->se_slotid)->C_CopyObject(sessp->se_handle, in C_CopyObject()
145 rv = FUNCLIST(sessp->se_slotid)->C_DestroyObject(sessp->se_handle, in C_DestroyObject()
185 rv = FUNCLIST(sessp->se_slotid)->C_GetAttributeValue(sessp->se_handle, in C_GetAttributeValue()
226 rv = FUNCLIST(sessp->se_slotid)->C_SetAttributeValue(sessp->se_handle, in C_SetAttributeValue()
266 rv = FUNCLIST(sessp->se_slotid)->C_GetObjectSize(sessp->se_handle, in C_GetObjectSize()
306 rv = FUNCLIST(sessp->se_slotid)->C_FindObjectsInit(sessp->se_handle, in C_FindObjectsInit()
348 rv = FUNCLIST(sessp->se_slotid)->C_FindObjects(sessp->se_handle, in C_FindObjects()
386 rv = FUNCLIST(sessp->se_slotid)->C_FindObjectsFinal(sessp->se_handle); in C_FindObjectsFinal()
H A Dpkcs11Crypt.c72 slotid = sessp->se_slotid; in C_EncryptInit()
123 rv = FUNCLIST(sessp->se_slotid)->C_Encrypt(sessp->se_handle, pData, in C_Encrypt()
166 rv = FUNCLIST(sessp->se_slotid)->C_EncryptUpdate(sessp->se_handle, in C_EncryptUpdate()
207 rv = FUNCLIST(sessp->se_slotid)->C_EncryptFinal(sessp->se_handle, in C_EncryptFinal()
255 slotid = sessp->se_slotid; in C_DecryptInit()
306 rv = FUNCLIST(sessp->se_slotid)->C_Decrypt(sessp->se_handle, in C_Decrypt()
349 rv = FUNCLIST(sessp->se_slotid)->C_DecryptUpdate(sessp->se_handle, in C_DecryptUpdate()
390 rv = FUNCLIST(sessp->se_slotid)->C_DecryptFinal(sessp->se_handle, in C_DecryptFinal()
H A Dpkcs11Sign.c71 slotid = sessp->se_slotid; in C_SignInit()
122 rv = FUNCLIST(sessp->se_slotid)->C_Sign(sessp->se_handle, pData, in C_Sign()
161 rv = FUNCLIST(sessp->se_slotid)->C_SignUpdate(sessp->se_handle, pPart, in C_SignUpdate()
202 rv = FUNCLIST(sessp->se_slotid)->C_SignFinal(sessp->se_handle, in C_SignFinal()
249 slotid = sessp->se_slotid; in C_SignRecoverInit()
297 rv = FUNCLIST(sessp->se_slotid)->C_SignRecover(sessp->se_handle, pData, in C_SignRecover()
H A Dpkcs11Verify.c70 slotid = sessp->se_slotid; in C_VerifyInit()
119 rv = FUNCLIST(sessp->se_slotid)->C_Verify(sessp->se_handle, pData, in C_Verify()
160 rv = FUNCLIST(sessp->se_slotid)->C_VerifyUpdate(sessp->se_handle, in C_VerifyUpdate()
199 rv = FUNCLIST(sessp->se_slotid)->C_VerifyFinal(sessp->se_handle, in C_VerifyFinal()
247 slotid = sessp->se_slotid; in C_VerifyRecoverInit()
297 rv = FUNCLIST(sessp->se_slotid)->C_VerifyRecover(sessp->se_handle, in C_VerifyRecover()
H A Dpkcs11Digest.c70 slotid = sessp->se_slotid; in C_DigestInit()
119 rv = FUNCLIST(sessp->se_slotid)->C_Digest(sessp->se_handle, pData, in C_Digest()
160 rv = FUNCLIST(sessp->se_slotid)->C_DigestUpdate(sessp->se_handle, in C_DigestUpdate()
198 rv = FUNCLIST(sessp->se_slotid)->C_DigestKey(sessp->se_handle, hKey); in C_DigestKey()
237 rv = FUNCLIST(sessp->se_slotid)->C_DigestFinal(sessp->se_handle, in C_DigestFinal()
H A Dpkcs11Session.c140 rv = FUNCLIST(sessp->se_slotid)->C_CloseSession(sessp->se_handle); in C_CloseSession()
151 pkcs11_session_delete(slottable->st_slots[sessp->se_slotid], sessp); in C_CloseSession()
283 slot_id = sessp->se_slotid; in C_GetSessionInfo()
330 rv = FUNCLIST(sessp->se_slotid)->C_GetOperationState(sessp->se_handle, in C_GetOperationState()
373 rv = FUNCLIST(sessp->se_slotid)->C_SetOperationState(sessp->se_handle, in C_SetOperationState()
415 rv = FUNCLIST(sessp->se_slotid)->C_Login(sessp->se_handle, in C_Login()
452 rv = FUNCLIST(sessp->se_slotid)->C_Logout(sessp->se_handle); in C_Logout()
H A Dpkcs11DualCrypt.c67 rv = FUNCLIST(sessp->se_slotid)-> in C_DigestEncryptUpdate()
113 rv = FUNCLIST(sessp->se_slotid)-> in C_DecryptDigestUpdate()
158 rv = FUNCLIST(sessp->se_slotid)-> in C_SignEncryptUpdate()
203 rv = FUNCLIST(sessp->se_slotid)-> in C_DecryptVerifyUpdate()
H A Dpkcs11Rand.c68 slotid = sessp->se_slotid; in C_SeedRandom()
122 slotid = sessp->se_slotid; in C_GenerateRandom()
129 rv = FUNCLIST(sessp->se_slotid)->C_GenerateRandom(sessp->se_handle, in C_GenerateRandom()
H A Dpkcs11Keys.c70 slotid = sessp->se_slotid; in C_GenerateKey()
130 slotid = sessp->se_slotid; in C_GenerateKeyPair()
188 slotid = sessp->se_slotid; in C_WrapKey()
245 slotid = sessp->se_slotid; in C_UnwrapKey()
301 slotid = sessp->se_slotid; in C_DeriveKey()
H A Dpkcs11Session.h41 CK_SLOT_ID se_slotid; /* slotID in framework */ member
H A Dpkcs11Sessionlist.c59 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()