Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_pwdutil.c655 if (lm_len == SMBAUTH_HEXHASH_SZ) { in smb_pwd_fgetent()
656 (void) hextobin(argv[SMB_PWD_LMHASH], SMBAUTH_HEXHASH_SZ, in smb_pwd_fgetent()
665 if (nt_len == SMBAUTH_HEXHASH_SZ) { in smb_pwd_fgetent()
666 (void) hextobin(argv[SMB_PWD_NTHASH], SMBAUTH_HEXHASH_SZ, in smb_pwd_fgetent()
736 char hex_nthash[SMBAUTH_HEXHASH_SZ+1]; in smb_pwd_fputent()
737 char hex_lmhash[SMBAUTH_HEXHASH_SZ+1]; in smb_pwd_fputent()
742 hex_lmhash, SMBAUTH_HEXHASH_SZ); in smb_pwd_fputent()
743 hex_lmhash[SMBAUTH_HEXHASH_SZ] = '\0'; in smb_pwd_fputent()
750 hex_nthash, SMBAUTH_HEXHASH_SZ); in smb_pwd_fputent()
751 hex_nthash[SMBAUTH_HEXHASH_SZ] = '\0'; in smb_pwd_fputent()
H A Dlibsmb.h348 #define SMBAUTH_HEXHASH_SZ (SMBAUTH_HASH_SZ * 2) macro