Home
last modified time | relevance | path

Searched refs:CIFS_SESS_KEY_SIZE (Results 1 – 3 of 3) sorted by relevance

/linux-4.19.296/fs/cifs/
Dcifsencrypt.c268 unsigned int temp_len = CIFS_SESS_KEY_SIZE + CIFS_AUTH_RESP_SIZE; in setup_ntlm_response()
269 char temp_key[CIFS_SESS_KEY_SIZE]; in setup_ntlm_response()
281 ses->auth_key.response + CIFS_SESS_KEY_SIZE, nls_cp); in setup_ntlm_response()
295 rc = mdfour(ses->auth_key.response, temp_key, CIFS_SESS_KEY_SIZE); in setup_ntlm_response()
599 (ses->auth_key.response + CIFS_SESS_KEY_SIZE); in CalcNTLMv2_response()
603 hash_len = ses->auth_key.len - (CIFS_SESS_KEY_SIZE + in CalcNTLMv2_response()
685 baselen = CIFS_SESS_KEY_SIZE + sizeof(struct ntlmv2_resp); in setup_ntlmv2_rsp()
698 (ses->auth_key.response + CIFS_SESS_KEY_SIZE); in setup_ntlmv2_rsp()
776 sec_key = kmalloc(CIFS_SESS_KEY_SIZE, GFP_KERNEL); in calc_seckey()
780 get_random_bytes(sec_key, CIFS_SESS_KEY_SIZE); in calc_seckey()
[all …]
Dsess.c369 - CIFS_SESS_KEY_SIZE + CIFS_CPHTXT_SIZE + 2; in size_of_ntlmssp_blob()
433 memcpy(tmp, ses->auth_key.response + CIFS_SESS_KEY_SIZE, in build_ntlmssp_auth_blob()
434 ses->auth_key.len - CIFS_SESS_KEY_SIZE); in build_ntlmssp_auth_blob()
435 tmp += ses->auth_key.len - CIFS_SESS_KEY_SIZE; in build_ntlmssp_auth_blob()
438 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE); in build_ntlmssp_auth_blob()
440 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE); in build_ntlmssp_auth_blob()
828 memcpy(bcc_ptr, ses->auth_key.response + CIFS_SESS_KEY_SIZE, in sess_auth_ntlm()
831 memcpy(bcc_ptr, ses->auth_key.response + CIFS_SESS_KEY_SIZE, in sess_auth_ntlm()
935 memcpy(bcc_ptr, ses->auth_key.response + CIFS_SESS_KEY_SIZE, in sess_auth_ntlmv2()
936 ses->auth_key.len - CIFS_SESS_KEY_SIZE); in sess_auth_ntlmv2()
[all …]
Dcifspdu.h143 #define CIFS_SESS_KEY_SIZE (16) macro