Lines Matching defs:hSession

44 C_EncryptInit(CK_SESSION_HANDLE hSession,
58 return (fast_funcs->C_EncryptInit(hSession, pMechanism, hKey));
66 HANDLE2SESSION(hSession, sessp, rv);
93 * The only argument checked is whether or not hSession is valid.
96 C_Encrypt(CK_SESSION_HANDLE hSession,
107 return (fast_funcs->C_Encrypt(hSession, pData, ulDataLen,
116 HANDLE2SESSION(hSession, sessp, rv);
136 * The only argument checked is whether or not hSession is valid.
139 C_EncryptUpdate(CK_SESSION_HANDLE hSession,
150 return (fast_funcs->C_EncryptUpdate(hSession, pPart, ulPartLen,
159 HANDLE2SESSION(hSession, sessp, rv);
179 * The only argument checked is whether or not hSession is valid.
182 C_EncryptFinal(CK_SESSION_HANDLE hSession,
191 return (fast_funcs->C_EncryptFinal(hSession,
200 HANDLE2SESSION(hSession, sessp, rv);
227 C_DecryptInit(CK_SESSION_HANDLE hSession,
241 return (fast_funcs->C_DecryptInit(hSession, pMechanism, hKey));
249 HANDLE2SESSION(hSession, sessp, rv);
276 * The only argument checked is whether or not hSession is valid.
279 C_Decrypt(CK_SESSION_HANDLE hSession,
290 return (fast_funcs->C_Decrypt(hSession, pEncryptedData,
299 HANDLE2SESSION(hSession, sessp, rv);
319 * The only argument checked is whether or not hSession is valid.
322 C_DecryptUpdate(CK_SESSION_HANDLE hSession,
333 return (fast_funcs->C_DecryptUpdate(hSession, pEncryptedPart,
342 HANDLE2SESSION(hSession, sessp, rv);
362 * The only argument checked is whether or not hSession is valid.
365 C_DecryptFinal(CK_SESSION_HANDLE hSession,
374 return (fast_funcs->C_DecryptFinal(hSession, pLastPart,
383 HANDLE2SESSION(hSession, sessp, rv);