1/* 2 * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved. 3 * SPDX-License-Identifier: BSD-3-Clause 4 */ 5syntax = "proto3"; 6 7package ts_crypto; 8 9message AsymmetricDecryptIn { 10 uint32 id = 1; 11 uint32 alg = 2; 12 bytes ciphertext = 3; 13 bytes salt = 4; 14} 15 16message AsymmetricDecryptOut { 17 bytes plaintext = 1; 18} 19