blob: cb7a049e40f390d8504e9bde5b3a3ebfe9c008ed [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 AsymmetricEncryptIn {
uint32 id = 1;
uint32 alg = 2;
bytes plaintext = 3;
bytes salt = 4;
}
message AsymmetricEncryptOut {
bytes ciphertext = 1;
}