Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Parameters (0.14 sec)

  1. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

                setLMResponse(getLMResponse(type2, password));
                setNTResponse(getNTResponse(type2, password));
            }
        }
    
        /**
         * Creates a Type-3 message with the specified parameters.
         *
         * @param flags The flags to apply to this message.
         * @param lmResponse The LanManager/LMv2 response.
         * @param ntResponse The NT/NTLMv2 response.
    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)
  2. src/main/java/jcifs/ntlmssp/Type3Message.java

            mac.update(type2);
            byte[] type3 = toByteArray();
            mac.update(type3);
            setMic(mac.digest());
        }
    
    
        /**
         * Creates a Type-3 message with the specified parameters.
         *
         * @param flags
         *            The flags to apply to this message.
         * @param lmResponse
         *            The LanManager/LMv2 response.
         * @param ntResponse
    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)
Back to top