netbird/signal
2021-05-05 15:48:29 +02:00
..
peer project init 2021-05-01 12:45:37 +02:00
proto feat: add encryption of the payload exchanged via signal 2021-05-01 18:29:59 +02:00
client.go fix: signal message encryption 2021-05-05 10:40:53 +02:00
encryption.go fix: signal message encryption 2021-05-05 10:40:53 +02:00
fingerprint.go project init 2021-05-01 12:45:37 +02:00
README.md project init 2021-05-01 12:45:37 +02:00
signal.go fix: message type in the signal implementation 2021-05-01 18:37:30 +02:00

This is a Wiretrustee signal-exchange server and client library to exchange connection information between Wiretrustee Trusted Device and Wiretrustee Hub

The project uses gRPC library and defines service in protobuf file located in: proto/signal_exchange.proto

To build the project you have to do the following things.

Install protobuf version 3 (by default v3 is installed on ubuntu 20.04. On previous versions it is proto 2):

sudo apt install protoc-gen-go
sudo apt install golang-goprotobuf-dev

Generate gRPC code:

protoc -I proto/ proto/signalexchange.proto --go_out=plugins=grpc:proto