- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for writeSecurityBufferContent (0.09 seconds)
-
src/main/java/jcifs/ntlmssp/Type1Message.java
System.arraycopy(NTLMSSP_VERSION, 0, type1, pos, NTLMSSP_VERSION.length); pos += NTLMSSP_VERSION.length; } pos += writeSecurityBufferContent(type1, pos, domOffOff, domain); pos += writeSecurityBufferContent(type1, pos, wsOffOff, workstation); return type1; } catch (final IOException ex) { throw new IllegalStateException(ex.getMessage()); }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 7.8K bytes - Click Count (0) -
src/main/java/jcifs/ntlmssp/NtlmMessage.java
return offset + 4; } writeUShort(dest, offset, length); writeUShort(dest, offset + 2, length); return offset + 4; } static int writeSecurityBufferContent(final byte[] dest, final int pos, final int off, final byte[] src) { writeULong(dest, off, pos); if (src != null && src.length > 0) { System.arraycopy(src, 0, dest, pos, src.length);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.4K bytes - Click Count (0)