Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for AES (0.03 seconds)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java

                    return "AES";
                }
    
                @Override
                public String getAppCipherKey() {
                    return "1234567890123456"; // 16 bytes for AES
                }
            });
    
            // Create test cipher - use proper constructor with simple implementation
            InvertibleCryptographer cookieCipher = new InvertibleCryptographer("AES", "1234567890123456", null) {
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

                        cipherAlgorithm);
                inver = InvertibleCryptographer.createBlowfishCipher(fessConfig.getAppCipherKey());
            } else if ("des".equalsIgnoreCase(cipherAlgorithm)) {
                logger.warn("DES cipher is deprecated due to its 56-bit key size vulnerability. Please consider migrating to AES. algorithm={}",
                        cipherAlgorithm);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  3. CLAUDE.md

    - `@Secured` annotation with role array (`"admin-user"`, `"admin-user-view"`)
    - Role-based query filtering via `RoleQueryHelper`
    - Authentication: Local (UserService), LDAP, OIDC, SAML, SPNEGO, Entra ID
    - Security features: AES encryption, SHA256 digest, LDAP injection prevention, password policy, rate limiting
    
    ## Naming Conventions
    
    | Element | Convention | Example |
    |---------|------------|---------|
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

        private OneWayCryptographer oneWayCryptographer;
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
    
            // Create InvertibleCryptographer with AES
            invertibleCryptographer = InvertibleCryptographer.createAesCipher("1234567890123456");
    
            // Create OneWayCryptographer with SHA256
            oneWayCryptographer = OneWayCryptographer.createSha256Cryptographer();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

                    case FessConfig.search_engine_heartbeat_interval:
                        return "10000";
                    case FessConfig.APP_CIPHER_ALGORITHM:
                        return "aes";
                    case FessConfig.APP_CIPHER_KEY:
                        return "___change__me___";
                    case FessConfig.APP_ENCRYPT_PROPERTY_PATTERN:
                        return ".*password|.*key|.*token|.*secret";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 24.6K bytes
    - Click Count (0)
  6. src/main/resources/fess_config.properties

    search_engine.password=
    # Interval (ms) for heartbeat checks to the search engine.
    search_engine.heartbeat_interval=10000
    
    # Cipher algorithm used for encryption.
    app.cipher.algorithm=aes
    # Secret key for encryption (change this value for production).
    app.cipher.key=___change__me___
    # Algorithm for digest calculation.
    app.digest.algorithm=sha256
    # Regex pattern for properties to encrypt.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 10000 */
        String search_engine_heartbeat_interval = "search_engine.heartbeat_interval";
    
        /** The key of the configuration. e.g. aes */
        String APP_CIPHER_ALGORITHM = "app.cipher.algorithm";
    
        /** The key of the configuration. e.g. ___change__me___ */
        String APP_CIPHER_KEY = "app.cipher.key";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top