- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for writeSecurityBufferContent (0.15 sec)
-
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);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
pos += 16; } pos += writeSecurityBufferContent(type3, pos, lmOff, lmResponseBytes); pos += writeSecurityBufferContent(type3, pos, ntOff, ntResponseBytes); pos += writeSecurityBufferContent(type3, pos, domOff, domainBytes); pos += writeSecurityBufferContent(type3, pos, userOff, userBytes); pos += writeSecurityBufferContent(type3, pos, wsOff, workstationBytes);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (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() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0)