Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getPreferredCiphers (0.21 seconds)

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

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

        }
    
        @Override
        public boolean isCompressionEnabled() {
            return this.delegate.isCompressionEnabled();
        }
    
        @Override
        public String getPreferredCiphers() {
            return this.delegate.getPreferredCiphers();
        }
    
        @Override
        public boolean isAES256Enabled() {
            return this.delegate.isAES256Enabled();
        }
    
        /**
         * {@inheritDoc}
         *
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 24.1K bytes
    - Click Count (0)
  2. src/main/java/jcifs/Configuration.java

         *
         * @return preferred encryption cipher list in order of preference for SMB3 encryption
         * @since 2.2
         */
        String getPreferredCiphers();
    
        /**
         * Property {@code jcifs.smb.client.aes256Enabled} (boolean, default true)
         *
         * @return whether AES-256 encryption ciphers are enabled for SMB3.x
         * @since 2.2
         */
    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)
  3. src/main/java/jcifs/config/BaseConfiguration.java

            return this.encryptionEnabled;
        }
    
        @Override
        public boolean isCompressionEnabled() {
            return this.compressionEnabled;
        }
    
        @Override
        public String getPreferredCiphers() {
            return this.preferredCiphers;
        }
    
        @Override
        public boolean isAES256Enabled() {
            return this.aes256Enabled;
        }
    
        @Override
    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)
Back to Top