aboutsummaryrefslogtreecommitdiff
path: root/protocols/service/crypto/protobuf/verify_hash.proto
blob: 9253d94081886de5d86968d6a9bdf611ff5efbfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 {}