- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for useExtendedSecurity (0.09 sec)
-
src/test/java/jcifs/config/BaseConfigurationTest.java
void testInitDefaultsWithFlagCombinations() throws CIFSException { BaseConfiguration testConfig = new BaseConfiguration(false); testConfig.useExtendedSecurity = true; testConfig.signingPreferred = true; testConfig.useNtStatus = true; testConfig.useUnicode = true; testConfig.forceUnicode = true; testConfig.initDefaults();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
/** Whether to use NT status codes instead of DOS error codes */ protected boolean useNtStatus = true; /** Whether to use extended security negotiation */ protected boolean useExtendedSecurity = true; /** Force use of extended security negotiation */ protected boolean forceExtendedSecurity = false; /** Whether to negotiate only SMB2 or higher protocols */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
boolean USE_NTSMBS = Config.getBoolean("jcifs.smb1.smb.client.useNTSmbs", true); /** Whether to use extended security */ boolean USE_EXTSEC = Config.getBoolean("jcifs.smb1.smb.client.useExtendedSecurity", true); /** NetBIOS hostname */ String NETBIOS_HOSTNAME = Config.getProperty("jcifs.smb1.netbios.hostname", null); /** LM compatibility level */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
* because it requires a lot of extra crypto not used by CIFS. */ Config.setProperty("jcifs.smb1.smb.lmCompatibility", "0"); Config.setProperty("jcifs.smb1.smb.client.useExtendedSecurity", "false"); final Enumeration e = filterConfig.getInitParameterNames(); while (e.hasMoreElements()) { name = (String) e.nextElement(); if (name.startsWith("jcifs.smb1.")) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
* because it requires a lot of extra crypto not used by CIFS. */ p.setProperty("jcifs.smb.lmCompatibility", "0"); p.setProperty("jcifs.smb.client.useExtendedSecurity", "false"); final Enumeration<String> e = filterConfig.getInitParameterNames(); while (e.hasMoreElements()) { name = e.nextElement(); if (name.startsWith("jcifs.")) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
* all be cleaned up an normalized in JCIFS 2.x. */ throw new SmbException( "NTLMv2 requires extended security (jcifs.smb.client.useExtendedSecurity must be true if jcifs.smb.lmCompatibility >= 3)"); } return null; } /** * Returns the effective user session key. * * @param tc the CIFS context
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
* all be cleaned up an normalized in JCIFS 2.x. */ throw new SmbException( "NTLMv2 requires extended security (jcifs.smb1.smb1.client.useExtendedSecurity must be true if jcifs.smb1.smb1.lmCompatibility >= 3)"); } return null; } /** * Returns the effective user session key. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.7K bytes - Viewed (0)