- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for isAllowNTLMFallback (0.13 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getLanManCompatibility(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isAllowNTLMFallback() */ @Override public boolean isAllowNTLMFallback() { return this.delegate.isAllowNTLMFallback(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isUseRawNTLM() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
/** * * Property {@code jcifs.smb.allowNTLMFallback} (boolean, default true) * * @return whether to allow fallback from kerberos to NTLM */ boolean isAllowNTLMFallback(); /** * Property {@code jcifs.smb.useRawNTLM} (boolean, default false) * * @return whether to use raw NTLMSSP tokens instead of SPNEGO wrapped ones * @since 2.1 */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.disablePlainTextPasswords; } @Override public int getLanManCompatibility() { return this.lanmanCompatibility; } @Override public boolean isAllowNTLMFallback() { return this.allowNTLMFallback; } @Override public boolean isUseRawNTLM() { return this.useRawNTLM; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0)