Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for updatePreauthHash (0.06 seconds)

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

  1. src/main/java/jcifs/smb/PreauthIntegrityService.java

         *
         * @param sessionId the session identifier
         * @param messageData the message data to include in hash
         * @throws CIFSException if update fails
         */
        public void updatePreauthHash(String sessionId, byte[] messageData) throws CIFSException {
            PreauthIntegrityContext context = sessionContexts.get(sessionId);
            if (context == null) {
                if (enforceIntegrity) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

            this.negotiated = resp.getResponse();
            if (resp.getResponse().getSelectedDialect().atLeast(DialectVersion.SMB311)) {
                updatePreauthHash(resp.getRequestRaw());
                updatePreauthHash(resp.getResponseRaw());
                if (log.isDebugEnabled()) {
                    log.debug("Preauth hash after negotiate " + Hexdump.toHexString(this.preauthIntegrityHash));
                }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 69.8K bytes
    - Click Count (0)
Back to Top