Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setBindingHash (0.89 sec)

  1. src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java

        public byte[] getBindingHash() {
            return bindingHash;
        }
    
        /**
         * Set channel binding hash
         *
         * @param bindingHash binding hash bytes
         */
        public void setBindingHash(byte[] bindingHash) {
            this.bindingHash = bindingHash;
        }
    
        /**
         * Check if this is the primary channel
         *
         * @return true if primary
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

            // Calculate channel binding hash per MS-SMB2 3.2.5.3.1
            byte[] bindingInfo = calculateBindingInfo(channel);
            byte[] bindingHash = calculateBindingHash(bindingInfo);
            channel.setBindingHash(bindingHash);
    
            // Create session setup request with binding flag
            Smb2SessionSetupRequest request = new Smb2SessionSetupRequest(context, 0x03, // SMB2_NEGOTIATE_SIGNING_ENABLED | SMB2_NEGOTIATE_SIGNING_REQUIRED
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
  3. docs/smb3-features/03-multi-channel-design.md

            // Calculate channel binding hash
            byte[] bindingInfo = calculateBindingInfo(channel);
            byte[] bindingHash = calculateBindingHash(bindingInfo);
            channel.setBindingHash(bindingHash);
            
            // Send session setup with channel binding
            Smb2SessionSetupRequest request = new Smb2SessionSetupRequest();
            request.setSessionId(session.getSessionId());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
Back to top