mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-29 10:48:22 -05:00
d560288a44
This allows the internal TLS client implementation to accept CertificateStatus message from the server when trying to use OCSP stapling. The actual OCSPResponse is not yet processed in this commit, but the CertificateStatus message is accepted to allow the TLS handshake to continue. Signed-off-by: Jouni Malinen <j@w1.fi>
41 lines
595 B
Makefile
41 lines
595 B
Makefile
all: libtls.a
|
|
|
|
clean:
|
|
rm -f *~ *.o *.d libtls.a
|
|
|
|
install:
|
|
@echo Nothing to be made.
|
|
|
|
|
|
include ../lib.rules
|
|
|
|
CFLAGS += -DCONFIG_INTERNAL_LIBTOMMATH
|
|
CFLAGS += -DCONFIG_CRYPTO_INTERNAL
|
|
CFLAGS += -DCONFIG_TLSV11
|
|
CFLAGS += -DCONFIG_TLSV12
|
|
|
|
LIB_OBJS= \
|
|
asn1.o \
|
|
bignum.o \
|
|
pkcs1.o \
|
|
pkcs5.o \
|
|
pkcs8.o \
|
|
rsa.o \
|
|
tlsv1_client.o \
|
|
tlsv1_client_read.o \
|
|
tlsv1_client_write.o \
|
|
tlsv1_client_ocsp.o \
|
|
tlsv1_common.o \
|
|
tlsv1_cred.o \
|
|
tlsv1_record.o \
|
|
tlsv1_server.o \
|
|
tlsv1_server_read.o \
|
|
tlsv1_server_write.o \
|
|
x509v3.o
|
|
|
|
|
|
libtls.a: $(LIB_OBJS)
|
|
$(AR) crT $@ $?
|
|
|
|
-include $(OBJS:%.o=%.d)
|