Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for disablePlainTextPasswords (0.44 sec)

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

            if (value != null) {
                this.encryptionEnabled = Boolean.parseBoolean(value);
            }
    
            value = props.getProperty("jcifs.smb.client.disablePlainTextPasswords");
            if (value != null) {
                this.disablePlainTextPasswords = Boolean.parseBoolean(value);
            }
    
            value = props.getProperty("jcifs.netbios.wins");
            if (value != null) {
                try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/config/PropertyConfigurationTest.java

            // Given
            Properties props = new Properties();
            props.setProperty("jcifs.smb.client.useUnicode", "true");
            props.setProperty("jcifs.smb.client.disablePlainTextPasswords", "false");
            props.setProperty("jcifs.util.loglevel", "1");
    
            // When
            PropertyConfiguration testConfig = new PropertyConfiguration(props);
    
            // Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/config/DelegatingConfigurationTest.java

            boolean allowNTLMFallback = delegatingConfig.isAllowNTLMFallback();
            boolean useRawNTLM = delegatingConfig.isUseRawNTLM();
            boolean disablePlainTextPasswords = delegatingConfig.isDisablePlainTextPasswords();
            String guestUsername = delegatingConfig.getGuestUsername();
            String guestPassword = delegatingConfig.getGuestPassword();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

        /** Whether to enforce SPNEGO integrity checking */
        protected boolean enforceSpnegoIntegrity = true;
        /** Whether plain text passwords are disabled */
        protected boolean disablePlainTextPasswords = true;
        /** OEM encoding for non-Unicode operations */
        protected String oemEncoding = SmbConstants.DEFAULT_OEM_ENCODING;
        /** SMB flags2 field value */
        protected int flags2 = 0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         *
         * @return whether to use raw NTLMSSP tokens instead of SPNEGO wrapped ones
         * @since 2.1
         */
        boolean isUseRawNTLM();
    
        /**
         *
         * Property {@code jcifs.smb.client.disablePlainTextPasswords} (boolean, default true)
         *
         * @return whether the usage of plaintext passwords is prohibited, defaults to false
         */
        boolean isDisablePlainTextPasswords();
    
        /**
         *
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top