You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# - Full list is available at [OpenSSL Wiki](https://wiki.openssl.org/index.php/Manual:Ciphers%281%29#CIPHER_STRINGS)
15
14
#
16
-
# Do note that
17
-
# - Crystal does its best to provide sane configuration defaults (see [Mozilla-Intermediate](https://wiki.mozilla.org/Security/Server_Side_TLS#Intermediate_compatibility_.28default.29))
18
-
# - Linked version of OpenSSL need to be checked for supporting specific protocols and ciphers
15
+
# Do note that:
16
+
# - Crystal does its best to provide sane configuration defaults (see [Mozilla-Intermediate](https://wiki.mozilla.org/Security/Server_Side_TLS#Intermediate_compatibility_.28default.29)).
17
+
# - Linked version of OpenSSL need to be checked for supporting specific protocols and ciphers.
19
18
# - If any configurations or choices in Crystal regarding SSL settings and security are found to be lacking or need
20
-
# improvement please open an issue and let us know
19
+
# improvement please [open an issue](https://github.com/crystal-lang/crystal/issues/new) and let us know.
21
20
#
22
21
# ### Server side
23
22
#
23
+
# NOTE: For the below example to work, a key pair should be attained.
24
+
#
24
25
# ```
25
26
# require "socket"
26
27
# require "openssl"
27
28
#
28
29
# def server
29
-
# socket = TCPServer.new(5555) # Bind new TCPSocket to port 5555
0 commit comments