libp2p-noise 0.33.0

Cryptographic handshake protocol using the noise framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
syntax = "proto3";

package payload.proto;

// Payloads for Noise handshake messages.

message NoiseHandshakePayload {
    bytes identity_key = 1;
    bytes identity_sig = 2;
    bytes data         = 3;
}