Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SpnegoContext (0.19 sec)

  1. 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 {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  2. 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();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. 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,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  4. 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) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
Back to top