aboutsummaryrefslogtreecommitdiffstats
path: root/hs20
diff options
context:
space:
mode:
authorJouni Malinen <jouni@qca.qualcomm.com>2015-12-04 14:06:53 +0200
committerVidyullatha Kanchanapally <vidyullatha@codeaurora.org>2016-01-11 08:01:27 +0530
commit038eaef6dcd55478b531382e6a394630d9525260 (patch)
tree65aab9d178a34ca794f14ee14ac37ca9095fe0ee /hs20
parent667e816f992fc998d5da2410055bb9e35ca78e51 (diff)
downloadandroid_external_wpa_supplicant_8-038eaef6dcd55478b531382e6a394630d9525260.tar.gz
android_external_wpa_supplicant_8-038eaef6dcd55478b531382e6a394630d9525260.tar.bz2
android_external_wpa_supplicant_8-038eaef6dcd55478b531382e6a394630d9525260.zip
HTTP (curl): OCSP with BoringSSL
This adds experimental support for using OCSP with libcurl that is built against BoringSSL. This needs small modifications to libcurl to allow CURLOPT_SSL_VERIFYSTATUS to be used to call SSL_enable_ocsp_stapling(connssl->handle) in ossl_connect_step1(). Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com> Git-commit: 8d27efa814e8f2c8bb4e26c1389a0cb60f8c6991 Git-repo : git://w1.fi/srv/git/hostap.git Change-Id: Ib73d598d2f9a31adfa9881d6a0ff9afb262e7adf CRs-fixed: 960177
Diffstat (limited to 'hs20')
-rw-r--r--hs20/client/Android.mk1
-rw-r--r--hs20/client/Makefile1
2 files changed, 2 insertions, 0 deletions
diff --git a/hs20/client/Android.mk b/hs20/client/Android.mk
index a71e86d0..e4db3220 100644
--- a/hs20/client/Android.mk
+++ b/hs20/client/Android.mk
@@ -54,6 +54,7 @@ OBJS += ../../src/crypto/crypto_internal.c
OBJS += ../../src/crypto/md5-internal.c
OBJS += ../../src/crypto/sha1-internal.c
OBJS += ../../src/crypto/sha256-internal.c
+OBJS += ../../src/crypto/tls_openssl_ocsp.c
L_CFLAGS += -DEAP_TLS_OPENSSL
diff --git a/hs20/client/Makefile b/hs20/client/Makefile
index 94cd5f14..fc9b6194 100644
--- a/hs20/client/Makefile
+++ b/hs20/client/Makefile
@@ -76,6 +76,7 @@ LIBS += -lcurl
endif
CFLAGS += -DEAP_TLS_OPENSSL
+OBJS += ../../src/crypto/tls_openssl_ocsp.o
LIBS += -lssl -lcrypto
hs20-osu-client: $(OBJS)