- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for blowfish (0.71 sec)
-
src/main/java/org/codelibs/core/crypto/CachedCipher.java
} private static final String BLOWFISH = "Blowfish"; private static final String AES = "AES"; /** * The algorithm to use for the cipher. * Default is Blowfish for backward compatibility. */ protected String algorithm = BLOWFISH; /** * The transformation to use for the cipher when using Key objects. * Default is Blowfish to match the algorithm default. * <p>Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java
} protected FessSecurityResourceProvider createSecurityResourceProvider() { final InvertibleCryptographer inver; final String cipherAlgorism = fessConfig.getAppCipherAlgorism(); if ("blowfish".equalsIgnoreCase(cipherAlgorism)) { inver = InvertibleCryptographer.createBlowfishCipher(fessConfig.getAppCipherKey()); } else if ("des".equalsIgnoreCase(cipherAlgorism)) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.4K bytes - Viewed (0)