Lines Matching refs:hSession
64 CK_SESSION_HANDLE hSession; in smb_encrypt_DES() local
95 rv = SUNW_C_GetMechSession(mechanism.mechanism, &hSession); in smb_encrypt_DES()
105 rv = SUNW_C_KeyToObject(hSession, mechanism.mechanism, in smb_encrypt_DES()
112 rv = C_EncryptInit(hSession, &mechanism, hKey); in smb_encrypt_DES()
120 rv = C_EncryptUpdate(hSession, in smb_encrypt_DES()
129 (void) C_DestroyObject(hSession, hKey); in smb_encrypt_DES()
134 (void) C_DestroyObject(hSession, hKey); in smb_encrypt_DES()
136 (void) C_CloseSession(hSession); in smb_encrypt_DES()
174 CK_SESSION_HANDLE hSession; in smb_encrypt_RC4() local
186 rv = SUNW_C_GetMechSession(mechanism.mechanism, &hSession); in smb_encrypt_RC4()
191 rv = SUNW_C_KeyToObject(hSession, mechanism.mechanism, in smb_encrypt_RC4()
197 rv = C_EncryptInit(hSession, &mechanism, hKey); in smb_encrypt_RC4()
202 rv = C_EncryptUpdate(hSession, in smb_encrypt_RC4()
209 (void) C_DestroyObject(hSession, hKey); in smb_encrypt_RC4()
211 (void) C_CloseSession(hSession); in smb_encrypt_RC4()