- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for NtlmContext (0.09 sec)
-
src/main/java/jcifs/smb/NtlmContext.java
* this is what you want to use. See the code for details. Note that JCIFS does not implement the acceptor side of NTLM * authentication. * */ public class NtlmContext implements SSPContext { private static final String S2C_SIGN_CONSTANT = "session key to server-to-client signing key magic constant";
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmContext.java
*/ public class NtlmContext { NtlmPasswordAuthentication auth; int ntlmsspFlags; String workstation; boolean isEstablished = false; byte[] serverChallenge = null; byte[] signingKey = null; String netbiosName = null; int state = 1; LogStream log; public NtlmContext(NtlmPasswordAuthentication auth, boolean doSigning) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
} private static SSPContext setupTargetName ( CIFSContext tc, String host, NtlmContext ntlmContext ) { if ( host != null && tc.getConfig().isSendNTLMTargetName() ) { ntlmContext.setTargetName(String.format("cifs/%s", host)); } return ntlmContext; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 18.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
throw se; } } } void sessionSetup( ServerMessageBlock andx, ServerMessageBlock andxResponse ) throws SmbException { synchronized (transport()) { NtlmContext nctx = null; SmbException ex = null; SmbComSessionSetupAndX request; SmbComSessionSetupAndXResponse response; byte[] token = new byte[0]; int state = 10;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 18.6K bytes - Viewed (0)