Alternative TLS implementation in Go
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Henry Case 9fe6933c1f Remove not needed examples há 5 anos
etc/utils Remove not needed examples há 5 anos
examples Remove not needed examples há 5 anos
testdata crypto/tls: add examples for [Load]X509KeyPair há 6 anos
.travis.yml Adds -race and go 1.12 há 5 anos
13.go Change package name from tls to trs há 5 anos
LICENSE adds LICENSE há 6 anos
README.md Update README há 5 anos
alert.go Change package name from tls to trs há 5 anos
auth.go Change package name from tls to trs há 5 anos
auth_test.go Change package name from tls to trs há 5 anos
cipher_suites.go Change package name from tls to trs há 5 anos
common.go Change package name from tls to trs há 5 anos
conn.go Change package name from tls to trs há 5 anos
conn_test.go Change package name from tls to trs há 5 anos
example_test.go.TEMPORARILY_DISABLED Change package name from tls to trs há 5 anos
generate_cert.go crypto/tls: handle errors in generate_cert.go há 6 anos
handshake_client.go Change package name from tls to trs há 5 anos
handshake_client_test.go Change package name from tls to trs há 5 anos
handshake_messages.go Change package name from tls to trs há 5 anos
handshake_messages_test.go Change package name from tls to trs há 5 anos
handshake_server.go Change package name from tls to trs há 5 anos
handshake_server_test.go Change package name from tls to trs há 5 anos
handshake_test.go Change package name from tls to trs há 5 anos
hkdf.go Change package name from tls to trs há 5 anos
key_agreement.go Change package name from tls to trs há 5 anos
prf.go Change package name from tls to trs há 5 anos
prf_test.go Change package name from tls to trs há 5 anos
subcerts.go Change package name from tls to trs há 5 anos
subcerts_test.go Change package name from tls to trs há 5 anos
ticket.go Change package name from tls to trs há 5 anos
tls.go Change package name from tls to trs há 5 anos
tls_test.go Change package name from tls to trs há 5 anos

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.