1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: 2014 The Hex Team
3
4syntax = "proto2";
5
6package signed;
7
8message Signed {
9 // Signed contents
10 required bytes payload = 1;
11 // The signature
12 optional bytes signature = 2;
13}