Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OneWayCryptographer (0.99 sec)

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

            invertibleCryptographer = InvertibleCryptographer.createAesCipher("1234567890123456");
    
            // Create OneWayCryptographer with SHA256
            oneWayCryptographer = OneWayCryptographer.createSha256Cryptographer();
    
            securityResourceProvider = new FessSecurityResourceProvider(invertibleCryptographer, oneWayCryptographer);
        }
    
        // Test constructor
        public void test_constructor_withValidParameters() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProvider.java

    import org.lastaflute.core.security.OneWayCryptographer;
    import org.lastaflute.core.security.SecurityResourceProvider;
    
    /**
     * The provider of security resource.
     *
     * @author jflute
     */
    public class FessSecurityResourceProvider implements SecurityResourceProvider {
    
        protected final InvertibleCryptographer primaryInvertibleCryptographer;
        protected final OneWayCryptographer primaryOneWayCryptographer;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
Back to top