Julian Hall | c02fffb | 2020-11-23 18:22:06 +0100 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2020, Arm Limited and Contributors. All rights reserved. | ||||
3 | * SPDX-License-Identifier: BSD-3-Clause | ||||
4 | */ | ||||
5 | syntax = "proto3"; | ||||
6 | |||||
7 | package ts_crypto; | ||||
8 | |||||
9 | import "service/crypto/protobuf/key_attributes.proto"; | ||||
10 | |||||
11 | message GenerateKeyIn { | ||||
12 | KeyAttributes attributes = 1; | ||||
13 | } | ||||
14 | |||||
15 | message GenerateKeyOut { | ||||
16 | uint32 handle = 1; | ||||
17 | } |