Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 349 for Authentication (0.17 sec)

  1. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

         * hashes. This is used exclusively by the {@code jcifs.http.NtlmSsp}
         * class which is in turn used by NTLM HTTP authentication functionality.
         *
         * @param domain the authentication domain
         * @param username the username to authenticate with
         * @param challenge the server challenge bytes
         * @param ansiHash the ANSI password hash
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. docs/ftp/README.md

    hmac-sha1-96
    ```
    
    ### Certificate-based authentication
    
    `--sftp=trusted-user-ca-key=...` specifies a file containing public key of certificate authority that is trusted
    to sign user certificates for authentication.
    
    Implementation is identical with "TrustedUserCAKeys" setting in OpenSSH server with exception that only one CA
    key can be defined.
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmContext.java

    import jcifs.smb1.util.Encdec;
    import jcifs.smb1.util.Hexdump;
    import jcifs.smb1.util.LogStream;
    
    /**
    For initiating NTLM authentication (including NTLMv2). If you want to add NTLMv2 authentication support to something this is what you want to use. See the code for details. Note that JCIFS does not implement the acceptor side of NTLM authentication.
     */
    
    public class NtlmContext {
    
        NtlmPasswordAuthentication auth;
        int ntlmsspFlags;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/Type2Message.java

        }
    
        /**
         * Returns the authentication target.
         *
         * @return A <code>String</code> containing the authentication target.
         */
        public String getTarget() {
            return this.target;
        }
    
        /**
         * Sets the authentication target.
         *
         * @param target
         *            The authentication target.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/Kerb5Authenticator.java

        /** The security context lifetime */
        private int contextLifetime = GSSContext.DEFAULT_LIFETIME;
        /** Flag indicating if fallback authentication is allowed */
        private boolean canFallback = false;
        /** Flag to force fallback authentication */
        private boolean forceFallback;
    
        static {
            PREFERRED_MECHS.add(new ASN1ObjectIdentifier("1.2.840.113554.1.2.2"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/NtlmSsp.java

     * <p>
     * How NTLMSSP is used in conjunction with HTTP and MSIE clients is
     * described in an <A HREF="http://www.innovation.ch/java/ntlm.html">NTLM
     * Authentication Scheme for HTTP</A>.  <p> Also, read <a
     * href="../../../ntlmhttpauth.html">jCIFS NTLM HTTP Authentication and
     * the Network Explorer Servlet</a> related information.
     */
    
    public class NtlmSsp implements NtlmFlags {
    
        /**
         * Default constructor.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmServlet.java

        /** The default domain for NTLM authentication */
        private String defaultDomain;
    
        /** The domain controller for authentication */
        private String domainController;
    
        /** Flag to enable load balancing across domain controllers */
        private boolean loadBalance;
    
        /** Flag to enable basic authentication */
        private boolean enableBasic;
    
        /** Flag to allow insecure basic authentication */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.1K bytes
    - Viewed (1)
  8. src/test/java/jcifs/http/NtlmServletTest.java

            ntlmServlet.service(request, response);
    
            // Verify that no authentication challenge is sent
            verify(response, never()).setHeader(eq("WWW-Authenticate"), anyString());
            verify(response, never()).setStatus(HttpServletResponse.SC_UNAUTHORIZED);
        }
    
        /**
         * Helper method to set up common mocks required for authentication tests.
         * @throws CIFSException
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

     * MSIE clients using NTLM SSP. This is similar to {@code Authentication:
     * BASIC} but weakly encrypted and without requiring the user to re-supply
     * authentication credentials.
     * <p>
     * Read <a href="../../../ntlmhttpauth.html">jCIFS NTLM HTTP Authentication and the Network Explorer Servlet</a> for complete details.
     */
    
    /**
     * An HTTP servlet filter that provides NTLM authentication support for SMB1 protocol.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  10. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/LegacyRepositorySystemTest.java

            repositorySystem.injectAuthentication(Arrays.asList(repository), Arrays.asList(server));
            Authentication authentication = repository.getAuthentication();
            assertNotNull(authentication);
            assertEquals("jason", authentication.getUsername());
            assertEquals("abc123", authentication.getPassword());
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top