Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Workstation (0.44 sec)

  1. src/test/java/jcifs/ntlmssp/Type1MessageTest.java

        }
    
        @Test
        @DisplayName("Should handle case sensitivity in domain and workstation")
        void testCaseSensitivity() {
            // Given
            String domain = "TestDomain";
            String workstation = "TestWorkstation";
    
            // When
            Type1Message type1 = new Type1Message(mockContext, 0, domain, workstation);
    
            // Then
            assertEquals(domain, type1.getSuppliedDomain());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/ntlmssp/Type1Message.java

        /**
         * Returns the supplied workstation name.
         *
         * @return A <code>String</code> containing the supplied workstation name.
         */
        public String getSuppliedWorkstation() {
            return suppliedWorkstation;
        }
    
        /**
         * Sets the supplied workstation name for this message.
         *
         * @param suppliedWorkstation The supplied workstation for this message.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

        }
    
        /**
         * Returns the workstation from which authentication is being performed.
         *
         * @return A <code>String</code> containing the workstation.
         */
        public String getWorkstation() {
            return workstation;
        }
    
        /**
         * Sets the workstation for this message.
         *
         * @param workstation The workstation.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmContext.java

                    .append(",ntlmsspFlags=0x")
                    .append(Hexdump.toHexString(this.ntlmsspFlags, 8))
                    .append(",workstation=")
                    .append(this.workstation)
                    .append(",isEstablished=")
                    .append(this.isEstablished)
                    .append(",state=")
                    .append(this.state)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/ntlmssp/Type3Message.java

        }
    
        /**
         * Returns the workstation from which authentication is being performed.
         *
         * @return A <code>String</code> containing the workstation.
         */
        public String getWorkstation() {
            return this.workstation;
        }
    
        /**
         * Sets the workstation for this message.
         *
         * @param workstation
         *            The workstation.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/ntlmssp/Type3MessageTest.java

            String domain = "TESTDOMAIN";
            String username = "testuser";
            String workstation = "TESTWS";
            int flags = NtlmFlags.NTLMSSP_NEGOTIATE_UNICODE | NtlmFlags.NTLMSSP_NEGOTIATE_NTLM;
    
            // When
            Type3Message type3 = new Type3Message(createMockContext(), type2, null, password, domain, username, workstation, flags);
    
            // Then
            assertNotNull(type3);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/NtlmContext.java

                    .append(",ntlmsspFlags=0x")
                    .append(Hexdump.toHexString(ntlmsspFlags, 8))
                    .append(",workstation=")
                    .append(workstation)
                    .append(",isEstablished=")
                    .append(isEstablished)
                    .append(",state=")
                    .append(state)
                    .append(",serverChallenge=");
            if (serverChallenge == null) {
                ret.append("null");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/http/NtlmSspTest.java

                message[124 + i * 2] = userBytes[i];
                message[124 + i * 2 + 1] = 0;
            }
    
            // 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];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ntlmssp/Type1Message.java

        }
    
        /**
         * Returns the supplied workstation name.
         *
         * @return A <code>String</code> containing the supplied workstation name.
         */
        public String getSuppliedWorkstation() {
            return this.suppliedWorkstation;
        }
    
        /**
         * Sets the supplied workstation name for this message.
         *
         * @param suppliedWorkstation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/NtStatus.java

        /** The SAM database does not have a computer account for this workstation trust relationship */
        int NT_STATUS_NO_TRUST_SAM_ACCOUNT = 0xC000018b;
        /** The trust relationship between the primary domain and the trusted domain failed */
        int NT_STATUS_TRUSTED_DOMAIN_FAILURE = 0xC000018c;
        /** The trust relationship between this workstation and the primary domain failed */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
Back to top