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