blob: 0155c30436f9a6c5896e8badfb20cbae3bc6158c [file] [log] [blame]
/*
* Copyright (c) 2020, Arm Limited and Contributors. All rights reserved.
* SPDX-License-Identifier: BSD-3-Clause
*/
syntax = "proto3";
package ts_crypto;
message AsymmetricDecryptIn {
uint32 handle = 1;
uint32 alg = 2;
bytes ciphertext = 3;
bytes salt = 4;
}
message AsymmetricDecryptOut {
bytes plaintext = 1;
}