Alternative TLS implementation in Go
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
Henry Case 4a7cf1bb76 Fix client key share 5 lat temu
etc/utils Remove not needed examples 5 lat temu
examples Remove not needed examples 5 lat temu
testdata crypto/tls: add examples for [Load]X509KeyPair 6 lat temu
.travis.yml Adds -race and go 1.12 5 lat temu
13.go Fix client key share 5 lat temu
LICENSE adds LICENSE 6 lat temu
README.md Update README 5 lat temu
alert.go Change package name from tls to trs 5 lat temu
auth.go Change package name from tls to trs 5 lat temu
auth_test.go Change package name from tls to trs 5 lat temu
cipher_suites.go Add negotiated group to ConnectionState 5 lat temu
common.go Add negotiated group to ConnectionState 5 lat temu
conn.go Add negotiated group to ConnectionState 5 lat temu
conn_test.go Change package name from tls to trs 5 lat temu
example_test.go.TEMPORARILY_DISABLED Change package name from tls to trs 5 lat temu
generate_cert.go crypto/tls: handle errors in generate_cert.go 6 lat temu
handshake_client.go Add negotiated group to ConnectionState 5 lat temu
handshake_client_test.go Change package name from tls to trs 5 lat temu
handshake_messages.go Change package name from tls to trs 5 lat temu
handshake_messages_test.go Change package name from tls to trs 5 lat temu
handshake_server.go Add negotiated group to ConnectionState 5 lat temu
handshake_server_test.go Change package name from tls to trs 5 lat temu
handshake_test.go Change package name from tls to trs 5 lat temu
hkdf.go Change package name from tls to trs 5 lat temu
key_agreement.go Add negotiated group to ConnectionState 5 lat temu
prf.go Change package name from tls to trs 5 lat temu
prf_test.go Change package name from tls to trs 5 lat temu
subcerts.go Change package name from tls to trs 5 lat temu
subcerts_test.go Change package name from tls to trs 5 lat temu
ticket.go Change package name from tls to trs 5 lat temu
tls.go Change package name from tls to trs 5 lat temu
tls_test.go Change package name from tls to trs 5 lat temu

README.md

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.