aboutsummaryrefslogtreecommitdiff
path: root/protocols/service/crypto/protobuf/import_key.proto
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/service/crypto/protobuf/import_key.proto')
-rw-r--r--protocols/service/crypto/protobuf/import_key.proto18
1 files changed, 18 insertions, 0 deletions
diff --git a/protocols/service/crypto/protobuf/import_key.proto b/protocols/service/crypto/protobuf/import_key.proto
new file mode 100644
index 000000000..727b2bcf0
--- /dev/null
+++ b/protocols/service/crypto/protobuf/import_key.proto
@@ -0,0 +1,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;
+}