Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for blowfish2 (0.17 sec)

  1. src/main/java/org/codelibs/core/crypto/CachedCipher.java

    import org.codelibs.core.misc.Base64Util;
    
    public class CachedCipher {
    
        private static final String BLOWFISH = "Blowfish";
    
        private static final String RSA = "RSA";
    
        protected String algorithm = BLOWFISH;
    
        protected String transformation = RSA;
    
        protected String key;
    
        protected String charsetName = CoreLibConstants.UTF_8;
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  2. 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)) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.3K bytes
    - Viewed (0)
Back to top