Skip to content

Feature: Secure connection #15

@munterfi

Description

@munterfi

Enable TLS/SSL connections between the server and clients.

Example from https://docs.python.org/3/library/ssl.html:

import socket
import ssl

hostname = 'www.python.org'
context = ssl.create_default_context()

with socket.create_connection((hostname, 443)) as sock:
    with context.wrap_socket(sock, server_hostname=hostname) as ssock:
        print(ssock.version())

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions