- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for getMasterKey (0.06 seconds)
-
src/main/java/jcifs/smb/NtlmContext.java
log.trace(Hexdump.toHexString(token)); } this.masterKey = msg3.getMasterKey(); if (this.masterKey != null && (this.ntlmsspFlags & NtlmFlags.NTLMSSP_NEGOTIATE_EXTENDED_SESSIONSECURITY) != 0) { initSessionSecurity(msg3.getMasterKey()); } this.isEstablished = true; this.state++; return out;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 17.3K bytes - Click Count (1) -
src/test/java/jcifs/ntlmssp/Type3MessageTest.java
// Then // Master key should always be generated with extended session security or NTLMv2 assertNotNull(type3.getMasterKey()); assertEquals(16, type3.getMasterKey().length); } @Test @DisplayName("Should handle extended session security") void testExtendedSessionSecurity() throws Exception { // GivenCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 17.3K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/NtlmContext.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 7K bytes - Click Count (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
* @return A <code>byte[]</code> containing the session key. */ public byte[] getMasterKey() { return this.masterKey; } /** * Returns the session key. * * This is the encrypted session key included in the message, * if the actual session key is desired use {@link #getMasterKey()} instead. * * @return A <code>byte[]</code> containing the encrypted session key.
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 32.7K bytes - Click Count (0) -
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
* The real session key if the regular session key is actually * the encrypted version used for key exchange. * * @return A <code>byte[]</code> containing the session key. */ public byte[] getMasterKey() { return masterKey; } /** * Returns the session key. * * @return A <code>byte[]</code> containing the session key. */ public byte[] getSessionKey() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 24.1K bytes - Click Count (0)