Alternative TLS implementation in Go
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 5 години
преди 5 години
12345678910111213141516171819202122232425262728293031323334
  1. # trs
  2. This is an implementation of TLS 1.3 forked from ``tls-tris`` (af21f3083ce150bf822574a4437be352a83ef45b). Modified
  3. to be used as separated library.
  4. ## Development
  5. ### Dependencies
  6. Copy paste line bellow to install all required dependencies:
  7. * ArchLinux:
  8. ```
  9. pacman -S go docker gcc git make patch python2 python-docker rsync
  10. ```
  11. * Debian:
  12. ```
  13. apt-get install build-essential docker go patch python python-pip rsync
  14. pip install setuptools
  15. pip install docker
  16. ```
  17. * Ubuntu (18.04) :
  18. ```
  19. apt-get update
  20. apt-get install build-essential docker docker.io golang patch python python-pip rsync sudo
  21. pip install setuptools
  22. pip install docker
  23. sudo usermod -a -G docker $USER
  24. ```
  25. Similar dependencies can be found on any UNIX based system/distribution.