Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_auth.c201 smb_wchar_t *unicode_password; in smb_auth_ntlm_hash() local
210 unicode_password = malloc(unicode_len); in smb_auth_ntlm_hash()
212 if (unicode_password == NULL) in smb_auth_ntlm_hash()
215 length = smb_auth_qnd_unicode(unicode_password, password, length); in smb_auth_ntlm_hash()
216 rc = smb_auth_md4(hash, (unsigned char *)unicode_password, length); in smb_auth_ntlm_hash()
218 (void) memset(unicode_password, 0, unicode_len); in smb_auth_ntlm_hash()
219 free(unicode_password); in smb_auth_ntlm_hash()