- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for SpnegoContext (0.06 seconds)
-
src/main/java/jcifs/smb/SpnegoContext.java
import jcifs.util.Hexdump; /** * This class used to wrap a {@link SSPContext} to provide SPNEGO feature. * * @author Shun * */ class SpnegoContext implements SSPContext { private static final Logger log = LoggerFactory.getLogger(SpnegoContext.class); private static ASN1ObjectIdentifier SPNEGO_MECH_OID; static { try {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 14.5K bytes - Click Count (0) -
src/test/java/jcifs/smb/SpnegoContextTest.java
} private SpnegoContext newContext() { return new SpnegoContext(this.config, this.mechContext, this.mechs); } @Test @DisplayName("getSupportedMechs returns SPNEGO OID") void testGetSupportedMechs() { SpnegoContext ctx = newContext(); ASN1ObjectIdentifier[] supported = ctx.getSupportedMechs();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/Kerb5Authenticator.java
+ ",realm=" + this.realm + "]"; } private SpnegoContext createContext(CIFSContext tc, String targetDomain, String host) throws GSSException { return new SpnegoContext(tc.getConfig(), new Kerb5Context(host, this.service, this.user, this.userLifetime, this.contextLifetime,Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 13.2K bytes - Click Count (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
} } catch (SmbException e) { throw e; } catch (IOException e1) { log.debug("Ignoring invalid initial token", e1); } return new SpnegoContext(tc.getConfig(), setupTargetName(tc, host, new NtlmContext(tc, this, doSigning))); } private static SSPContext setupTargetName(CIFSContext tc, String host, NtlmContext ntlmContext) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 30.3K bytes - Click Count (0)