2019-04-05 13:53:54 +01:00
|
|
|
# trs
|
2018-03-21 10:05:19 +00:00
|
|
|
|
2019-04-05 13:53:54 +01:00
|
|
|
This is an implementation of TLS 1.3 forked from ``tls-tris`` (af21f3083ce150bf822574a4437be352a83ef45b). Modified
|
|
|
|
to be used as separated library.
|
2016-11-03 21:13:18 +00:00
|
|
|
|
2018-03-21 10:05:19 +00:00
|
|
|
## Development
|
2016-11-03 21:13:18 +00:00
|
|
|
|
2018-03-21 10:05:19 +00:00
|
|
|
### Dependencies
|
2016-11-03 21:13:18 +00:00
|
|
|
|
2018-03-21 10:05:19 +00:00
|
|
|
Copy paste line bellow to install all required dependencies:
|
2016-11-03 21:13:18 +00:00
|
|
|
|
2018-03-21 10:05:19 +00:00
|
|
|
* ArchLinux:
|
|
|
|
```
|
|
|
|
pacman -S go docker gcc git make patch python2 python-docker rsync
|
|
|
|
```
|
2016-11-03 21:13:18 +00:00
|
|
|
|
2018-03-21 10:05:19 +00:00
|
|
|
* Debian:
|
2016-11-03 21:13:18 +00:00
|
|
|
```
|
2018-03-21 10:05:19 +00:00
|
|
|
apt-get install build-essential docker go patch python python-pip rsync
|
|
|
|
pip install setuptools
|
|
|
|
pip install docker
|
2016-11-03 21:13:18 +00:00
|
|
|
```
|
|
|
|
|
2018-05-24 10:18:27 +01:00
|
|
|
* 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
|
|
|
|
```
|
2018-05-24 01:35:33 +01:00
|
|
|
|
2018-03-21 10:05:19 +00:00
|
|
|
Similar dependencies can be found on any UNIX based system/distribution.
|
|
|
|
|