Alternative TLS implementation in Go
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

README.md 756 B

il y a 5 ans
il y a 5 ans
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.