Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for InvertibleCryptographer (0.84 sec)

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

                    return "1234567890123456"; // 16 bytes for AES
                }
            });
    
            // Create test cipher - use proper constructor with simple implementation
            InvertibleCryptographer cookieCipher = new InvertibleCryptographer("AES", "1234567890123456", null) {
                @Override
                public String encrypt(String plainText) {
                    return "encrypted:" + plainText;
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

            final InvertibleCryptographer inver;
            final String cipherAlgorism = fessConfig.getAppCipherAlgorism();
            if ("blowfish".equalsIgnoreCase(cipherAlgorism)) {
                inver = InvertibleCryptographer.createBlowfishCipher(fessConfig.getAppCipherKey());
            } else if ("des".equalsIgnoreCase(cipherAlgorism)) {
                inver = InvertibleCryptographer.createDesCipher(fessConfig.getAppCipherKey());
    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/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

            super.setUp();
    
            // Create InvertibleCryptographer with AES
            invertibleCryptographer = InvertibleCryptographer.createAesCipher("1234567890123456");
    
            // Create OneWayCryptographer with SHA256
            oneWayCryptographer = OneWayCryptographer.createSha256Cryptographer();
    
            securityResourceProvider = new FessSecurityResourceProvider(invertibleCryptographer, oneWayCryptographer);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProvider.java

    import org.lastaflute.core.security.InvertibleCryptographer;
    import org.lastaflute.web.servlet.cookie.CookieResourceProvider;
    
    /**
     * The provider of cookie resource.
     *
     * @author jflute
     */
    public class FessCookieResourceProvider implements CookieResourceProvider {
    
        protected final FessConfig harborConfig;
        protected final InvertibleCryptographer cookieCipher;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProvider.java

    import org.lastaflute.core.security.InvertibleCryptographer;
    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;
    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