Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isUseRawNTLM (0.19 sec)

  1. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.isAllowNTLMFallback();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isUseRawNTLM()
         */
        @Override
        public boolean isUseRawNTLM () {
            return this.delegate.isUseRawNTLM();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isDisableSpnegoIntegrity()
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 17.6K bytes
    - Viewed (1)
  2. src/main/java/jcifs/config/BaseConfiguration.java

            return this.lanmanCompatibility;
        }
    
    
        @Override
        public boolean isAllowNTLMFallback () {
            return this.allowNTLMFallback;
        }
    
    
        @Override
        public boolean isUseRawNTLM () {
            return this.useRawNTLM;
        }
    
    
        @Override
        public boolean isDisableSpnegoIntegrity () {
            return this.disableSpnegoIntegrity;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  3. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         *      boolean)
         */
        @Override
        public SSPContext createContext ( CIFSContext tc, String targetDomain, String host, byte[] initialToken, boolean doSigning ) throws SmbException {
            if ( tc.getConfig().isUseRawNTLM() ) {
                return setupTargetName(tc, host, new NtlmContext(tc, this, doSigning));
            }
    
            try {
                if ( initialToken != null && initialToken.length > 0 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

        /**
         * Property <tt>jcifs.smb.useRawNTLM</tt> (boolean, default false)
         * 
         * @return whether to use raw NTLMSSP tokens instead of SPNEGO wrapped ones
         * @since 2.1
         */
        boolean isUseRawNTLM ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.disablePlainTextPasswords</tt> (boolean, default true)
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top