aboutsummaryrefslogtreecommitdiff
path: root/protocols/service/crypto/protobuf/import_key.proto
blob: 727b2bcf05f2188fd17dbf78abb332ea569595ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * 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 ImportKeyIn {
  KeyAttributes attributes = 1;
  bytes data = 3;
}

message ImportKeyOut {
  uint32 handle = 1;
}