Alternative TLS implementation in Go
Vai al file
2019-05-12 20:29:10 +01:00
etc/utils Remove not needed examples 2019-05-12 18:43:53 +01:00
examples Remove not needed examples 2019-05-12 18:43:53 +01:00
testdata crypto/tls: add examples for [Load]X509KeyPair 2018-10-17 14:06:11 +01:00
.travis.yml Adds -race and go 1.12 2019-04-05 14:04:58 +01:00
13.go Fix client key share 2019-05-12 20:29:10 +01:00
alert.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
auth_test.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
auth.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
cipher_suites.go Add negotiated group to ConnectionState 2019-05-12 20:22:21 +01:00
common.go Add negotiated group to ConnectionState 2019-05-12 20:22:21 +01:00
conn_test.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
conn.go Add negotiated group to ConnectionState 2019-05-12 20:22:21 +01:00
example_test.go.TEMPORARILY_DISABLED Change package name from tls to trs 2019-05-12 18:42:15 +01:00
generate_cert.go crypto/tls: handle errors in generate_cert.go 2018-10-17 14:06:11 +01:00
handshake_client_test.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
handshake_client.go Add negotiated group to ConnectionState 2019-05-12 20:22:21 +01:00
handshake_messages_test.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
handshake_messages.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
handshake_server_test.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
handshake_server.go Add negotiated group to ConnectionState 2019-05-12 20:22:21 +01:00
handshake_test.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
hkdf.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
key_agreement.go Add negotiated group to ConnectionState 2019-05-12 20:22:21 +01:00
LICENSE adds LICENSE 2018-10-25 21:47:18 +01:00
prf_test.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
prf.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
README.md Update README 2019-04-05 14:01:29 +01:00
subcerts_test.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
subcerts.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
ticket.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
tls_test.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00
tls.go Change package name from tls to trs 2019-05-12 18:42:15 +01:00

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.