Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getMasterKey (0.08 sec)

  1. 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 Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  2. 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 {
            // Given
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmContext.java

                        }
                    }
    
                    if ((ntlmsspFlags & NtlmFlags.NTLMSSP_NEGOTIATE_SIGN) != 0) {
                        signingKey = msg3.getMasterKey();
                    }
    
                    isEstablished = true;
                    state++;
                    break;
                } catch (final Exception e) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7K bytes
    - Viewed (0)
  4. 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 Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  5. 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 Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
Back to top