- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for signingPreferred (0.25 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/config/BaseConfiguration.java
/** Force use of Unicode encoding regardless of negotiation */ protected boolean forceUnicode = false; /** Whether SMB signing is preferred but not required */ protected boolean signingPreferred = false; /** Whether SMB signing is enforced (required) */ protected boolean signingEnforced = false; /** Whether to enforce signing for IPC connections */ protected boolean ipcSigningEnforced = true;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 36.5K bytes - Click Count (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
if (value != null) { this.useBatching = Boolean.parseBoolean(value); } value = props.getProperty("jcifs.smb.client.signingPreferred"); if (value != null) { this.signingPreferred = Boolean.parseBoolean(value); } value = props.getProperty("jcifs.smb.client.signingEnforced"); if (value != null) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:49:49 GMT 2025 - 13.3K bytes - Click Count (0) -
src/test/java/jcifs/config/PropertyConfigurationTest.java
// Given Properties props = new Properties(); props.setProperty("jcifs.smb.client.signingEnforced", "true"); props.setProperty("jcifs.smb.client.signingPreferred", "true"); props.setProperty("jcifs.smb.client.encryptionEnforced", "false"); // When PropertyConfiguration testConfig = new PropertyConfiguration(props); // ThenCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.3K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
boolean USE_NTSTATUS = Config.getBoolean("jcifs.smb1.smb.client.useNtStatus", true); /** Whether signing is preferred */ boolean SIGNPREF = Config.getBoolean("jcifs.smb1.smb.client.signingPreferred", false); /** Whether to use NT SMBs */ boolean USE_NTSMBS = Config.getBoolean("jcifs.smb1.smb.client.useNTSmbs", true); /** Whether to use extended security */
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 10.3K bytes - Click Count (0) -
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();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 20.6K bytes - Click Count (0)