mirror of
https://github.com/ipfs/kubo.git
synced 2025-10-11 16:58:30 +08:00
15 lines
263 B
Protocol Buffer
15 lines
263 B
Protocol Buffer
package spipe;
|
|
|
|
message Propose {
|
|
optional bytes rand = 1;
|
|
optional bytes pubkey = 2;
|
|
optional string exchanges = 3;
|
|
optional string ciphers = 4;
|
|
optional string hashes = 5;
|
|
}
|
|
|
|
message Exchange {
|
|
optional bytes epubkey = 1;
|
|
optional bytes signature = 2;
|
|
}
|