blob: fecf7eda8c2d37c20b2a31e8056e01b2158c3167 [file] [log] [blame]
Julian Hallc02fffb2020-11-23 18:22:06 +01001/*
Balint Dobszay3c52ce62021-05-10 16:27:18 +02002 * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.
Julian Hallc02fffb2020-11-23 18:22:06 +01003 * SPDX-License-Identifier: BSD-3-Clause
4 */
5syntax = "proto3";
6
7package ts_crypto;
8
9message AsymmetricDecryptIn {
Balint Dobszay3c52ce62021-05-10 16:27:18 +020010 uint32 id = 1;
Julian Hallc02fffb2020-11-23 18:22:06 +010011 uint32 alg = 2;
12 bytes ciphertext = 3;
13 bytes salt = 4;
14}
15
16message AsymmetricDecryptOut {
17 bytes plaintext = 1;
18}