- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getMasterKey (0.14 sec)
-
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;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmContext.java
Hexdump.hexdump(log, token, 0, token.length); } if ((ntlmsspFlags & NtlmFlags.NTLMSSP_NEGOTIATE_SIGN) != 0) signingKey = msg3.getMasterKey(); isEstablished = true; state++; break; } catch (Exception e) { throw new SmbException(e.getMessage(), e);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.9K bytes - Viewed (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.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 30.6K bytes - Viewed (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() {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 22.9K bytes - Viewed (0)