Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for encryptPassword (0.26 sec)

  1. src/main/java/org/codelibs/fess/app/service/UserService.java

            if (changed) {
                userBhv.selectEntity(cb -> cb.query().setName_Equal(username)).ifPresent(entity -> {
                    final String encodedPassword = fessLoginAssist.encryptPassword(password);
                    entity.setPassword(encodedPassword);
                    userBhv.insertOrUpdate(entity, op -> op.setRefreshPolicy(Constants.TRUE));
                }).orElse(() -> {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

                    if (ldapUser.isPresent()) {
                        return ldapUser;
                    }
                }
                return doFindLoginUser(username, encryptPassword(password));
            });
            final LoginCredentialResolver loginResolver = new LoginCredentialResolver(resolver);
            for (final SsoAuthenticator auth : ComponentUtil.getSsoManager().getAuthenticators()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

                if (form.crudMode.intValue() == CrudMode.CREATE || StringUtil.isNotBlank(form.password)) {
                    final String encodedPassword = ComponentUtil.getComponent(FessLoginAssist.class).encryptPassword(form.password);
                    entity.setOriginalPassword(form.password);
                    entity.setPassword(encodedPassword);
                }
                return entity;
            });
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                                                    ComponentUtil.getComponent(FessLoginAssist.class)
                                                            .encryptPassword(fessConfig.getIndexUserInitialPassword()));
                                        }
                                        final IndexRequestBuilder requestBuilder = client.prepareIndex().setIndex(configIndex)
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
  5. compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

        public static final String ALSO_MAKE_DEPENDENTS = "amd";
    
        public static final String LOG_FILE = "l";
    
        public static final String ENCRYPT_MASTER_PASSWORD = "emp";
    
        public static final String ENCRYPT_PASSWORD = "ep";
    
        public static final String THREADS = "T";
    
        public static final String BUILDER = "b";
    
        public static final String NO_TRANSFER_PROGRESS = "ntp";
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                throw new ExitException(1);
            } else if (cliRequest.commandLine.hasOption(CLIManager.ENCRYPT_PASSWORD)) {
                String passwd = cliRequest.commandLine.getOptionValue(CLIManager.ENCRYPT_PASSWORD);
    
                if (passwd == null) {
                    Console cons = System.console();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
Back to top