Alternative TLS implementation in Go
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Henry Case 4a7cf1bb76 Fix client key share hace 5 años
etc/utils Remove not needed examples hace 5 años
examples Remove not needed examples hace 5 años
testdata crypto/tls: add examples for [Load]X509KeyPair hace 6 años
.travis.yml Adds -race and go 1.12 hace 5 años
13.go Fix client key share hace 5 años
LICENSE adds LICENSE hace 6 años
README.md Update README hace 5 años
alert.go Change package name from tls to trs hace 5 años
auth.go Change package name from tls to trs hace 5 años
auth_test.go Change package name from tls to trs hace 5 años
cipher_suites.go Add negotiated group to ConnectionState hace 5 años
common.go Add negotiated group to ConnectionState hace 5 años
conn.go Add negotiated group to ConnectionState hace 5 años
conn_test.go Change package name from tls to trs hace 5 años
example_test.go.TEMPORARILY_DISABLED Change package name from tls to trs hace 5 años
generate_cert.go crypto/tls: handle errors in generate_cert.go hace 6 años
handshake_client.go Add negotiated group to ConnectionState hace 5 años
handshake_client_test.go Change package name from tls to trs hace 5 años
handshake_messages.go Change package name from tls to trs hace 5 años
handshake_messages_test.go Change package name from tls to trs hace 5 años
handshake_server.go Add negotiated group to ConnectionState hace 5 años
handshake_server_test.go Change package name from tls to trs hace 5 años
handshake_test.go Change package name from tls to trs hace 5 años
hkdf.go Change package name from tls to trs hace 5 años
key_agreement.go Add negotiated group to ConnectionState hace 5 años
prf.go Change package name from tls to trs hace 5 años
prf_test.go Change package name from tls to trs hace 5 años
subcerts.go Change package name from tls to trs hace 5 años
subcerts_test.go Change package name from tls to trs hace 5 años
ticket.go Change package name from tls to trs hace 5 años
tls.go Change package name from tls to trs hace 5 años
tls_test.go Change package name from tls to trs hace 5 años

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.