18
18
* the MCUBOOT_USE_PSA_CRYPTO will take precedence.
19
19
*/
20
20
21
- #ifndef __BOOTUTIL_CRYPTO_SHA256_H_
22
- #define __BOOTUTIL_CRYPTO_SHA256_H_
21
+ #ifndef __BOOTUTIL_CRYPTO_SHA_H_
22
+ #define __BOOTUTIL_CRYPTO_SHA_H_
23
23
24
24
#include "mcuboot_config/mcuboot_config.h"
25
25
#include "mcuboot_config/mcuboot_logging.h"
34
34
#error "One crypto backend must be defined: either CC310/MBED_TLS/TINYCRYPT/PSA_CRYPTO"
35
35
#endif
36
36
37
+ #if defined(MCUBOOT_SIGN_EC384 )
38
+ #define IMAGE_HASH_SIZE (48)
39
+ #define EXPECTED_HASH_TLV IMAGE_TLV_SHA384
40
+ #else
41
+ #define IMAGE_HASH_SIZE (32)
42
+ #define EXPECTED_HASH_TLV IMAGE_TLV_SHA256
43
+ #endif /* MCUBOOT_SIGN_EC384 */
44
+
37
45
/* Universal defines for SHA-256 */
38
- #define BOOTUTIL_CRYPTO_SHA256_BLOCK_SIZE (64)
46
+ #define BOOTUTIL_CRYPTO_SHA256_BLOCK_SIZE (64)
39
47
#define BOOTUTIL_CRYPTO_SHA256_DIGEST_SIZE (32)
40
48
41
49
#if defined(MCUBOOT_USE_PSA_CRYPTO )
@@ -69,119 +77,129 @@ extern "C" {
69
77
70
78
#if defined(MCUBOOT_USE_PSA_CRYPTO )
71
79
72
- typedef psa_hash_operation_t bootutil_sha256_context ;
80
+ typedef psa_hash_operation_t bootutil_sha_context ;
73
81
74
- static inline int bootutil_sha256_init ( bootutil_sha256_context * ctx )
82
+ static inline int bootutil_sha_init ( bootutil_sha_context * ctx )
75
83
{
76
84
* ctx = psa_hash_operation_init ();
77
- return (int )psa_hash_setup (ctx , PSA_ALG_SHA_256 );
85
+ #if defined(MCUBOOT_SIGN_EC384 )
86
+ psa_status_t status = psa_hash_setup (ctx , PSA_ALG_SHA_384 );
87
+ #else
88
+ psa_status_t status = psa_hash_setup (ctx , PSA_ALG_SHA_256 );
89
+ #endif
90
+ return (int )status ;
78
91
}
79
92
80
- static inline int bootutil_sha256_drop ( bootutil_sha256_context * ctx )
93
+ static inline int bootutil_sha_drop ( bootutil_sha_context * ctx )
81
94
{
82
95
return (int )psa_hash_abort (ctx );
83
96
}
84
97
85
- static inline int bootutil_sha256_update ( bootutil_sha256_context * ctx ,
86
- const void * data ,
87
- uint32_t data_len )
98
+ static inline int bootutil_sha_update ( bootutil_sha_context * ctx ,
99
+ const void * data ,
100
+ uint32_t data_len )
88
101
{
89
102
return (int )psa_hash_update (ctx , data , data_len );
90
103
}
91
104
92
- static inline int bootutil_sha256_finish ( bootutil_sha256_context * ctx ,
93
- uint8_t * output )
105
+ static inline int bootutil_sha_finish ( bootutil_sha_context * ctx ,
106
+ uint8_t * output )
94
107
{
95
108
size_t hash_length = 0 ;
96
109
/* Assumes the output buffer is at least the expected size of the hash */
110
+ #if defined(MCUBOOT_SIGN_EC384 )
111
+ return (int )psa_hash_finish (ctx , output , PSA_HASH_LENGTH (PSA_ALG_SHA_384 ), & hash_length );
112
+ #else
97
113
return (int )psa_hash_finish (ctx , output , PSA_HASH_LENGTH (PSA_ALG_SHA_256 ), & hash_length );
114
+ #endif
98
115
}
99
116
100
117
#elif defined(MCUBOOT_USE_MBED_TLS )
101
118
102
- typedef mbedtls_sha256_context bootutil_sha256_context ;
119
+ typedef mbedtls_sha256_context bootutil_sha_context ;
103
120
104
- static inline int bootutil_sha256_init ( bootutil_sha256_context * ctx )
121
+ static inline int bootutil_sha_init ( bootutil_sha_context * ctx )
105
122
{
106
123
mbedtls_sha256_init (ctx );
107
124
return mbedtls_sha256_starts_ret (ctx , 0 );
108
125
}
109
126
110
- static inline int bootutil_sha256_drop ( bootutil_sha256_context * ctx )
127
+ static inline int bootutil_sha_drop ( bootutil_sha_context * ctx )
111
128
{
112
129
/* XXX: config defines MBEDTLS_PLATFORM_NO_STD_FUNCTIONS so no need to free */
113
130
/* (void)mbedtls_sha256_free(ctx); */
114
131
(void )ctx ;
115
132
return 0 ;
116
133
}
117
134
118
- static inline int bootutil_sha256_update ( bootutil_sha256_context * ctx ,
119
- const void * data ,
120
- uint32_t data_len )
135
+ static inline int bootutil_sha_update ( bootutil_sha_context * ctx ,
136
+ const void * data ,
137
+ uint32_t data_len )
121
138
{
122
139
return mbedtls_sha256_update_ret (ctx , data , data_len );
123
140
}
124
141
125
- static inline int bootutil_sha256_finish ( bootutil_sha256_context * ctx ,
126
- uint8_t * output )
142
+ static inline int bootutil_sha_finish ( bootutil_sha_context * ctx ,
143
+ uint8_t * output )
127
144
{
128
145
return mbedtls_sha256_finish_ret (ctx , output );
129
146
}
130
147
131
148
#endif /* MCUBOOT_USE_MBED_TLS */
132
149
133
150
#if defined(MCUBOOT_USE_TINYCRYPT )
134
- typedef struct tc_sha256_state_struct bootutil_sha256_context ;
135
- static inline int bootutil_sha256_init (bootutil_sha256_context * ctx )
151
+ typedef struct tc_sha256_state_struct bootutil_sha_context ;
152
+
153
+ static inline int bootutil_sha_init (bootutil_sha_context * ctx )
136
154
{
137
155
tc_sha256_init (ctx );
138
156
return 0 ;
139
157
}
140
158
141
- static inline int bootutil_sha256_drop ( bootutil_sha256_context * ctx )
159
+ static inline int bootutil_sha_drop ( bootutil_sha_context * ctx )
142
160
{
143
161
(void )ctx ;
144
162
return 0 ;
145
163
}
146
164
147
- static inline int bootutil_sha256_update ( bootutil_sha256_context * ctx ,
148
- const void * data ,
149
- uint32_t data_len )
165
+ static inline int bootutil_sha_update ( bootutil_sha_context * ctx ,
166
+ const void * data ,
167
+ uint32_t data_len )
150
168
{
151
169
return tc_sha256_update (ctx , data , data_len );
152
170
}
153
171
154
- static inline int bootutil_sha256_finish ( bootutil_sha256_context * ctx ,
155
- uint8_t * output )
172
+ static inline int bootutil_sha_finish ( bootutil_sha_context * ctx ,
173
+ uint8_t * output )
156
174
{
157
175
return tc_sha256_final (output , ctx );
158
176
}
159
177
#endif /* MCUBOOT_USE_TINYCRYPT */
160
178
161
179
#if defined(MCUBOOT_USE_CC310 )
162
- static inline int bootutil_sha256_init ( bootutil_sha256_context * ctx )
180
+ static inline int bootutil_sha_init ( bootutil_sha_context * ctx )
163
181
{
164
182
cc310_sha256_init (ctx );
165
183
return 0 ;
166
184
}
167
185
168
- static inline int bootutil_sha256_drop ( bootutil_sha256_context * ctx )
186
+ static inline int bootutil_sha_drop ( bootutil_sha_context * ctx )
169
187
{
170
188
(void )ctx ;
171
189
nrf_cc310_disable ();
172
190
return 0 ;
173
191
}
174
192
175
- static inline int bootutil_sha256_update ( bootutil_sha256_context * ctx ,
176
- const void * data ,
177
- uint32_t data_len )
193
+ static inline int bootutil_sha_update ( bootutil_sha_context * ctx ,
194
+ const void * data ,
195
+ uint32_t data_len )
178
196
{
179
197
cc310_sha256_update (ctx , data , data_len );
180
198
return 0 ;
181
199
}
182
200
183
- static inline int bootutil_sha256_finish ( bootutil_sha256_context * ctx ,
184
- uint8_t * output )
201
+ static inline int bootutil_sha_finish ( bootutil_sha_context * ctx ,
202
+ uint8_t * output )
185
203
{
186
204
cc310_sha256_finalize (ctx , output );
187
205
return 0 ;
@@ -192,4 +210,4 @@ static inline int bootutil_sha256_finish(bootutil_sha256_context *ctx,
192
210
}
193
211
#endif
194
212
195
- #endif /* __BOOTUTIL_CRYPTO_SHA256_H_ */
213
+ #endif /* __BOOTUTIL_CRYPTO_SHA_H_ */
0 commit comments