- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getTargetInformation (0.26 sec)
-
src/test/java/jcifs/tests/NtlmTest.java
Type2Message parsed = new Type2Message(t2.toByteArray()); assertArrayEquals(challenge, parsed.getChallenge()); assertNull(parsed.getTarget()); assertNull(parsed.getTargetInformation()); } @Test public void testParsingType2TargetInformation () throws IOException { int flags = 0; byte[] challenge = new byte[] {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 16 10:38:43 UTC 2018 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type2Message.java
* * @return A <code>byte[]</code> containing the target information block. * The target information block is used by the client to create an * NTLMv2 response. */ public byte[] getTargetInformation() { return targetInformation; } /** * Sets the target information block. * The target information block is used by the client to create * an NTLMv2 response. *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
* @return A <code>byte[]</code> containing the target information block. * The target information block is used by the client to create an * NTLMv2 response. */ public byte[] getTargetInformation () { return this.targetInformation; } /** * Sets the target information block. * The target information block is used by the client to create * an NTLMv2 response.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
return NtlmPasswordAuthentication.getNTLMv2Response(responseKeyNT, type2.getChallenge(), clientChallenge, nanos1601, type2.getTargetInformation()); } /** * Constructs the NT response to the given Type-2 message using * the supplied password. * * @param type2 The Type-2 message.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 22.9K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
setLMResponse(nt); setNTResponse(nt); break; case 3: case 4: case 5: byte[] ntlmClientChallengeInfo = type2.getTargetInformation(); List<AvPair> avPairs = ntlmClientChallengeInfo != null ? AvPairs.decode(ntlmClientChallengeInfo) : null; // if targetInfo has an MsvAvTimestamp
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 30.6K bytes - Viewed (0)