Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getPrimaryCipher (0.12 sec)

  1. 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: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:35:51 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. 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: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:15 UTC 2024
    - 87.2K bytes
    - Viewed (0)
Back to top