Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isAllowNTLMFallback (0.24 sec)

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

            return this.delegate.getLanManCompatibility();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isAllowNTLMFallback()
         */
        @Override
        public boolean isAllowNTLMFallback () {
            return this.delegate.isAllowNTLMFallback();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isUseRawNTLM()
         */
        @Override
    Java
    - Registered: Sun Apr 21 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/smb/Kerb5Authenticator.java

                        foundKerberos |= mechs.contains(mech);
                    }
                    if ( ( !foundKerberos || this.forceFallback ) && this.canFallback && tc.getConfig().isAllowNTLMFallback() ) {
                        log.debug("Falling back to NTLM authentication");
                        return super.createContext(tc, targetDomain, host, initialToken, doSigning);
                    }
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

        }
    
    
        @Override
        public int getLanManCompatibility () {
            return this.lanmanCompatibility;
        }
    
    
        @Override
        public boolean isAllowNTLMFallback () {
            return this.allowNTLMFallback;
        }
    
    
        @Override
        public boolean isUseRawNTLM () {
            return this.useRawNTLM;
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  4. src/main/java/jcifs/Configuration.java

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