Skip to content

Commit d6512b3

Browse files
committed
comment about websocket-client using static RSA suites
1 parent 2c9cd3e commit d6512b3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/wolfssl/_build_wolfssl.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@ def make_flags(prefix):
150150
flags.append("--enable-opensslextra")
151151
cflags.append("-DKEEP_PEER_CERT")
152152

153-
# websocket-client test server (echo.websocket.org) only supports
153+
# Note: websocket-client test server (echo.websocket.org) only supports
154154
# TLS 1.2 with TLS_RSA_WITH_AES_128_CBC_SHA
155-
# We must enable static RSA suites here
156-
cflags.append("-DWOLFSSL_STATIC_RSA")
155+
# If compiling for use with websocket-client, must enable static RSA suites.
156+
# cflags.append("-DWOLFSSL_STATIC_RSA")
157157

158158
joined_flags = " ".join(flags)
159159
joined_cflags = " ".join(cflags)

0 commit comments

Comments
 (0)