- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getCurrentPreauthHash (0.16 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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; } /**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) -
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)); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 11.1K bytes - Click Count (0)