Home
last modified time | relevance | path

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

/external/libcups/cups/
Dtlscheck.c42 const char *cipherName = "UNKNOWN";/* Cipher suite name */ in main() local
229 cipherName = "TLS_NULL_WITH_NULL_NULL"; in main()
232 cipherName = "TLS_RSA_WITH_NULL_MD5"; in main()
235 cipherName = "TLS_RSA_WITH_NULL_SHA"; in main()
238 cipherName = "TLS_RSA_WITH_RC4_128_MD5"; in main()
241 cipherName = "TLS_RSA_WITH_RC4_128_SHA"; in main()
244 cipherName = "TLS_RSA_WITH_3DES_EDE_CBC_SHA"; in main()
247 cipherName = "TLS_RSA_WITH_NULL_SHA256"; in main()
250 cipherName = "TLS_RSA_WITH_AES_128_CBC_SHA256"; in main()
253 cipherName = "TLS_RSA_WITH_AES_256_CBC_SHA256"; in main()
[all …]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
DOperatorHelper.java249 String cipherName = null; in createAsymmetricWrapper() local
253 cipherName = (String)extraAlgNames.get(algorithm); in createAsymmetricWrapper()
256 if (cipherName == null) in createAsymmetricWrapper()
258 cipherName = (String)asymmetricWrapperAlgNames.get(algorithm); in createAsymmetricWrapper()
261 if (cipherName != null) in createAsymmetricWrapper()
266 return helper.createCipher(cipherName); in createAsymmetricWrapper()
271 if (cipherName.equals("RSA/ECB/PKCS1Padding")) in createAsymmetricWrapper()
299 String cipherName = (String)symmetricWrapperAlgNames.get(algorithm); in createSymmetricWrapper() local
301 if (cipherName != null) in createSymmetricWrapper()
306 return helper.createCipher(cipherName); in createSymmetricWrapper()
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc9382 ScopedLocalRef<jstring> cipherName(env, in NativeCrypto_get_cipher_names() local
9385 cipherName.get()); in NativeCrypto_get_cipher_names()