Alternative TLS implementation in Go
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Kris Kwiatkowski 460efd3b1e HRSS: Init 5 yıl önce
testdata crypto/tls: add examples for [Load]X509KeyPair 6 yıl önce
.travis.yml Adds -race and go 1.12 5 yıl önce
13.go HRSS: Init 5 yıl önce
LICENSE adds LICENSE 6 yıl önce
README.md Update README 5 yıl önce
alert.go Add EMS support to tls-tris 6 yıl önce
auth.go test: adds tests for rsa-pss signatures 6 yıl önce
auth_test.go test: adds tests for rsa-pss signatures 6 yıl önce
cipher_suites.go Changes needed to make tris a separated lib 5 yıl önce
common.go HRSS: Init 5 yıl önce
conn.go Add EMS support to tls-tris 6 yıl önce
conn_test.go crypto/tls: fix first byte test for 255 CBC padding bytes 7 yıl önce
example_test.go.TEMPORARILY_DISABLED Temporarily disable example 5 yıl önce
generate_cert.go crypto/tls: handle errors in generate_cert.go 6 yıl önce
handshake_client.go moves methods from Config to Conn receives 6 yıl önce
handshake_client_test.go test: adds tests for rsa-pss signatures 6 yıl önce
handshake_messages.go SIDH: Align codepoints with the ones in latest version 5 yıl önce
handshake_messages_test.go Add EMS support to tls-tris 6 yıl önce
handshake_server.go Fix: always store client hello in ConnectionState (#161) 5 yıl önce
handshake_server_test.go go 1.11: Switch to GO 1.11 6 yıl önce
handshake_test.go crypto/tls: advertise support for SHA-512 signatures in 1.2 7 yıl önce
hkdf.go crypto/tls: implement TLS 1.3 minimal server 7 yıl önce
hrss.go HRSS: Init 5 yıl önce
key_agreement.go Changes needed to make tris a separated lib 5 yıl önce
prf.go Add EMS support to tls-tris 6 yıl önce
prf_test.go Add EMS support to tls-tris 6 yıl önce
subcerts.go Cleanup 6 yıl önce
subcerts_test.go Swap TLS 1.3 to RFC 8446 6 yıl önce
ticket.go Add EMS support to tls-tris 6 yıl önce
tls.go crypto/tls: parse certificate first in X509KeyPair to get better errors 6 yıl önce
tls_test.go Add EMS support to tls-tris 6 yıl önce

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.