Fix typo in name of des-ede mapping

This was mapping 2-key 3DES to regular DES thus resulting in all
encryption using 2-key 3DES having the wrong answers.

(cherry picked from commit 55caed999846897bcf949828e6e367bf8d7d9909)

Bug: 31081987
Change-Id: I44ba12dcf51d57952cf3ba501381d144d271a2a6
(cherry picked from commit 0af37f8ed62d0b4eb0f1c68fdd6e156ca570c6a3)
diff --git a/src/main/native/org_conscrypt_NativeCrypto.cpp b/src/main/native/org_conscrypt_NativeCrypto.cpp
index fe08d7c..0989fb0 100644
--- a/src/main/native/org_conscrypt_NativeCrypto.cpp
+++ b/src/main/native/org_conscrypt_NativeCrypto.cpp
@@ -4757,7 +4757,7 @@
     } else if (strcasecmp(alg, "des-cbc") == 0) {
         cipher = EVP_des_cbc();
     } else if (strcasecmp(alg, "des-ede-cbc") == 0) {
-        cipher = EVP_des_cbc();
+        cipher = EVP_des_ede_cbc();
     } else if (strcasecmp(alg, "des-ede3-cbc") == 0) {
         cipher = EVP_des_ede3_cbc();
     } else if (strcasecmp(alg, "aes-128-ecb") == 0) {