Searched refs:SMBAUTH_HEXHASH_SZ (Results 1 – 2 of 2) sorted by relevance
649 if (lm_len == SMBAUTH_HEXHASH_SZ) { in smb_pwd_fgetent()650 (void) hextobin(argv[SMB_PWD_LMHASH], SMBAUTH_HEXHASH_SZ, in smb_pwd_fgetent()659 if (nt_len == SMBAUTH_HEXHASH_SZ) { in smb_pwd_fgetent()660 (void) hextobin(argv[SMB_PWD_NTHASH], SMBAUTH_HEXHASH_SZ, in smb_pwd_fgetent()730 char hex_nthash[SMBAUTH_HEXHASH_SZ+1]; in smb_pwd_fputent()731 char hex_lmhash[SMBAUTH_HEXHASH_SZ+1]; in smb_pwd_fputent()736 hex_lmhash, SMBAUTH_HEXHASH_SZ); in smb_pwd_fputent()737 hex_lmhash[SMBAUTH_HEXHASH_SZ] = '\0'; in smb_pwd_fputent()744 hex_nthash, SMBAUTH_HEXHASH_SZ); in smb_pwd_fputent()745 hex_nthash[SMBAUTH_HEXHASH_SZ] = '\0'; in smb_pwd_fputent()
329 #define SMBAUTH_HEXHASH_SZ (SMBAUTH_HASH_SZ * 2) macro