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.
Kris Kwiatkowski 12f7b294ba Adds -race and go 1.12 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 Changes needed to make tris a separated lib há 5 anos
LICENSE adds LICENSE há 6 anos
README.md Update README há 5 anos
alert.go Add EMS support to tls-tris há 6 anos
auth.go test: adds tests for rsa-pss signatures há 6 anos
auth_test.go test: adds tests for rsa-pss signatures há 6 anos
cipher_suites.go Changes needed to make tris a separated lib há 5 anos
common.go Changes needed to make tris a separated lib há 5 anos
conn.go Add EMS support to tls-tris há 6 anos
conn_test.go crypto/tls: fix first byte test for 255 CBC padding bytes há 7 anos
example_test.go crypto/tls: add examples for [Load]X509KeyPair há 6 anos
generate_cert.go crypto/tls: handle errors in generate_cert.go há 6 anos
handshake_client.go moves methods from Config to Conn receives há 6 anos
handshake_client_test.go test: adds tests for rsa-pss signatures há 6 anos
handshake_messages.go SIDH: Align codepoints with the ones in latest version há 5 anos
handshake_messages_test.go Add EMS support to tls-tris há 6 anos
handshake_server.go Fix: always store client hello in ConnectionState (#161) há 5 anos
handshake_server_test.go go 1.11: Switch to GO 1.11 há 6 anos
handshake_test.go crypto/tls: advertise support for SHA-512 signatures in 1.2 há 7 anos
hkdf.go crypto/tls: implement TLS 1.3 minimal server há 7 anos
key_agreement.go Changes needed to make tris a separated lib há 5 anos
prf.go Add EMS support to tls-tris há 6 anos
prf_test.go Add EMS support to tls-tris há 6 anos
subcerts.go Cleanup há 6 anos
subcerts_test.go Swap TLS 1.3 to RFC 8446 há 6 anos
ticket.go Add EMS support to tls-tris há 6 anos
tls.go crypto/tls: parse certificate first in X509KeyPair to get better errors há 6 anos
tls_test.go Add EMS support to tls-tris há 6 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.