Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCurrentPreauthHash (0.48 sec)

  1. src/test/java/jcifs/smb/PreauthIntegrityServiceTest.java

            assertNotNull(preauthService.getCurrentPreauthHash(sessionId1));
            assertNotNull(preauthService.getCurrentPreauthHash(sessionId2));
    
            preauthService.cleanup();
    
            assertNull(preauthService.getCurrentPreauthHash(sessionId1));
            assertNull(preauthService.getCurrentPreauthHash(sessionId2));
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/PreauthIntegrityService.java

        /**
         * Gets the current preauth hash for a session.
         *
         * @param sessionId the session identifier
         * @return the current hash, or null if no context exists
         */
        public byte[] getCurrentPreauthHash(String sessionId) {
            PreauthIntegrityContext context = sessionContexts.get(sessionId);
            return context != null ? context.getCurrentHash() : null;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 12.1K bytes
    - Viewed (0)
Back to top