Follow these steps to set up and run the project on a Linux system:
- Python 3.x installed
- run
python3 -m venv .venv - run
source ./venv/bin/activate - execute
openssl req -x509 -newkey rsa:4096 -sha256 -days 365 -nodes \ -keyout server.key -out server.crt -subj "/CN=localhost" \ -addext "subjectAltName=DNS:localhost,IP:127.0.0.1" - run
python3 server.py - run
python3 client.py