Julian Hall | c02fffb | 2020-11-23 18:22:06 +0100 | [diff] [blame] | 1 | /* |
Balint Dobszay | 3c52ce6 | 2021-05-10 16:27:18 +0200 | [diff] [blame] | 2 | * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved. |
Julian Hall | c02fffb | 2020-11-23 18:22:06 +0100 | [diff] [blame] | 3 | * SPDX-License-Identifier: BSD-3-Clause |
| 4 | */ |
| 5 | syntax = "proto3"; |
| 6 | |
| 7 | package ts_crypto; |
| 8 | |
| 9 | message AsymmetricDecryptIn { |
Balint Dobszay | 3c52ce6 | 2021-05-10 16:27:18 +0200 | [diff] [blame] | 10 | uint32 id = 1; |
Julian Hall | c02fffb | 2020-11-23 18:22:06 +0100 | [diff] [blame] | 11 | uint32 alg = 2; |
| 12 | bytes ciphertext = 3; |
| 13 | bytes salt = 4; |
| 14 | } |
| 15 | |
| 16 | message AsymmetricDecryptOut { |
| 17 | bytes plaintext = 1; |
| 18 | } |