aboutsummaryrefslogtreecommitdiff
path: root/protocols/service/crypto/protobuf/verify_hash.proto
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/service/crypto/protobuf/verify_hash.proto')
-rw-r--r--protocols/service/crypto/protobuf/verify_hash.proto16
1 files changed, 16 insertions, 0 deletions
diff --git a/protocols/service/crypto/protobuf/verify_hash.proto b/protocols/service/crypto/protobuf/verify_hash.proto
new file mode 100644
index 000000000..9253d9408
--- /dev/null
+++ b/protocols/service/crypto/protobuf/verify_hash.proto
@@ -0,0 +1,16 @@
+/*
+ * Copyright (c) 2020, Arm Limited and Contributors. All rights reserved.
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+syntax = "proto3";
+
+package ts_crypto;
+
+message VerifyHashIn {
+ uint32 handle = 1;
+ uint32 alg = 2;
+ bytes hash = 3;
+ bytes signature = 4;
+}
+
+message VerifyHashOut {}