Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for workstationBytes (0.17 seconds)

  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();
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 32.7K bytes
    - Click Count (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
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 21 04:51:33 GMT 2025
    - 11.4K bytes
    - Click Count (1)
Back to Top