- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setLMResponse (0.06 sec)
-
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
switch (LM_COMPATIBILITY) { case 0: case 1: setLMResponse(getLMResponse(type2, password)); setNTResponse(getNTResponse(type2, password)); break; case 2: final byte[] nt = getNTResponse(type2, password); setLMResponse(nt); setNTResponse(nt); break; case 3: case 4:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 24.1K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
final byte[] lmClientChallenge = new byte[8]; tc.getConfig().getRandom().nextBytes(lmClientChallenge); setLMResponse(getLMv2Response(tc, type2, domain, user, passwordHash, lmClientChallenge)); } else { setLMResponse(new byte[24]); } if (avPairs != null) { // make sure to set the TARGET_INFO flag as we are sending
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0)