Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 358 for authentication (0.22 sec)

  1. docs/de/docs/tutorial/security/index.md

        * Einem Cookie.
    * `http`: Standard-HTTP-Authentifizierungssysteme, einschließlich:
        * `bearer`: ein Header `Authorization` mit dem Wert `Bearer` plus einem Token. Dies wird von OAuth2 geerbt.
        * HTTP Basic Authentication.
        * HTTP Digest, usw.
    * `oauth2`: Alle OAuth2-Methoden zum Umgang mit Sicherheit (genannt „Flows“).
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

            assertFalse(exception.isAuthenticationError());
            assertFalse(exception.isFileSystemError());
            assertFalse(exception.isTransientError());
    
            // Authentication error
            exception = new SmbOperationException(SmbOperationException.ErrorCode.INVALID_CREDENTIALS, "Bad password");
            assertFalse(exception.isNetworkError());
            assertTrue(exception.isAuthenticationError());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/PreauthIntegrityServiceTest.java

    import org.junit.jupiter.api.DisplayName;
    import org.junit.jupiter.api.Test;
    
    import jcifs.CIFSException;
    import jcifs.smb.PreauthIntegrityService.PreauthIntegrityContext;
    
    /**
     * Comprehensive tests for enhanced pre-authentication integrity service.
     */
    public class PreauthIntegrityServiceTest {
    
        private PreauthIntegrityService preauthService;
        private SecureRandom secureRandom;
    
        @BeforeEach
        public void setUp() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

         * however the username can be {@code null} indication anonymous
         * credentials were used (e.g. some IPC$ services).
         */
    
        /**
         * Returns the principal used for authentication
         *
         * @return the authentication principal
         */
        public Principal getPrincipal() {
            return auth;
        }
    
        /**
         * Returns the last component of the target URL. This will
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

            authenticator.setResponseForType(SsoResponseType.METADATA, metadataResponse);
    
            String logoutUrl = "https://sso.example.com/logout";
            authenticator.setLogoutUrl(logoutUrl);
    
            // Execute authentication flow
            LoginCredential loginResult = authenticator.getLoginCredential();
            assertNotNull(loginResult);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java

         *            the client capabilities
         * @param previousSessionid
         *            the previous session ID for reconnection (or 0 for new session)
         * @param token
         *            the security token for authentication
         */
        public Smb2SessionSetupRequest(final CIFSContext context, final int securityMode, final int capabilities, final long previousSessionid,
                final byte[] token) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java

    import org.apache.maven.settings.crypto.SettingsDecryptionResult;
    import org.apache.maven.wagon.ResourceDoesNotExistException;
    import org.apache.maven.wagon.TransferFailedException;
    import org.apache.maven.wagon.authentication.AuthenticationInfo;
    import org.apache.maven.wagon.proxy.ProxyInfo;
    import org.codehaus.plexus.logging.Logger;
    
    /**
     * Manages <a href="https://maven.apache.org/wagon">Wagon</a> related operations in Maven.
     */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/context/CIFSContextCredentialWrapperTest.java

            }
        }
    
        @Test
        @DisplayName("Should return false if neither renewable nor NTLM authentication succeeds")
        void testRenewCredentials_NoRenewalPossible() {
            // Ensure credentials are not renewable
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java

         *
         * @param sessionKey
         *            the session key for signing
         * @param dialect
         *            the SMB2 dialect version
         * @param preauthIntegrityHash
         *            the pre-authentication integrity hash (for SMB 3.1.1)
         * @throws GeneralSecurityException
         *             if the signing algorithm cannot be initialized
         *
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/PreauthIntegrityTest.java

    import jcifs.Address;
    import jcifs.CIFSContext;
    import jcifs.Configuration;
    import jcifs.DialectVersion;
    import jcifs.internal.smb2.nego.Smb2NegotiateResponse;
    
    /**
     * Test Pre-Authentication Integrity improvements
     */
    @ExtendWith(MockitoExtension.class)
    @MockitoSettings(strictness = Strictness.LENIENT)
    public class PreauthIntegrityTest {
    
        @Mock
        private CIFSContext context;
    
        @Mock
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top