mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
9 lines
133 B
Protocol Buffer
9 lines
133 B
Protocol Buffer
syntax = "proto3";
|
|
package pb;
|
|
|
|
message NoiseHandshakePayload {
|
|
bytes identity_key = 1;
|
|
bytes identity_sig = 2;
|
|
bytes data = 3;
|
|
}
|