ECDSACC26X4_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 #ifndef ti_drivers_ecdsa_ECDSACC26X4_s__include
34 #define ti_drivers_ecdsa_ECDSACC26X4_s__include
35 
36 #include <stdint.h>
37 
39 #include <ti/drivers/ECDSA.h>
40 
42 
43 #include <third_party/tfm/interface/include/psa/error.h>
44 #include <third_party/tfm/interface/include/psa/service.h>
45 
46 #if defined(TFM_PSA_API)
47  #include "ti_drivers_config.h" /* Sysconfig generated header */
48 #endif
49 
50 #ifdef __cplusplus
51 extern "C" {
52 #endif
53 
54 #define ECDSA_S_MSG_TYPE(index) (CRYPTO_S_MSG_TYPE_INDEX_ECDSA | ((int32_t)1 << (CRYPTO_S_MSG_TYPE_SHIFT + (index))))
55 
56 /*
57  * ECDSA secure message types
58  * These secure message structs correspond to the secure message types defined
59  * above. Together, they are used by non-secure client to make PSA calls to the
60  * ECDSA secure service. There is a single input vector for the PSA call
61  * which is a pointer to secure message struct. If the underlying function
62  * has a return value, there is a single output vector which is a pointer to
63  * storage for the return value.
64  */
65 #define ECDSA_S_MSG_TYPE_CONSTRUCT ECDSA_S_MSG_TYPE(0U)
66 #define ECDSA_S_MSG_TYPE_OPEN ECDSA_S_MSG_TYPE(1U)
67 #define ECDSA_S_MSG_TYPE_REGISTER_CALLBACK ECDSA_S_MSG_TYPE(2U)
68 #define ECDSA_S_MSG_TYPE_CLOSE ECDSA_S_MSG_TYPE(3U)
69 #define ECDSA_S_MSG_TYPE_SIGN ECDSA_S_MSG_TYPE(4U)
70 #define ECDSA_S_MSG_TYPE_VERIFY ECDSA_S_MSG_TYPE(5U)
71 #define ECDSA_S_MSG_TYPE_CANCEL_OPERATION ECDSA_S_MSG_TYPE(6U)
72 
73 /*
74  * Config pool size determines how many dynamic driver instances can be created
75  * by the non-secure client using ECDSA_construct().
76  */
77 #ifndef CONFIG_ECDSA_S_CONFIG_POOL_SIZE
78  #define CONFIG_ECDSA_S_CONFIG_POOL_SIZE 1
79 #endif
80 
81 #define ECDSA_SECURE_CALLBACK_COUNT (CONFIG_TI_DRIVERS_ECDSA_COUNT + CONFIG_ECDSA_S_CONFIG_POOL_SIZE)
82 
83 /*
84  * ========= ECDSA Secure Callback struct =========
85  * Non-secure clients must register their callback after opening or
86  * constructing a driver instance with blocking or callback return behavior.
87  */
88 typedef struct
89 {
91  /* ECDSA callback fxn parameters */
93  int_fast16_t returnStatus;
97 
98 /*
99  * ========= ECDSA Secure Message Structs =========
100  * These secure message structs correspond to the secure message types defined
101  * above. Together, they are used by non-secure client to make PSA calls to the
102  * ECDSA secure service. There is a single input vector for the PSA call
103  * which is a pointer to secure message struct. If the underlying function
104  * has a return value, there is a single output vector which is a pointer to
105  * storage for the return value.
106  */
107 typedef struct
108 {
112 
113 typedef struct
114 {
115  uint_least8_t index;
118 
119 typedef struct
120 {
124 
125 typedef struct
126 {
129 
130 typedef struct
131 {
135 
136 typedef struct
137 {
141 
142 typedef struct
143 {
146 
157 psa_status_t ECDSA_s_handlePsaMsg(psa_msg_t *msg);
158 
164 void ECDSA_s_init(void);
165 
166 #ifdef __cplusplus
167 }
168 #endif
169 
170 #endif /* ti_drivers_ecdsa_ECDSACC26X4_s__include */
TI Driver for Elliptic Curve Digital Signature Algorithm.
Definition: ECDSACC26X4_s.h:125
ECDSA_Handle handle
Definition: ECDSACC26X4_s.h:121
Definition: SecureCallback.h:51
ECDSA_Operation operation
Definition: ECDSACC26X4_s.h:94
Definition: ECDSACC26X4_s.h:136
Definition: ECDSACC26X4_s.h:130
ECDSA_Handle handle
Definition: ECDSACC26X4_s.h:132
ECDSA_OperationSign * operation
Definition: ECDSACC26X4_s.h:133
ECDSA_s_SecureCallback * callback
Definition: ECDSACC26X4_s.h:122
Definition: ECDSACC26X4_s.h:88
void ECDSA_s_init(void)
Initializes the ECDSA secure driver.
ECDSA Global configuration.
Definition: ECDSA.h:469
const ECDSA_Params * params
Definition: ECDSACC26X4_s.h:110
Definition: ECDSACC26X4_s.h:113
ECDSA_Config * config
Definition: ECDSACC26X4_s.h:109
Secure Crypto Service.
Definition: ECDSACC26X4_s.h:107
Struct containing the parameters required for signing a message.
Definition: ECDSA.h:526
ECDSA_OperationVerify * operation
Definition: ECDSACC26X4_s.h:139
uint_least8_t index
Definition: ECDSACC26X4_s.h:115
ECDSA Parameters.
Definition: ECDSA.h:626
SecureCallback_Object object
Definition: ECDSACC26X4_s.h:90
ECDSA_OperationType
Enum for the operation types supported by the driver.
Definition: ECDSA.h:588
ECDSA_Handle handle
Definition: ECDSACC26X4_s.h:92
ECDSA_Handle handle
Definition: ECDSACC26X4_s.h:144
Definition: ECDSACC26X4_s.h:119
Union containing pointers to all supported operation structs.
Definition: ECDSA.h:579
int_fast16_t returnStatus
Definition: ECDSACC26X4_s.h:93
psa_status_t ECDSA_s_handlePsaMsg(psa_msg_t *msg)
Handles PSA messages for ECDSA secure driver.
Struct containing the parameters required for verifying a message.
Definition: ECDSA.h:552
ECDSA_Handle handle
Definition: ECDSACC26X4_s.h:127
ECDSA_OperationType operationType
Definition: ECDSACC26X4_s.h:95
Definition: ECDSACC26X4_s.h:142
const ECDSA_Params * params
Definition: ECDSACC26X4_s.h:116
ECDSA_Handle handle
Definition: ECDSACC26X4_s.h:138
© Copyright 1995-2022, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale