- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for nTOWFv1 (0.19 sec)
-
src/test/java/jcifs/smb/NtlmUtilTest.java
@DisplayName("nTOWFv1 equals getNTHash across inputs") void testNTOWFv1_delegatesToGetNTHash(String password) { // Act byte[] h1 = NtlmUtil.nTOWFv1(password); byte[] h2 = NtlmUtil.getNTHash(password); // Assert assertArrayEquals(h2, h1, "nTOWFv1 should return NT hash"); assertEquals(16, h1.length, "NT hash length is 16 bytes");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
/** * Creates the NTLM2 response for the supplied information. * * @param nTOWFv1 the NTOWFv1 hash * @param serverChallenge the server challenge bytes * @param clientChallenge the client challenge bytes * @return the NTLM2 response bytes */ public static byte[] getNTLM2Response(final byte[] nTOWFv1, final byte[] serverChallenge, final byte[] clientChallenge) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmUtil.java
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/main/java/jcifs/smb1/ntlmssp/Type3Message.java
// NTLMv1 w/ NTLM2 session sec and key exch all been verified with a debug build of smbclient final byte[] responseKeyNT = NtlmPasswordAuthentication.nTOWFv1(password); final byte[] ntlm2Response = NtlmPasswordAuthentication.getNTLM2Response(responseKeyNT, type2.getChallenge(), clientChallenge);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 24.1K bytes - Viewed (0)