Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 385 for passwords (0.06 sec)

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

            * ویژگی `implicit`
            * ویژگی `clientCredentials`
            * ویژگی `authorizationCode`
        * اما یک "flow" خاص وجود دارد که می‌تواند به طور کامل برای مدیریت احراز هویت در همان برنامه به کار رود:
            * بررسی `password`: چند فصل بعدی به مثال‌های این مورد خواهیم پرداخت.
    * شیوه `openIdConnect`: یک روش برای تعریف نحوه کشف داده‌های احراز هویت OAuth2 به صورت خودکار.
        * کشف خودکار این موضوع را که در مشخصه OpenID Connect تعریف شده است، مشخص می‌کند.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/http/NtlmServletTest.java

            ntlmServlet.init(servletConfig);
            setupMocksForAuth();
    
            byte[] challenge = new byte[8];
            NtlmPasswordAuthentication ntlmAuth = new NtlmPasswordAuthentication(cifsContext, "TEST_DOMAIN", "user", "password");
    
            try (MockedStatic<NtlmSsp> ntlmSspMock = Mockito.mockStatic(NtlmSsp.class)) {
                ntlmSspMock.when(() -> NtlmSsp.authenticate(any(), any(), any(), any())).thenReturn(ntlmAuth);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/SecureKeyManager.java

            this.keyStorePassword = null;
        }
    
        /**
         * Create a secure key manager with KeyStore support
         *
         * @param keyStore the KeyStore to use for key storage
         * @param keyStorePassword password for the KeyStore
         */
        public SecureKeyManager(KeyStore keyStore, char[] keyStorePassword) {
            this.keyStore = keyStore;
            this.keyStorePassword = keyStorePassword != null ? keyStorePassword.clone() : null;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  4. cmd/admin-handlers-users_test.go

    		c.Fatalf("user could not create bucket: %v", err)
    	}
    
    	// 3.10. Check that user's password can be updated.
    	_, newSecretKey := mustGenerateCredentials(c)
    	err = s.adm.SetUser(ctx, accessKey, newSecretKey, madmin.AccountEnabled)
    	if err != nil {
    		c.Fatalf("Unable to update user's secret key: %v", err)
    	}
    	// 3.10.1 Check that old password no longer works.
    	err = client.MakeBucket(ctx, getRandomBucketName(), minio.MakeBucketOptions{})
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  5. docs/sts/README.md

    | [**AD/LDAP**](https://github.com/minio/minio/blob/master/docs/sts/ldap.md)             | Let AD/LDAP users request temporary credentials using AD/LDAP username and password.                                                          |
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  6. docs/es/docs/tutorial/security/oauth2-jwt.md

    # OAuth2 con Password (y hashing), Bearer con tokens JWT
    
    Ahora que tenemos todo el flujo de seguridad, hagamos que la aplicación sea realmente segura, usando tokens <abbr title="JSON Web Tokens">JWT</abbr> y hashing de contraseñas seguras.
    
    Este código es algo que puedes usar realmente en tu aplicación, guardar los hashes de las contraseñas en tu base de datos, etc.
    
    Vamos a empezar desde donde lo dejamos en el capítulo anterior e incrementarlo.
    
    ## Acerca de JWT
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  7. helm-releases/minio-2.0.1.tgz

    Additional pod labels podLabels: {} ## Configure resource requests and limits ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ ## resources: requests: memory: 16Gi ## List of users to be created after minio install ## users: ## Username, password and policy to be assigned to the user ## Default policies are [readonly|readwrite|writeonly|consoleAdmin|diagnostics] ## Add new policies as explained here https://docs.min.io/docs/minio-multi-user-quickstart-guide.html ## NOTE: this will fail if...
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 31 09:09:09 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  8. mvnw

        if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
          wget $QUIET "$wrapperUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath"
        else
          wget $QUIET --http-user="$MVNW_USERNAME" --http-password="$MVNW_PASSWORD" "$wrapperUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath"
        fi
      elif command -v curl >/dev/null; then
        log "Found curl ... using curl"
        [ "$MVNW_VERBOSE" = true ] && QUIET="" || QUIET="--silent"
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/filter/CorsFilterTest.java

            @Override
            public boolean authenticate(jakarta.servlet.http.HttpServletResponse response) {
                return false;
            }
    
            @Override
            public void login(String username, String password) {
            }
    
            @Override
            public void logout() {
            }
    
            @Override
            public java.util.Collection<jakarta.servlet.http.Part> getParts() {
                return null;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/NtlmContext.java

                        this.auth.getUsername(), this.workstation, this.ntlmsspFlags);
            }
    
            // Use secure password handling
            String passwordString = null;
            if (this.auth.isGuest()) {
                passwordString = this.transportContext.getConfig().getGuestPassword();
            } else {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
Back to top