Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for isEncryptionEnabled (0.34 sec)

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

            return this.signingEnforced;
        }
    
        @Override
        public boolean isIpcSigningEnforced() {
            return this.ipcSigningEnforced;
        }
    
        @Override
        public boolean isEncryptionEnabled() {
            return this.encryptionEnabled;
        }
    
        @Override
        public boolean isCompressionEnabled() {
            return this.compressionEnabled;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Configuration.java

         * negotiation, SMB encryption is not implemented yet.
         *
         * @return whether SMB encryption is enabled
         * @since 2.1
         */
        boolean isEncryptionEnabled();
    
        /**
         * Property {@code jcifs.smb.client.preferredCiphers} (string, default "AES_128_GCM,AES_128_CCM,AES_256_GCM,AES_256_CCM")
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

         */
        public boolean isFailed() {
            return this.transport.isFailed();
        }
    
        /**
         * @return whether encryption is enabled for this session
         */
        public boolean isEncryptionEnabled() {
            return this.encryptionContext != null;
        }
    
        /**
         * @return the encryption context for this session, or null if encryption is not enabled
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
Back to top