blob: 4b8bce0291456356dbf0b15833137aac5a968f60 [file] [log] [blame]
/*
* Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.
* SPDX-License-Identifier: BSD-3-Clause
*/
syntax = "proto3";
package ts_crypto;
message SignHashIn {
uint32 id = 1;
uint32 alg = 2;
bytes hash = 3;
}
message SignHashOut {
bytes signature = 1;
}