/* | |
* Copyright (c) 2020, Arm Limited and Contributors. All rights reserved. | |
* SPDX-License-Identifier: BSD-3-Clause | |
*/ | |
syntax = "proto3"; | |
package ts_crypto; | |
import "service/crypto/protobuf/key_attributes.proto"; | |
message GenerateKeyIn { | |
KeyAttributes attributes = 1; | |
} | |
message GenerateKeyOut { | |
uint32 handle = 1; | |
} |