Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pq/tls/client-pq-tls13.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#include <wolfssl/wolfio.h>
#include <wolfssl/wolfcrypt/error-crypt.h>

#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_HAVE_KYBER) && \
#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_WC_MLKEM) && \
defined(HAVE_DILITHIUM)

#define DEFAULT_PORT 11111
Expand Down Expand Up @@ -116,7 +116,7 @@ static int Tls13SecretCallback(WOLFSSL* ssl, int id, const unsigned char* secret
int main(int argc, char** argv)
{
int ret = 0;
#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_HAVE_KYBER) && \
#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_WC_MLKEM) && \
defined(HAVE_DILITHIUM)
int sockfd = SOCKET_INVALID;
struct sockaddr_in servAddr;
Expand Down
4 changes: 2 additions & 2 deletions pq/tls/server-pq-tls13.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#include <wolfssl/wolfio.h>
#include <wolfssl/wolfcrypt/error-crypt.h>

#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_HAVE_KYBER) && \
#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_WC_MLKEM) && \
defined(HAVE_DILITHIUM)

#define DEFAULT_PORT 11111
Expand Down Expand Up @@ -145,7 +145,7 @@ int main(int argc, char** argv)
{
int ret = 0;

#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_HAVE_KYBER) && \
#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_WC_MLKEM) && \
defined(HAVE_DILITHIUM)

struct sockaddr_in servAddr;
Expand Down