Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getMasterKey (0.2 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;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
  2. 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);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.9K bytes
    - Viewed (0)
  3. 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.
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 30.6K bytes
    - Viewed (0)
  4. 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() {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.9K bytes
    - Viewed (0)
Back to top