Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for RSA (0.13 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;
    
        protected Queue<Cipher> encryptoQueue = new ConcurrentLinkedQueue<>();
    Java
    - Registered: Fri May 03 20:58:11 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

            } else if ("des".equalsIgnoreCase(cipherAlgorism)) {
                inver = InvertibleCryptographer.createDesCipher(fessConfig.getAppCipherKey());
            } else if ("rsa".equalsIgnoreCase(cipherAlgorism)) {
                inver = InvertibleCryptographer.createRsaCipher(fessConfig.getAppCipherKey());
            } else {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            defaultSettings.put("onelogin.saml2.security.want_xml_validation", "true");
            defaultSettings.put("onelogin.saml2.security.signature_algorithm", "http://www.w3.org/2000/09/xmldsig#rsa-sha1");
            defaultSettings.put("onelogin.saml2.organization.name", "CodeLibs");
            defaultSettings.put("onelogin.saml2.organization.displayname", "Fess");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/MediaType.java

      public static final MediaType FORM_DATA =
          createConstant(APPLICATION_TYPE, "x-www-form-urlencoded");
    
      /**
       * As described in <a href="https://www.rsa.com/rsalabs/node.asp?id=2138">PKCS #12: Personal
       * Information Exchange Syntax Standard</a>, PKCS #12 defines an archive file format for storing
       * many cryptography objects as a single file.
       *
       * @since 15.0
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 07 16:17:10 GMT 2023
    - 46.2K bytes
    - Viewed (0)
Back to top