- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getPrimaryCipher (0.19 sec)
-
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.5K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.5K bytes - Viewed (0) -
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) -
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)