Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for signingPreferred (0.86 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/jcifs/config/DelegatingConfigurationTest.java

            when(mockDelegate.isForceExtendedSecurity()).thenReturn(true).thenReturn(false);
    
            // When
            boolean encryptionEnabled = delegatingConfig.isEncryptionEnabled();
            boolean signingPreferred = delegatingConfig.isSigningEnabled();
            boolean signingEnforced = delegatingConfig.isSigningEnforced();
            boolean ipcSigningEnforced = delegatingConfig.isIpcSigningEnforced();
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 20.7K bytes
    - Click Count (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

        /** Force use of Unicode encoding regardless of negotiation */
        protected boolean forceUnicode = false;
        /** Whether SMB signing is preferred but not required */
        protected boolean signingPreferred = false;
        /** Whether SMB signing is enforced (required) */
        protected boolean signingEnforced = false;
        /** Whether to enforce signing for IPC connections */
        protected boolean ipcSigningEnforced = true;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  3. README.md

    jcifs.smb.client.username=guest
    jcifs.smb.client.password=
    
    # Protocol versions (SMB1 to SMB 3.1.1)
    jcifs.smb.client.minVersion=SMB1
    jcifs.smb.client.maxVersion=SMB311
    
    # Security
    jcifs.smb.client.signingPreferred=false
    jcifs.smb.client.signingEnforced=false
    jcifs.smb.client.encryptionEnforced=false
    jcifs.smb.client.disablePlainTextPasswords=true
    
    # Performance
    jcifs.smb.client.useBatching=true
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 09:24:52 GMT 2025
    - 6.2K bytes
    - Click Count (0)
  4. src/test/java/jcifs/config/PropertyConfigurationTest.java

            // Given
            Properties props = new Properties();
            props.setProperty("jcifs.smb.client.signingEnforced", "true");
            props.setProperty("jcifs.smb.client.signingPreferred", "true");
            props.setProperty("jcifs.smb.client.encryptionEnforced", "false");
    
            // When
            PropertyConfiguration testConfig = new PropertyConfiguration(props);
    
            // Then
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 11.3K bytes
    - Click Count (0)
  5. src/main/java/jcifs/Configuration.java

         *
         * @return maximum count of concurrent commands to announce
         */
        int getMaxMpxCount();
    
        /**
         *
         * Property {@code jcifs.smb.client.signingPreferred} (boolean, default false)
         *
         * @return whether to enable SMB signing (for everything), if available
         */
        boolean isSigningEnabled();
    
        /**
         *
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 25.4K bytes
    - Click Count (0)
Back to Top