aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2013-06-26 23:50:07 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-06-26 23:50:07 +0000
commitb0491060cfdd907dffc147e36c18dad1aca50502 (patch)
tree605882e17f05a0eb06c3df05aef23e0ad426188a
parent84e8ef1d129ace1b1300efc836f7aa672cb71c05 (diff)
parent7969f7200130a00ea0baf68d16f177b5fcb05a67 (diff)
downloadwpa_supplicant_6-jb-mr1.1-dev-plus-aosp.tar.gz
Merge "Remove obsolete keystore path"HEADmastermainjb-mr1.1-dev-plus-aosp
-rw-r--r--wpa_supplicant/src/crypto/tls_openssl.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/wpa_supplicant/src/crypto/tls_openssl.c b/wpa_supplicant/src/crypto/tls_openssl.c
index 3e5d8ca..f0c63d5 100644
--- a/wpa_supplicant/src/crypto/tls_openssl.c
+++ b/wpa_supplicant/src/crypto/tls_openssl.c
@@ -1754,23 +1754,6 @@ static int tls_connection_private_key(void *_ssl_ctx,
break;
}
-#ifdef ANDROID
- if (!ok && private_key && strncmp("keystore://", private_key, 11) == 0) {
- BIO *bio = BIO_from_keystore(&private_key[11]);
- EVP_PKEY *pkey = NULL;
- if (bio) {
- pkey = PEM_read_bio_PrivateKey(bio, NULL, NULL, NULL);
- BIO_free(bio);
- }
- if (pkey) {
- if (SSL_use_PrivateKey(conn->ssl, pkey) == 1) {
- ok = 1;
- }
- EVP_PKEY_free(pkey);
- }
- }
-#endif
-
while (!ok && private_key) {
#ifndef OPENSSL_NO_STDIO
if (SSL_use_PrivateKey_file(conn->ssl, private_key,