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