CryptoKeyKeyStore_PSA_s.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2022 Texas Instruments Incorporated - https://www.ti.com
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * * Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 /*!*****************************************************************************
34  * @file CryptoKeyKeyStore_PSA_s.h
35  * @brief Secure Crypto Service
36  *
37  * @anchor ti_drivers_cryptoutils_cryptokey_CryptoKeyKeyStore_PSA_s_Overview
38  * # Overview
39  * The Secure KeyStore driver is used to access all KeyStore functions
40  * when using the TF-M.
41  *
42  *******************************************************************************
43  */
44 #ifndef ti_drivers_cryptoutils_cryptokey_CryptoKeyKeyStore_PSA_s__include
45 #define ti_drivers_cryptoutils_cryptokey_CryptoKeyKeyStore_PSA_s__include
46 
47 #include <stdint.h>
48 
51 
52 #include <third_party/tfm/interface/include/psa/crypto.h>
53 #include <third_party/tfm/interface/include/psa/service.h>
54 
55 /* For client side key attribute structure */
56 #include <third_party/tfm/interface/include/psa/crypto_client_struct.h>
57 
58 #define KEYSTORE_PSA_S_MSG_CALC(a) (CRYPTO_S_MSG_TYPE_INDEX_KEYSTORE | ((int32_t)1 << (CRYPTO_S_MSG_TYPE_SHIFT + a)))
59 
60 /*
61  * Crypto Key Store secure message types
62  */
63 #define KEYSTORE_PSA_S_MSG_TYPE_GET_KEY KEYSTORE_PSA_S_MSG_CALC(0U)
64 #define KEYSTORE_PSA_S_MSG_TYPE_GENERATE_KEY KEYSTORE_PSA_S_MSG_CALC(1U)
65 #define KEYSTORE_PSA_S_MSG_TYPE_EXPORT_CERTIFICATE KEYSTORE_PSA_S_MSG_CALC(2U)
66 #define KEYSTORE_PSA_S_MSG_TYPE_EXPORT_PUBLIC_KEY KEYSTORE_PSA_S_MSG_CALC(3U)
67 #define KEYSTORE_PSA_S_MSG_TYPE_EXPORT_KEY KEYSTORE_PSA_S_MSG_CALC(4U)
68 #define KEYSTORE_PSA_S_MSG_TYPE_DESTROY_CERTIFICATE KEYSTORE_PSA_S_MSG_CALC(5U)
69 #define KEYSTORE_PSA_S_MSG_TYPE_DESTROY_KEY KEYSTORE_PSA_S_MSG_CALC(6U)
70 #define KEYSTORE_PSA_S_MSG_TYPE_IMPORT_CERTIFICATE KEYSTORE_PSA_S_MSG_CALC(7U)
71 #define KEYSTORE_PSA_S_MSG_TYPE_IMPORT_KEY KEYSTORE_PSA_S_MSG_CALC(8U)
72 #define KEYSTORE_PSA_S_MSG_TYPE_PURGE_KEY KEYSTORE_PSA_S_MSG_CALC(9U)
73 #define KEYSTORE_PSA_S_MSG_TYPE_GET_KEY_ATTRIBUTES KEYSTORE_PSA_S_MSG_CALC(10U)
74 #define KEYSTORE_PSA_S_MSG_TYPE_RESET_KEY_ATTRIBUTES KEYSTORE_PSA_S_MSG_CALC(11U)
75 
76 /*
77  * ============ KeyStore driver Secure Message Structs =========
78  * These secure message structs correspond to the secure message types defined
79  * above. Together, they are used by non-secure client to make PSA calls to the
80  * KeyStore secure service. There is a single input vector for the PSA call
81  * which is a pointer to secure message struct. If the underlying function
82  * has a return value, there is a single output vector which is a pointer to
83  * storage for the return value.
84  */
85 typedef struct
86 {
87  uint32_t key;
88  uint8_t *data;
89  size_t dataSize;
90  size_t *dataLength;
94 
95 typedef struct
96 {
97  struct psa_client_key_attributes_s *attributes;
100 
101 /* Msg for KeyStore_PSA_exportKey(), KeyStore_PSA_exportCertificate(), and KeyStore_PSA_exportPublicKey() */
102 typedef struct
103 {
104  uint32_t key;
105  uint8_t *data;
106  size_t dataSize;
107  size_t *dataLength;
109 
110 typedef struct
111 {
112  struct psa_client_key_attributes_s *attributes;
113  uint32_t *key;
114  uint8_t *data;
115  size_t dataLength;
117 
118 typedef struct
119 {
120  struct psa_client_key_attributes_s *attributes;
121  uint8_t *data;
122  size_t dataLength;
123  uint32_t *key;
125 
126 /* Msg for KeyStore_PSA_destroyKey(), KeyStore_PSA_destroyCertificate(), and KeyStore_PSA_purgeKey() */
127 typedef struct
128 {
129  uint32_t key;
131 
132 typedef struct
133 {
134  uint32_t key;
135  struct psa_client_key_attributes_s *attributes;
137 
138 typedef struct
139 {
140  struct psa_client_key_attributes_s *attributes;
142 
153 psa_status_t KeyStore_s_handlePsaMsg(psa_msg_t *msg);
154 
160 void KeyStore_s_init(void);
161 
173 psa_status_t KeyStore_s_copyKeyAttributesFromClient(struct psa_client_key_attributes_s *clientKeyAttr,
174  int32_t clientId,
175  psa_key_attributes_t *keyAttributes);
176 
185 void KeyStore_s_copyKeyIDFromClient(KeyStore_PSA_KeyFileId *keyID, int32_t clientId, uint32_t *clientKeyID);
186 #endif /* ti_drivers_cryptoutils_cryptokey_CryptoKeyKeyStore_PSA_s__include */
Definition: CryptoKeyKeyStore_PSA_s.h:118
size_t dataSize
Definition: CryptoKeyKeyStore_PSA_s.h:106
psa_key_usage_t KeyStore_PSA_KeyUsage
Encoding of permitted usage on a key.
Definition: CryptoKeyKeyStore_PSA.h:124
uint32_t key
Definition: CryptoKeyKeyStore_PSA_s.h:87
uint32_t * key
Definition: CryptoKeyKeyStore_PSA_s.h:123
KeyStore_PSA_Algorithm alg
Definition: CryptoKeyKeyStore_PSA_s.h:91
uint32_t key
Definition: CryptoKeyKeyStore_PSA_s.h:134
uint32_t key
Definition: CryptoKeyKeyStore_PSA_s.h:129
CryptoKeyKeyStore_PSA driver header.
Definition: CryptoKeyKeyStore_PSA_s.h:127
psa_status_t KeyStore_s_handlePsaMsg(psa_msg_t *msg)
Handles PSA messages for KeyStore secure driver.
psa_key_file_id_t KeyStore_PSA_KeyFileId
Definition: CryptoKeyKeyStore_PSA.h:762
KeyStore_PSA_KeyUsage usage
Definition: CryptoKeyKeyStore_PSA_s.h:92
struct psa_client_key_attributes_s * attributes
Definition: CryptoKeyKeyStore_PSA_s.h:135
Secure Crypto Service.
Definition: CryptoKeyKeyStore_PSA_s.h:85
uint8_t * data
Definition: CryptoKeyKeyStore_PSA_s.h:105
uint32_t key
Definition: CryptoKeyKeyStore_PSA_s.h:104
uint8_t * data
Definition: CryptoKeyKeyStore_PSA_s.h:121
Definition: CryptoKeyKeyStore_PSA_s.h:95
uint32_t * key
Definition: CryptoKeyKeyStore_PSA_s.h:113
uint8_t * data
Definition: CryptoKeyKeyStore_PSA_s.h:114
size_t * dataLength
Definition: CryptoKeyKeyStore_PSA_s.h:90
KeyStore_PSA_KeyFileId * key
Definition: CryptoKeyKeyStore_PSA_s.h:98
struct psa_client_key_attributes_s * attributes
Definition: CryptoKeyKeyStore_PSA_s.h:112
void KeyStore_s_copyKeyIDFromClient(KeyStore_PSA_KeyFileId *keyID, int32_t clientId, uint32_t *clientKeyID)
Copies client key ID from non-secure side to secure side.
Definition: CryptoKeyKeyStore_PSA_s.h:102
size_t dataLength
Definition: CryptoKeyKeyStore_PSA_s.h:115
size_t dataLength
Definition: CryptoKeyKeyStore_PSA_s.h:122
psa_algorithm_t KeyStore_PSA_Algorithm
Encoding of a cryptographic algorithm.
Definition: CryptoKeyKeyStore_PSA.h:440
psa_status_t KeyStore_s_copyKeyAttributesFromClient(struct psa_client_key_attributes_s *clientKeyAttr, int32_t clientId, psa_key_attributes_t *keyAttributes)
Gets key attributes from client key attributes. Follows tfm_crypto_key_attributes_from_client() ...
struct psa_client_key_attributes_s * attributes
Definition: CryptoKeyKeyStore_PSA_s.h:140
Definition: CryptoKeyKeyStore_PSA_s.h:132
Definition: CryptoKeyKeyStore_PSA_s.h:110
size_t dataSize
Definition: CryptoKeyKeyStore_PSA_s.h:89
struct psa_client_key_attributes_s * attributes
Definition: CryptoKeyKeyStore_PSA_s.h:120
Definition: CryptoKeyKeyStore_PSA_s.h:138
struct psa_client_key_attributes_s * attributes
Definition: CryptoKeyKeyStore_PSA_s.h:97
size_t * dataLength
Definition: CryptoKeyKeyStore_PSA_s.h:107
uint8_t * data
Definition: CryptoKeyKeyStore_PSA_s.h:88
void KeyStore_s_init(void)
Initializes the KeyStore secure driver.
© Copyright 1995-2023, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale