Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lmResponseOffset (0.05 sec)

  1. src/main/java/jcifs/ntlmssp/Type3Message.java

            }
            pos += 4;
    
            final byte[] lmResponseBytes = readSecurityBuffer(material, pos);
            setLMResponse(lmResponseBytes);
            final int lmResponseOffset = readULong(material, pos + 4);
            pos += 8;
    
            final byte[] ntResponseBytes = readSecurityBuffer(material, pos);
            setNTResponse(ntResponseBytes);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

            }
            if (readULong(material, 8) != 3) {
                throw new IOException("Not a Type 3 message.");
            }
            final byte[] lmResponse = readSecurityBuffer(material, 12);
            final int lmResponseOffset = readULong(material, 16);
            final byte[] ntResponse = readSecurityBuffer(material, 20);
            final int ntResponseOffset = readULong(material, 24);
            final byte[] domain = readSecurityBuffer(material, 28);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
Back to top