- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for isDisableSpnegoIntegrity (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.isUseRawNTLM(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isDisableSpnegoIntegrity() */ @Override public boolean isDisableSpnegoIntegrity() { return this.delegate.isDisableSpnegoIntegrity(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isEnforceSpnegoIntegrity() */
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 24.1K bytes - Click Count (0) -
src/main/java/jcifs/Configuration.java
* * * Property {@code jcifs.smb.client.disableSpnegoIntegrity} (boolean, false) * * @return whether to disable sending/verifying SPNEGO mechanismListMIC */ boolean isDisableSpnegoIntegrity(); /** * * Property {@code jcifs.smb.client.enforceSpnegoIntegrity} (boolean, false) * * @return whether to enforce verifying SPNEGO mechanismListMIC */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 25.4K bytes - Click Count (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
assertEquals(3, config.getLanManCompatibility()); assertTrue(config.isAllowNTLMFallback()); assertFalse(config.isUseRawNTLM()); assertFalse(config.isDisableSpnegoIntegrity()); assertTrue(config.isEnforceSpnegoIntegrity()); assertTrue(config.isSendNTLMTargetName()); assertEquals("GUEST", config.getGuestUsername());
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) -
src/test/java/jcifs/smb/SpnegoContextTest.java
@BeforeEach void setup() { // Default: do not enforce or disable SPNEGO integrity when(this.config.isEnforceSpnegoIntegrity()).thenReturn(false); when(this.config.isDisableSpnegoIntegrity()).thenReturn(false); this.mechs = new ASN1ObjectIdentifier[] { new ASN1ObjectIdentifier("1.2.3.4") }; } private SpnegoContext newContext() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 9.3K bytes - Click Count (0) -
src/main/java/jcifs/smb/SpnegoContext.java
this.mechContext = source; this.mechs = mech; this.disableMic = !config.isEnforceSpnegoIntegrity() && config.isDisableSpnegoIntegrity(); this.requireMic = config.isEnforceSpnegoIntegrity(); } /** * {@inheritDoc} * * @see jcifs.smb.SSPContext#getSupportedMechs() */ @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 14.5K bytes - Click Count (0)