Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for testpassword (0.16 sec)

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

                    }
                } else if (cb instanceof PasswordCallback pc) {
                    char[] passwordChars = this.getPasswordAsCharArray();
                    if (passwordChars != null) {
                        pc.setPassword(passwordChars);
                    }
                }
            }
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

                final LocalUserCredential userCredential = credential;
                final String username = userCredential.getUser();
                final String password = userCredential.getPassword();
                if (!fessConfig.isAdminUser(username)) {
                    final OptionalEntity<FessUser> ldapUser = ComponentUtil.getLdapManager().login(username, password);
                    if (ldapUser.isPresent()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

         * used. There is no way to retrieve a users password in plain text unless
         * it is supplied by the user at runtime.
         *
         * @return the password or null if using raw hashes
         */
        public String getPassword() {
            return password;
        }
    
        /**
         * Return the domain and username in the format:
         * {@code domain\\username}. This is equivalent to {@code toString()}.
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         *
         * @return whether to send an AvTargetName with the NTLM exchange
         */
        boolean isSendNTLMTargetName();
    
        /**
         * Property {@code jcifs.smb.client.guestPassword}, defaults to empty string
         *
         * @return password used when guest authentication is requested
         */
        String getGuestPassword();
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top