- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getAppCipherKey (0.14 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java
} 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); inver = InvertibleCryptographer.createDesCipher(fessConfig.getAppCipherKey());
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) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
assertEquals("aes", fessConfig.getAppCipherAlgorithm()); } @Test public void test_appCipherKey() { assertEquals("___change__me___", fessConfig.getAppCipherKey()); } @Test public void test_appEncryptPropertyPattern() { assertEquals(".*password|.*key|.*token|.*secret", fessConfig.getAppEncryptPropertyPattern()); } @Test
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) -
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.algorithm'. <br> * The value is, e.g. sha256 <br> * comment: Algorithm for digest calculation.
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)