- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getPrimaryCipher (0.08 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 Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
*/ 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 Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K 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 Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
return getComponent(AUTHENTICATION_MANAGER); } /** * Gets the primary cipher component. * @return The primary cipher. */ public static PrimaryCipher getPrimaryCipher() { return getComponent(PrimaryCipher.class); } /** * Gets the crawler client factory component. * @return The crawler client factory. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0)