File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,9 @@ SET(WOLFSSL_SOURCES
50
50
${WOLFSSL_SRCDIR} /tls.c
51
51
${WOLFSSL_SRCDIR} /wolfio.c
52
52
${WOLFSSL_SRCDIR} /ocsp.c
53
- ${WOLFSSL_SRCDIR} /ssl.c)
53
+ ${WOLFSSL_SRCDIR} /ssl.c
54
+ ${WOLFSSL_SRCDIR} /tls13.c)
55
+
54
56
ADD_DEFINITIONS (-DWOLFSSL_LIB -DBUILDING_WOLFSSL)
55
57
56
58
INCLUDE_DIRECTORIES (BEFORE ${CMAKE_CURRENT_SOURCE_DIR} /wolfssl)
Original file line number Diff line number Diff line change 23
23
#define OPENSSL_ALL
24
24
#define WOLFSSL_ALLOW_TLSV10
25
25
#define NO_OLD_TIMEVAL_NAME
26
+
27
+ /* TLSv1.3 definitions (all needed to build) */
28
+ #define WOLFSSL_TLS13
29
+ #define HAVE_HKDF
30
+ #define HAVE_TLS_EXTENSIONS
31
+ #define HAVE_SUPPORTED_CURVES
32
+ #define HAVE_FFDHE_2048
33
+ #define WC_RSA_PSS
34
+ /* End of TLSv1.3 defines */
35
+
26
36
/*
27
37
FP_MAX_BITS is set high solely to satisfy ssl_8k_key.test
28
38
WolfSSL will use more stack space with it, with fastmath
You can’t perform that action at this time.
0 commit comments