Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for cipherA (0.19 sec)

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

            final PrimaryCipher cipher = ComponentUtil.getPrimaryCipher();
            ParameterUtil.parse(value).entrySet().stream().map(e -> {
                final String k = e.getKey();
                final String v = e.getValue();
                if (properyPattern.matcher(k).matches() && !v.startsWith(CIPHER_PREFIX)) {
                    return new Pair<>(k, CIPHER_PREFIX + cipher.encrypt(v));
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/common/ImplementedInvokerAssistant.java

    import org.dbflute.bhv.core.supplement.SequenceCacheHandler;
    import org.dbflute.bhv.exception.BehaviorExceptionThrower;
    import org.dbflute.bhv.exception.SQLExceptionHandlerFactory;
    import org.dbflute.cbean.cipher.GearedCipherManager;
    import org.dbflute.cbean.sqlclause.SqlClauseCreator;
    import org.dbflute.dbmeta.DBMetaProvider;
    import org.dbflute.dbway.DBDef;
    import org.dbflute.jdbc.SQLExceptionDigger;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java

            };
            roleQueryHelperImpl.cipher = cipher;
    
            Set<String> roleSet;
            boolean encrypted;
            String value;
    
            encrypted = true;
            value = cipher.encryptoText("");
            roleSet = decodedRoleList(roleQueryHelperImpl, value, encrypted);
            assertEquals(0, roleSet.size());
    
            encrypted = true;
            value = cipher.encryptoText("role1");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

            if (cookieNameMap == null) {
                cookieNameMap = new HashMap<>();
            }
            cookieNameMap.put(cookieName, roleName);
        }
    
        public void setCipher(final CachedCipher cipher) {
            this.cipher = cipher;
        }
    
        public void setValueSeparator(final String valueSeparator) {
            this.valueSeparator = valueSeparator;
        }
    
        public void setRoleSeparator(final String roleSeparator) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String search_engine_heartbeat_interval = "search_engine.heartbeat_interval";
    
        /** The key of the configuration. e.g. aes */
        String APP_CIPHER_ALGORISM = "app.cipher.algorism";
    
        /** The key of the configuration. e.g. ___change__me___ */
        String APP_CIPHER_KEY = "app.cipher.key";
    
        /** The key of the configuration. e.g. sha256 */
        String APP_DIGEST_ALGORISM = "app.digest.algorism";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  6. src/main/resources/fess.xml

    		<property name="encryptedHeaderValue">true</property>
    		<property name="cookieKey">"fessRoles"</property>
    		<property name="encryptedCookieValue">true</property>
    		<property name="cipher">
    			<component class="org.codelibs.core.crypto.CachedCipher">
    				<property name="key">"1234567890123456"</property>
    			</component>
    		</property>
    		<property name="valueSeparator">"\\n"</property>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jan 01 06:48:48 GMT 2022
    - 5.2K bytes
    - Viewed (0)
  7. src/main/resources/fess_config.properties

    search_engine.http.url=http://localhost:9201
    search_engine.http.ssl.certificate_authorities=
    search_engine.username=
    search_engine.password=
    search_engine.heartbeat_interval=10000
    
    # Cryptographer
    app.cipher.algorism=aes
    app.cipher.key=___change__me___
    app.digest.algorism=sha256
    app.encrypt.property.pattern=.*password|.*key|.*token|.*secret
    
    app.extension.names=
    
    app.audit.log.format=
    
    # JVM options
    jvm.crawler.options=\
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/Constants.java

        public static final String QUERIES = "queries";
    
        public static final String VIRTUAL_HOSTS = "virtualHosts";
    
        public static final String CIPHER_PREFIX = "{cipher}";
    
        public static final String SYSTEM_USER = "system";
    
        public static final String EMPTY_USER_ID = "<empty>";
    
        public static final String CRAWLER_PROCESS_COMMAND_THREAD_DUMP = "thread_dump";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

            return "http.proxy.password".equals(key) //
                    || "ldap.admin.security.credentials".equals(key) //
                    || "spnego.preauth.password".equals(key) //
                    || "app.cipher.key".equals(key) //
                    || "oic.client.id".equals(key) //
                    || "oic.client.secret".equals(key);
        }
    
        public static List<Map<String, String>> getBugReportItems() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  10. 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)) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
Back to top