mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 21:48:32 +00:00
11 lines
253 B
Protocol Buffer
11 lines
253 B
Protocol Buffer
// https://github.com/hexpm/specifications/blob/9c411dbe96c87ccee438d40838d02b5fa6abb60b/registry/signed.proto
|
|
|
|
syntax = "proto2";
|
|
|
|
message Signed {
|
|
// Signed contents
|
|
required bytes payload = 1;
|
|
// The signature
|
|
optional bytes signature = 2;
|
|
}
|