mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
10 lines
253 B
Protocol Buffer
10 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;
|
|
}
|