mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-23 11:27:42 +08:00
15 lines
279 B
Protocol Buffer
15 lines
279 B
Protocol Buffer
package identify;
|
|
|
|
message Hello {
|
|
required bytes rand = 1;
|
|
required bytes pubkey = 2;
|
|
required string exchanges = 3;
|
|
required string ciphers = 4;
|
|
required string hashes = 5;
|
|
}
|
|
|
|
message Exchange {
|
|
required bytes epubkey = 1;
|
|
required bytes signature = 2;
|
|
}
|