Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for EncryptionNegotiateContext (7.34 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/Smb2NegotiateResponse.java

                if ( ncr == null ) {
                    continue;
                }
                else if ( !foundEnc && ncr.getContextType() == EncryptionNegotiateContext.NEGO_CTX_ENC_TYPE ) {
                    foundEnc = true;
                    EncryptionNegotiateContext enc = (EncryptionNegotiateContext) ncr;
                    if ( !checkEncryptionContext(req, enc) ) {
                        return false;
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

                cipherId = EncryptionNegotiateContext.CIPHER_AES128_CCM;
            }
            else {
                throw new SmbUnsupportedOperationException();
            }
    
            switch ( cipherId ) {
            case EncryptionNegotiateContext.CIPHER_AES128_CCM:
            case EncryptionNegotiateContext.CIPHER_AES128_GCM:
            default:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top