Home
last modified time | relevance | path

Searched refs:cipherName (Results 1 – 3 of 3) sorted by relevance

/external/libcups/cups/
Dtlscheck.c46 const char *cipherName = "UNKNOWN";/* Cipher suite name */ in main() local
223 cipherName = "TLS_NULL_WITH_NULL_NULL"; in main()
226 cipherName = "TLS_RSA_WITH_NULL_MD5"; in main()
229 cipherName = "TLS_RSA_WITH_NULL_SHA"; in main()
232 cipherName = "TLS_RSA_WITH_RC4_128_MD5"; in main()
235 cipherName = "TLS_RSA_WITH_RC4_128_SHA"; in main()
238 cipherName = "TLS_RSA_WITH_3DES_EDE_CBC_SHA"; in main()
241 cipherName = "TLS_RSA_WITH_NULL_SHA256"; in main()
244 cipherName = "TLS_RSA_WITH_AES_128_CBC_SHA256"; in main()
247 cipherName = "TLS_RSA_WITH_AES_256_CBC_SHA256"; in main()
[all …]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
DOperatorHelper.java161 String cipherName = null; in createAsymmetricWrapper() local
165 cipherName = (String)extraAlgNames.get(algorithm); in createAsymmetricWrapper()
168 if (cipherName == null) in createAsymmetricWrapper()
170 cipherName = (String)asymmetricWrapperAlgNames.get(algorithm); in createAsymmetricWrapper()
173 if (cipherName != null) in createAsymmetricWrapper()
178 return helper.createCipher(cipherName); in createAsymmetricWrapper()
183 if (cipherName.equals("RSA/ECB/PKCS1Padding")) in createAsymmetricWrapper()
211 String cipherName = (String)symmetricWrapperAlgNames.get(algorithm); in createSymmetricWrapper() local
213 if (cipherName != null) in createSymmetricWrapper()
218 return helper.createCipher(cipherName); in createSymmetricWrapper()
/external/conscrypt/common/src/jni/main/cpp/
DNativeCrypto.cpp8235 ScopedLocalRef<jstring> cipherName(env, in NativeCrypto_get_cipher_names() local
8238 cipherName.get()); in NativeCrypto_get_cipher_names()