mirror of
https://github.com/libp2p/go-libp2p-core.git
synced 2025-03-22 12:20:07 +08:00
12 lines
196 B
Protocol Buffer
12 lines
196 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package crypto.pb;
|
|
|
|
import "crypto.proto";
|
|
|
|
message SignedEnvelope {
|
|
PublicKey public_key = 1;
|
|
bytes payload_type = 2;
|
|
bytes payload = 3;
|
|
bytes signature = 4;
|
|
} |