blob: 727b2bcf05f2188fd17dbf78abb332ea569595ce [file] [log] [blame]
Julian Hallc02fffb2020-11-23 18:22:06 +01001/*
2 * Copyright (c) 2020, Arm Limited and Contributors. All rights reserved.
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5syntax = "proto3";
6
7package ts_crypto;
8
9import "service/crypto/protobuf/key_attributes.proto";
10
11message ImportKeyIn {
12 KeyAttributes attributes = 1;
13 bytes data = 3;
14}
15
16message ImportKeyOut {
17 uint32 handle = 1;
18}