- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for writeSecurityBufferContent (0.2 sec)
-
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 Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 30.6K bytes - Viewed (0) -
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 ( IOException ex ) { throw new IllegalStateException(ex.getMessage());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 02 12:55:08 UTC 2018 - 7.8K 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 Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.4K bytes - Viewed (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 ( byte[] dest, int pos, int off, byte[] src ) { writeULong(dest, off, pos); if ( src != null && src.length > 0 ) { System.arraycopy(src, 0, dest, pos, src.length);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0)