blob: bd05264a8cd8cb0b0b459a7a36cc583263a38056 [file] [log] [blame]
Julian Hall8359a632021-07-08 15:10:30 +01001/*
2 * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
6#ifndef TS_CRYPTO_GET_KEY_ATTRIBUTES_H
7#define TS_CRYPTO_GET_KEY_ATTRIBUTES_H
8
9#include <stdint.h>
10#include "key_attributes.h"
11
12/* Mandatory fixed sized input parameters */
13struct __attribute__ ((__packed__)) ts_crypto_get_key_attributes_in
14{
15 uint32_t id;
16};
17
18/* Mandatory fixed sized output parameters */
19struct __attribute__ ((__packed__)) ts_crypto_get_key_attributes_out
20{
21 struct ts_crypto_key_attributes attributes;
22};
23
24#endif /* TS_CRYPTO_GET_KEY_ATTRIBUTES_H */