Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ___change__me___ (0.06 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

                        return "10000";
                    case FessConfig.APP_CIPHER_ALGORISM:
                        return "aes";
                    case FessConfig.APP_CIPHER_KEY:
                        return "___change__me___";
                    case FessConfig.APP_ENCRYPT_PROPERTY_PATTERN:
                        return ".*password|.*key|.*token|.*secret";
                    case FessConfig.APP_EXTENSION_NAMES:
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    search_engine.heartbeat_interval=10000
    
    # Cipher algorithm used for encryption.
    app.cipher.algorism=aes
    # Secret key for encryption (change this value for production).
    app.cipher.key=___change__me___
    # Algorithm for digest calculation.
    app.digest.algorism=sha256
    # Regex pattern for properties to encrypt.
    app.encrypt.property.pattern=.*password|.*key|.*token|.*secret
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** 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";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top