mirror of
https://github.com/fluencelabs/js-libp2p-noise
synced 2025-04-27 08:22:18 +00:00
10 lines
198 B
Protocol Buffer
10 lines
198 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package pb;
|
||
|
|
||
|
message NoiseHandshakePayload {
|
||
|
bytes libp2p_key = 1;
|
||
|
bytes noise_static_key_signature = 2;
|
||
|
bytes libp2p_data = 3;
|
||
|
bytes libp2p_data_signature = 4;
|
||
|
}
|