- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for disableSpnegoIntegrity (0.12 sec)
-
src/main/java/jcifs/config/PropertyConfiguration.java
this.allowNTLMFallback = Config.getBoolean(p, "jcifs.smb.allowNTLMFallback", true); this.useRawNTLM = Config.getBoolean(p, "jcifs.smb.useRawNTLM", false); this.disableSpnegoIntegrity = Config.getBoolean(p, "jcifs.smb.client.disableSpnegoIntegrity", false); this.enforceSpnegoIntegrity = Config.getBoolean(p, "jcifs.smb.client.enforceSpnegoIntegrity", false);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
protected boolean useLargeReadWrite = true; protected int lanmanCompatibility = 3; protected boolean allowNTLMFallback = true; protected boolean useRawNTLM = false; protected boolean disableSpnegoIntegrity = false; protected boolean enforceSpnegoIntegrity = true; protected boolean disablePlainTextPasswords = true; protected String oemEncoding = SmbConstants.DEFAULT_OEM_ENCODING; protected int flags2 = 0;
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/test/java/jcifs/tests/AllTests.java
MUTATIONS.put("noSpnegoIntegrity", new TestMutation() { @Override public Map<String, String> mutate ( Map<String, String> cfg ) { cfg.put("jcifs.smb.client.disableSpnegoIntegrity", "true"); return cfg; } }); MUTATIONS.put("rawNTLM", new TestMutation() { @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * @return machine identifier (32 byte) */ byte[] getMachineId (); /** * * * Property <tt>jcifs.smb.client.disableSpnegoIntegrity</tt> (boolean, false) * * @return whether to disable sending/verifying SPNEGO mechanismListMIC */ boolean isDisableSpnegoIntegrity (); /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)