- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for isUseRawNTLM (0.14 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.isAllowNTLMFallback(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isUseRawNTLM() */ @Override public boolean isUseRawNTLM () { return this.delegate.isUseRawNTLM(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isDisableSpnegoIntegrity() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.lanmanCompatibility; } @Override public boolean isAllowNTLMFallback () { return this.allowNTLMFallback; } @Override public boolean isUseRawNTLM () { return this.useRawNTLM; } @Override public boolean isDisableSpnegoIntegrity () { return this.disableSpnegoIntegrity; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
* boolean) */ @Override public SSPContext createContext ( CIFSContext tc, String targetDomain, String host, byte[] initialToken, boolean doSigning ) throws SmbException { if ( tc.getConfig().isUseRawNTLM() ) { return setupTargetName(tc, host, new NtlmContext(tc, this, doSigning)); } try { if ( initialToken != null && initialToken.length > 0 ) {
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/Configuration.java
/** * Property <tt>jcifs.smb.useRawNTLM</tt> (boolean, default false) * * @return whether to use raw NTLMSSP tokens instead of SPNEGO wrapped ones * @since 2.1 */ boolean isUseRawNTLM (); /** * * Property <tt>jcifs.smb.client.disablePlainTextPasswords</tt> (boolean, default true) *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)