Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getAppCipherKey (0.06 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

                inver = InvertibleCryptographer.createBlowfishCipher(fessConfig.getAppCipherKey());
            } else if ("des".equalsIgnoreCase(cipherAlgorism)) {
                inver = InvertibleCryptographer.createDesCipher(fessConfig.getAppCipherKey());
            } else if ("rsa".equalsIgnoreCase(cipherAlgorism)) {
                inver = InvertibleCryptographer.createRsaCipher(fessConfig.getAppCipherKey());
            } else {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java

                }
    
                @Override
                public String getAppCipherAlgorism() {
                    return "AES";
                }
    
                @Override
                public String getAppCipherKey() {
                    return "1234567890123456"; // 16 bytes for AES
                }
            });
    
            // Create test cipher - use proper constructor with simple implementation
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

        public void test_appCipherAlgorism() {
            assertEquals("aes", fessConfig.getAppCipherAlgorism());
        }
    
        public void test_appCipherKey() {
            assertEquals("___change__me___", fessConfig.getAppCipherKey());
        }
    
        public void test_appEncryptPropertyPattern() {
            assertEquals(".*password|.*key|.*token|.*secret", fessConfig.getAppEncryptPropertyPattern());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Secret key for encryption (change this value for production).
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getAppCipherKey();
    
        /**
         * Get the value for the key 'app.digest.algorism'. <br>
         * The value is, e.g. sha256 <br>
         * comment: Algorithm for digest calculation.
    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