diff --git a/doc/libressl.md b/doc/libressl.md new file mode 100644 index 0000000..4ab3443 --- /dev/null +++ b/doc/libressl.md @@ -0,0 +1,17 @@ +# install libressl + +[download link](https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/) + +* download latest tarball from download link +``` +cd ~ +mkdir tmp && cd tmp +wget https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.7.0.tar.gz +tar -xzvf libressl +cd libressl +mkdir build && cd build +../configure +make +sudo make install +sudo ldconfig +```