Mistake on this page?
Report an issue in GitHub or email us
crypto_client_struct.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 /**
8  * \file psa/crypto_client_struct.h
9  *
10  * \brief PSA cryptography client key attribute definitions
11  *
12  * \note This file may not be included directly. Applications must
13  * include psa/crypto.h.
14  *
15  * This file contains the definitions of some data structures with
16  * PSA crypto client specific definitions. This is for implementations
17  * with isolation between the Client applications and the Crypto
18  * Server module, it is expected that the front-end and the back-end
19  * would have different versions of the data structure.
20  */
21 #ifndef PSA_CRYPTO_CLIENT_STRUCT_H
22 #define PSA_CRYPTO_CLIENT_STRUCT_H
23 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
28 /* This is the client view of the `key_attributes` structure. Only
29  * fields which need to be set by the PSA crypto client are present.
30  * The PSA crypto service will maintain a different version of the
31  * data structure internally. */
33 {
34  uint32_t type;
35  uint32_t lifetime;
36  uint32_t id;
37  uint32_t alg;
38  uint32_t alg2;
39  uint32_t usage;
40  uint16_t bits;
41 };
42 
43 #define PSA_CLIENT_KEY_ATTRIBUTES_INIT {0, 0, 0, 0, 0, 0, 0}
44 
45 #ifdef __cplusplus
46 }
47 #endif
48 
49 #endif /* PSA_CRYPTO_CLIENT_STRUCT_H */
Important Information for this Arm website

This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies. If you are not happy with the use of these cookies, please review our Cookie Policy to learn how they can be disabled. By disabling cookies, some features of the site will not work.