Alternative TLS implementation in Go
testdata | ||
.travis.yml | ||
13.go | ||
alert.go | ||
auth_test.go | ||
auth.go | ||
cipher_suites.go | ||
common.go | ||
conn_test.go | ||
conn.go | ||
example_test.go | ||
generate_cert.go | ||
handshake_client_test.go | ||
handshake_client.go | ||
handshake_messages_test.go | ||
handshake_messages.go | ||
handshake_server_test.go | ||
handshake_server.go | ||
handshake_test.go | ||
hkdf.go | ||
key_agreement.go | ||
LICENSE | ||
prf_test.go | ||
prf.go | ||
README.md | ||
subcerts_test.go | ||
subcerts.go | ||
ticket.go | ||
tls_test.go | ||
tls.go |
trs
This is an implementation of TLS 1.3 forked from tls-tris
(af21f3083c
). Modified
to be used as separated library.
Development
Dependencies
Copy paste line bellow to install all required dependencies:
- ArchLinux:
pacman -S go docker gcc git make patch python2 python-docker rsync
- Debian:
apt-get install build-essential docker go patch python python-pip rsync
pip install setuptools
pip install docker
- Ubuntu (18.04) :
apt-get update
apt-get install build-essential docker docker.io golang patch python python-pip rsync sudo
pip install setuptools
pip install docker
sudo usermod -a -G docker $USER
Similar dependencies can be found on any UNIX based system/distribution.