You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/readme.md

51 lines
1.3 KiB
Markdown

# LokiNet
LokiNet is the reference implementation of LLARP (low latency anonymous routing protocol), a layer 3 onion routing protocol.
7 years ago
You can learn more about the high level design of LLARP [here](docs/high-level.txt)
And you can read the LLARP protocol specification [here](docs/proto_v0.txt)
6 years ago
6 years ago
## Building
$ sudo apt install build-essential libtool autoconf cmake git
$ git clone --recursive https://github.com/loki-project/lokinet-builder
$ cd lokinet-builder
$ make
## Running
$ ./lokinet
### Development
Please note development builds are likely to be unstable
Build requirements:
* GNU Make
6 years ago
* CMake
* libsodium >= 1.0.14
* C++ 17 capable C++ compiler
6 years ago
Building a debug build:
## Building
6 years ago
![build status](https://gitlab.com/lokiproject/loki-network/badges/master/pipeline.svg "build status")
6 years ago
use the [lokinet builder](https://github.com/loki-project/lokinet-builder) repo.
6 years ago
## Development
6 years ago
for a development environment:
6 years ago
$ sudo apt install git libcap-dev build-essential ninja-build cmake libsodium-dev
$ git clone https://github.com/loki-project/loki-network
$ cd loki-network
$ make -j $(cat /proc/cpuinfo | grep processors | wc -l) # use all the cores lmao
## Usage
6 years ago
see the [lokinet-builder](https://github.com/loki-project/lokinet-builder)