Jooyung Han | 97277ee | 2021-04-14 15:34:24 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2021 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | syntax = "proto3"; |
| 18 | |
| 19 | package android.microdroid; |
| 20 | |
| 21 | // Microdroid Signature is the body of the signature partition. |
| 22 | message MicrodroidSignature { |
| 23 | uint32 version = 1; |
| 24 | |
| 25 | // Lists the signature information of the payload apexes. |
| 26 | // The payload apexes are mapped to the partitions following the signature partition. |
| 27 | repeated ApexSignature apexes = 2; |
| 28 | } |
| 29 | |
| 30 | message ApexSignature { |
| 31 | // Required. |
| 32 | // The apex name. |
| 33 | string name = 1; |
| 34 | |
| 35 | // Required. |
| 36 | // The original size of the apex file. |
| 37 | uint32 size = 2; |
| 38 | |
| 39 | // Optional. |
| 40 | // When specified, the public key used to sign the apex should match with it. |
| 41 | string publicKey = 3; |
| 42 | |
| 43 | // Optional. |
| 44 | // When specified, the root digest of the apex should match with it. |
| 45 | string rootDigest = 4; |
| 46 | } |