- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for OneWayCryptographer (0.1 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProvider.java
import org.lastaflute.core.security.OneWayCryptographer; import org.lastaflute.core.security.SecurityResourceProvider; /** * @author jflute */ public class FessSecurityResourceProvider implements SecurityResourceProvider { protected final InvertibleCryptographer primaryInvertibleCryptographer; protected final OneWayCryptographer primaryOneWayCryptographer;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java
} final OneWayCryptographer oneWay; final String digestAlgorism = fessConfig.getAppDigestAlgorism(); if ("sha512".equalsIgnoreCase(digestAlgorism)) { oneWay = OneWayCryptographer.createSha512Cryptographer(); } else if ("md5".equalsIgnoreCase(digestAlgorism)) { oneWay = new OneWayCryptographer("MD5", OneWayCryptographer.ENCODING_UTF8); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 9.3K bytes - Viewed (0)