HomeSort by relevance Sort by last modified time
    Searched full:ciphername (Results 1 - 2 of 2) sorted by null

  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
OperatorHelper.java 124 String cipherName = null;
128 cipherName = (String)extraAlgNames.get(algorithm);
131 if (cipherName == null)
133 cipherName = (String)asymmetricWrapperAlgNames.get(algorithm);
136 if (cipherName != null)
141 return helper.createCipher(cipherName);
146 if (cipherName.equals("RSA/ECB/PKCS1Padding"))
174 String cipherName = (String)symmetricWrapperAlgNames.get(algorithm);
176 if (cipherName != null)
181 return helper.createCipher(cipherName);
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
sslauth.c 101 const char *cipherName;
122 cipherName = ssl_cipherName[ss->sec.cipherType];
124 cipherName = ssl3_cipherName[ss->sec.cipherType];
126 PORT_Assert(cipherName);
127 if (cipherName) {
128 if (PORT_Strstr(cipherName, "DES")) isDes = PR_TRUE;
131 *cp = PORT_Strdup(cipherName);

Completed in 130 milliseconds