- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for AV (0.01 sec)
-
src/test/java/jcifs/ntlmssp/Type3MessageTest.java
import jcifs.CIFSContext; import jcifs.Configuration; import jcifs.NameServiceClient; import jcifs.NetbiosAddress; import jcifs.ntlmssp.av.AvFlags; import jcifs.ntlmssp.av.AvPair; import jcifs.ntlmssp.av.AvPairs; import jcifs.ntlmssp.av.AvSingleHost; import jcifs.ntlmssp.av.AvTargetName; import jcifs.ntlmssp.av.AvTimestamp; /** * Test class for NTLMSSP Type 3 Message functionality */ @ExtendWith(MockitoExtension.class)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
import javax.crypto.Cipher; import jcifs.CIFSContext; import jcifs.CIFSException; import jcifs.SmbConstants; import jcifs.ntlmssp.av.AvFlags; import jcifs.ntlmssp.av.AvPair; import jcifs.ntlmssp.av.AvPairs; import jcifs.ntlmssp.av.AvSingleHost; import jcifs.ntlmssp.av.AvTargetName; import jcifs.ntlmssp.av.AvTimestamp; import jcifs.smb.NtlmUtil; import jcifs.util.Crypto; /** * Represents an NTLMSSP Type-3 message. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmUtil.java
* @param serverChallenge the server challenge bytes * @param clientChallenge the client challenge bytes * @param nanos1601 the timestamp in nanoseconds since 1601 * @param avPairs the AV pairs from the Type 2 message * @return the calculated response */ public static byte[] getNTLMv2Response(final byte[] responseKeyNT, final byte[] serverChallenge, final byte[] clientChallenge,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvPairsTest.java
package jcifs.ntlmssp.av; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.ArrayList; import java.util.Arrays;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0)