Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 349 for Authentication (0.59 sec)

  1. src/test/java/jcifs/http/NtlmHttpServletRequestTest.java

         */
        @Test
        void testGetAuthType() {
            // Arrange: Define the expected authentication type
            String expectedAuthType = "NTLM";
    
            // Act: Call the method under test
            String actualAuthType = ntlmRequest.getAuthType();
    
            // Assert: Verify that the returned authentication type is "NTLM"
            assertEquals(expectedAuthType, actualAuthType, "getAuthType should always return 'NTLM'.");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

         * @param domain The domain in which the user has an account.
         * @param user The username for the authenticating user.
         * @param workstation The workstation from which authentication is
         * taking place.
         */
        /**
         * Creates a Type-3 message in response to the given Type-2 message.
         *
         * @param type2 the Type-2 message to respond to
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/SmbTransportPoolTest.java

            }
    
            @Test
            @DisplayName("Should handle authentication failure during logon")
            void testLogonAuthenticationFailure() throws CIFSException {
                // Given
                doThrow(new CIFSException("Authentication failed")).when(transportPool).logon(context, address);
    
                // When & Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbSession.java

         * <p>
         * See also the <code>jcifs.smb1.smb1.client.logonShare</code> property.
         *
         * @param dc the domain controller to authenticate against
         * @param auth the authentication credentials
         * @throws SmbException if authentication fails or an SMB error occurs
         */
        public static void logon(final UniAddress dc, final NtlmPasswordAuthentication auth) throws SmbException {
            logon(dc, 0, auth);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  5. docs/en/docs/features.md

        * URL.
        * Email.
        * UUID.
        * ...and others.
    
    All the validation is handled by the well-established and robust **Pydantic**.
    
    ### Security and authentication { #security-and-authentication }
    
    Security and authentication integrated. Without any compromise with databases or data models.
    
    All the security schemes defined in OpenAPI, including:
    
    * HTTP Basic.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/orig/view/error/redirect.jsp

    } else if(!"badAuth".equals(type)) {
    	redirectPage.append("/error/notfound/?url=");
    	redirectPage.append(java.net.URLEncoder.encode(requestUri , "UTF-8"));
    	response.sendRedirect(redirectPage.toString());
    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Dec 23 06:18:48 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/error/redirect.jsp

    } else if(!"badAuth".equals(type)) {
    	redirectPage.append("/error/notfound/?url=");
    	redirectPage.append(java.net.URLEncoder.encode(requestUri , "UTF-8"));
    	response.sendRedirect(redirectPage.toString());
    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Dec 23 06:18:48 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java

            assertThrows(IllegalStateException.class, () -> closedAuth.getPasswordAsCharArray());
        }
    
        /**
         * Test authentication TTL (Time To Live)
         */
        @Test
        @DisplayName("Test authentication TTL expiration")
        public void testAuthenticationTTL() throws InterruptedException {
            NtlmPasswordAuthenticator auth = new NtlmPasswordAuthenticator("user", "TTLTestPass123!");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  9. cmd/batch-expire_test.go

      notify:
        endpoint: https://notify.endpoint # notification endpoint to receive job completion status
        token: Bearer xxxxx # optional authentication token for the notification endpoint
      
      retry:
        attempts: 10 # number of retries for the job before giving up
        delay: 500ms # least amount of delay between each retry
    `
    	var job BatchJobRequest
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 01 12:53:30 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ntlmssp/Type1Message.java

        }
    
        /**
         * Returns the supplied authentication domain.
         *
         * @return A <code>String</code> containing the supplied domain.
         */
        public String getSuppliedDomain() {
            return this.suppliedDomain;
        }
    
        /**
         * Sets the supplied authentication domain for this message.
         *
         * @param suppliedDomain
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top