aboutsummaryrefslogtreecommitdiff
path: root/protocols/service/crypto/protobuf/export_public_key.proto
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/service/crypto/protobuf/export_public_key.proto')
-rw-r--r--protocols/service/crypto/protobuf/export_public_key.proto15
1 files changed, 15 insertions, 0 deletions
diff --git a/protocols/service/crypto/protobuf/export_public_key.proto b/protocols/service/crypto/protobuf/export_public_key.proto
new file mode 100644
index 000000000..e8443257b
--- /dev/null
+++ b/protocols/service/crypto/protobuf/export_public_key.proto
@@ -0,0 +1,15 @@
+/*
+ * Copyright (c) 2020, Arm Limited and Contributors. All rights reserved.
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+syntax = "proto3";
+
+package ts_crypto;
+
+message ExportPublicKeyIn {
+ uint32 handle = 1;
+}
+
+message ExportPublicKeyOut {
+ bytes data = 1;
+}