Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for workstation (0.24 sec)

  1. 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.
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 8K bytes
    - Viewed (0)
  2. 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.
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 30.6K 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.
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/NtlmTest.java

            String user = "TESTUSER";
            String workstation = "TESTWS";
            Type3Message t3 = new Type3Message(flags, lmResponse, ntResponse, domain, user, workstation);
    
            Type3Message parsed = new Type3Message(t3.toByteArray());
    
            assertEquals(domain, parsed.getDomain());
            assertEquals(user, parsed.getUser());
            assertEquals(workstation, parsed.getWorkstation());
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 16 10:38:43 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/NtlmContext.java

                    NtlmFlags.NTLMSSP_NEGOTIATE_KEY_EXCH;
            }
            this.workstation = Type1Message.getDefaultWorkstation();
            log = LogStream.getInstance();
        }
    
        public String toString() {
            String ret = "NtlmContext[auth=" + auth +
                ",ntlmsspFlags=0x" + Hexdump.toHexString(ntlmsspFlags, 8) +
                ",workstation=" + workstation +
                ",isEstablished=" + isEstablished +
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            assertEquals("", parameterMap.get("workstation"));
    
            parameters = "domain=D\nworkstation=W";
            parameterMap = ParameterUtil.parse(parameters);
            assertEquals(2, parameterMap.size());
            assertEquals("D", parameterMap.get("domain"));
            assertEquals("W", parameterMap.get("workstation"));
    
            parameters = "domain=DOMAIN\nworkstation=WORKSTATION";
            parameterMap = ParameterUtil.parse(parameters);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  7. 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
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Sep 02 12:55:08 GMT 2018
    - 7.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

                final Map<String, String> parameterMap = ParameterUtil.parse(getParameters());
                final String workstation = parameterMap.get("workstation");
                final String domain = parameterMap.get("domain");
                return new NTCredentials(getUsername(), getPassword(), workstation == null ? StringUtil.EMPTY : workstation,
                        domain == null ? StringUtil.EMPTY : domain);
            }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmContext.java

            };
        }
    
    
        @Override
        public String toString () {
            String ret = "NtlmContext[auth=" + this.auth + ",ntlmsspFlags=0x" + Hexdump.toHexString(this.ntlmsspFlags, 8) + ",workstation="
                    + this.workstation + ",isEstablished=" + this.isEstablished + ",state=" + this.state + ",serverChallenge=";
            if ( this.serverChallenge == null ) {
                ret += "null";
            }
            else {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

        * Indicates whether the OEM-formatted domain name in which the
        * client workstation has membership is supplied in the Type-1 message.
        * This is used in the negotation of local authentication. 
        */
        public static final int NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED =
                0x00001000;
    
        /**
        * Indicates whether the OEM-formatted workstation name is supplied
        * in the Type-1 message.  This is used in the negotiation of local
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.3K bytes
    - Viewed (1)
Back to top