Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EncryptionNegotiateContext (2.05 sec)

  1. src/main/java/jcifs/internal/smb2/nego/EncryptionNegotiateContext.java

        private int[] ciphers;
    
    
        /**
         * 
         * @param config
         * @param ciphers
         */
        public EncryptionNegotiateContext ( Configuration config, int ciphers[] ) {
            this.ciphers = ciphers;
        }
    
    
        /**
         * 
         */
        public EncryptionNegotiateContext () {}
    
    
        /**
         * @return the ciphers
         */
        public int[] getCiphers () {
            return this.ciphers;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

                }, salt));
                this.preauthSalt = salt;
    
                if ( config.isEncryptionEnabled() ) {
                    negoContexts.add(new EncryptionNegotiateContext(config, new int[] {
                        EncryptionNegotiateContext.CIPHER_AES128_GCM, EncryptionNegotiateContext.CIPHER_AES128_CCM
                    }));
                }
            }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.5K bytes
    - Viewed (0)
Back to top