- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for writeSecurityBufferContent (0.12 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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/Type2Message.java
System.arraycopy(NTLMSSP_VERSION, 0, type2, pos, NTLMSSP_VERSION.length); pos += NTLMSSP_VERSION.length; } pos += writeSecurityBufferContent(type2, pos, targetNameOff, targetBytes); pos += writeSecurityBufferContent(type2, pos, targetInfoOff, targetInformationBytes); return type2; } @Override public String toString() {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 14.4K bytes - Click Count (0) -
src/test/java/jcifs/ntlmssp/NtlmMessageTest.java
// Test writeSecurityBufferContent byte[] dest = new byte[20]; byte[] src = "Content".getBytes(); int pos = 8; // Position where content should be written int off = 0; // Offset where position should be written // Test with non-null source array int bytesWritten = NtlmMessage.writeSecurityBufferContent(dest, pos, off, src);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 12.5K 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)