mirror of
https://github.com/libp2p/go-libp2p.git
synced 2025-12-24 13:29:35 +08:00
13 lines
248 B
Protocol Buffer
13 lines
248 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package plaintext.pb;
|
|
|
|
import "core/crypto/pb/crypto.proto";
|
|
|
|
option go_package = "github.com/libp2p/go-libp2p/p2p/security/insecure/pb";
|
|
|
|
message Exchange {
|
|
optional bytes id = 1;
|
|
optional crypto.pb.PublicKey pubkey = 2;
|
|
}
|