Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getPrimaryCipher (0.28 sec)

  1. src/main/java/org/codelibs/fess/util/ParameterUtil.java

                int unknownKey = 0;
                final Pattern properyPattern = Pattern.compile(ComponentUtil.getFessConfig().getAppEncryptPropertyPattern());
                final PrimaryCipher cipher = ComponentUtil.getPrimaryCipher();
                final String[] lines = value.split("[\r\n]");
                for (final String line : lines) {
                    if (StringUtil.isNotBlank(line)) {
                        final int pos = line.indexOf('=');
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

            return userCode;
        }
    
        protected String createUserCodeFromUserId(String userCode) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final PrimaryCipher cipher = ComponentUtil.getPrimaryCipher();
            userCode = cipher.encrypt(userCode);
            if (fessConfig.isValidUserCode(userCode)) {
                return userCode;
            }
            return null;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        }
    
        public static AuthenticationManager getAuthenticationManager() {
            return getComponent(AUTHENTICATION_MANAGER);
        }
    
        public static PrimaryCipher getPrimaryCipher() {
            return getComponent(PrimaryCipher.class);
        }
    
        public static CrawlerClientFactory getCrawlerClientFactory() {
            return getComponent(CrawlerClientFactory.class);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                    Constants.CIPHER_PREFIX + ComponentUtil.getPrimaryCipher().encrypt(value));
        }
    
        default String getLdapAdminSecurityCredentials() {
            final String value = getSystemProperty(Constants.LDAP_ADMIN_SECURITY_CREDENTIALS);
            if (StringUtil.isNotBlank(value) && value.startsWith(Constants.CIPHER_PREFIX)) {
                return ComponentUtil.getPrimaryCipher().decrypt(value.substring(Constants.CIPHER_PREFIX.length()));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top