Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for workstationBytes (0.23 sec)

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

            }
    
            final String workstationName = getWorkstation();
            byte[] workstationBytes = null;
            if (workstationName != null && workstationName.length() != 0) {
                workstationBytes = unicode ? workstationName.getBytes(UNI_ENCODING) : workstationName.toUpperCase().getBytes(oemCp);
                size += workstationBytes.length;
            }
    
            final byte[] micBytes = getMic();
    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/test/java/jcifs/http/NtlmSspTest.java

            }
    
            // Add Workstation "WORKSTATION" in Unicode at offset 132
            String workstation = "WORKSTATION";
            byte[] workstationBytes = workstation.getBytes();
            for (int i = 0; i < workstationBytes.length; i++) {
                message[132 + i * 2] = workstationBytes[i];
                message[132 + i * 2 + 1] = 0;
            }
    
            // Total message length is 154 bytes
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top