- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for SPNEGO (0.03 sec)
-
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
protected static final String SPNEGO_LOGIN_CONF = "spnego.login.conf"; /** Configuration key for SPNEGO logger level. */ protected static final String SPNEGO_LOGGER_LEVEL = "spnego.logger.level"; /** The underlying SPNEGO authenticator instance. */ protected org.codelibs.spnego.SpnegoAuthenticator authenticator = null; /** * Constructs a new SPNEGO authenticator. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 17.2K bytes - Viewed (3) -
src/main/java/jcifs/smb/SpnegoContext.java
import org.slf4j.LoggerFactory; import jcifs.CIFSException; import jcifs.Configuration; import jcifs.spnego.NegTokenInit; import jcifs.spnego.NegTokenTarg; import jcifs.spnego.SpnegoException; import jcifs.spnego.SpnegoToken; import jcifs.util.Hexdump; /** * This class used to wrap a {@link SSPContext} to provide SPNEGO feature. * * @author Shun * */ class SpnegoContext implements SSPContext {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenInit.java
throw new IOException("Malformed SPNEGO token " + constructed); } final ASN1Sequence vec = (ASN1Sequence) constructed.getBaseObject(); final ASN1ObjectIdentifier spnego = (ASN1ObjectIdentifier) vec.getObjectAt(0); if (!SPNEGO_OID.equals(spnego)) { throw new IOException("Malformed SPNEGO token, OID " + spnego); }
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/test/java/jcifs/spnego/NegTokenInitTest.java
} @Test @DisplayName("Parse rejects wrong SPNEGO OID") void testParseRejectsWrongOid() throws Exception { byte[] token = buildInitToken(new ASN1ObjectIdentifier[] { OID_KRB }, 0, null, null, false, "1.2.840.113554.1.2.2", // Kerberos OID instead of SPNEGO OID null, null);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java
import jcifs.CIFSException; import jcifs.Configuration; import jcifs.spnego.NegTokenInit; @ExtendWith(MockitoExtension.class) class Kerb5AuthenticatorTest { @Mock CIFSContext tc; @Mock Configuration config; private static byte[] spnegoInitWithMechs(ASN1ObjectIdentifier... mechs) { // Build a minimal SPNEGO NegTokenInit containing the provided mechanisms
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
protected boolean allowNTLMFallback = true; /** Whether to use raw NTLM authentication without SPNEGO */ protected boolean useRawNTLM = false; /** Whether to disable SPNEGO integrity checking */ protected boolean disableSpnegoIntegrity = false; /** Whether to enforce SPNEGO integrity checking */ protected boolean enforceSpnegoIntegrity = true; /** Whether plain text passwords are disabled */
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/Configuration.java
* * @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 */ boolean isEnforceSpnegoIntegrity(); /**
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/smb/Kerb5Context.java
import org.ietf.jgss.GSSName; import org.ietf.jgss.MessageProp; import org.ietf.jgss.Oid; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSException; import jcifs.spnego.NegTokenInit; /** * This class used to provide Kerberos feature when setup GSSContext. * * @author Shun */ class Kerb5Context implements SSPContext {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13.5K bytes - Viewed (1) -
src/main/java/jcifs/smb/Kerb5Authenticator.java
import org.ietf.jgss.GSSCredential; import org.ietf.jgss.GSSException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSContext; import jcifs.CIFSException; import jcifs.spnego.NegTokenInit; /** * Base kerberos authenticator * * Uses a subject that contains kerberos credentials for use in GSSAPI context establishment. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.8K bytes - Viewed (0)