blob: 230cec9d4d8160b21b1166d1fe3947eaa8968f1f [file] [log] [blame]
Juan Castilloa57a4d52015-04-02 15:44:20 +01001/*
Govindraj Raja9c7dfb02023-01-11 18:34:58 +00002 * Copyright (c) 2015-2023, Arm Limited and Contributors. All rights reserved.
Juan Castilloa57a4d52015-04-02 15:44:20 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Juan Castilloa57a4d52015-04-02 15:44:20 +01005 */
6
Sumit Garg392e4df2019-11-15 10:43:00 +05307#include <assert.h>
Juan Castilloa57a4d52015-04-02 15:44:20 +01008#include <stddef.h>
9#include <string.h>
10
Juan Castillobae6b2a2015-11-05 09:24:53 +000011/* mbed TLS headers */
Sumit Garg392e4df2019-11-15 10:43:00 +053012#include <mbedtls/gcm.h>
Juan Castillobae6b2a2015-11-05 09:24:53 +000013#include <mbedtls/md.h>
14#include <mbedtls/memory_buffer_alloc.h>
15#include <mbedtls/oid.h>
16#include <mbedtls/platform.h>
Govindraj Raja9c7dfb02023-01-11 18:34:58 +000017#include <mbedtls/version.h>
Madhukar Pappireddy57eaae82020-03-05 18:18:40 -060018#include <mbedtls/x509.h>
Juan Castilloa57a4d52015-04-02 15:44:20 +010019
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000020#include <common/debug.h>
21#include <drivers/auth/crypto_mod.h>
22#include <drivers/auth/mbedtls/mbedtls_common.h>
Govindraj Raja9c7dfb02023-01-11 18:34:58 +000023
Sumit Garg392e4df2019-11-15 10:43:00 +053024#include <plat/common/platform.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000025
Juan Castillobae6b2a2015-11-05 09:24:53 +000026#define LIB_NAME "mbed TLS"
Juan Castilloa57a4d52015-04-02 15:44:20 +010027
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +010028#if CRYPTO_SUPPORT == CRYPTO_HASH_CALC_ONLY || \
29CRYPTO_SUPPORT == CRYPTO_AUTH_VERIFY_AND_HASH_CALC
Manish V Badarkhee112a5a2021-10-06 23:41:50 +010030/*
31 * CRYPTO_MD_MAX_SIZE value is as per current stronger algorithm available
32 * so make sure that mbed TLS MD maximum size must be lesser than this.
33 */
34CASSERT(CRYPTO_MD_MAX_SIZE >= MBEDTLS_MD_MAX_SIZE,
35 assert_mbedtls_md_size_overflow);
36
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +010037#endif /* CRYPTO_SUPPORT == CRYPTO_HASH_CALC_ONLY || \
38 CRYPTO_SUPPORT == CRYPTO_AUTH_VERIFY_AND_HASH_CALC */
Manish V Badarkhee112a5a2021-10-06 23:41:50 +010039
Juan Castilloa57a4d52015-04-02 15:44:20 +010040/*
41 * AlgorithmIdentifier ::= SEQUENCE {
42 * algorithm OBJECT IDENTIFIER,
43 * parameters ANY DEFINED BY algorithm OPTIONAL
44 * }
45 *
46 * SubjectPublicKeyInfo ::= SEQUENCE {
47 * algorithm AlgorithmIdentifier,
48 * subjectPublicKey BIT STRING
49 * }
50 *
51 * DigestInfo ::= SEQUENCE {
52 * digestAlgorithm AlgorithmIdentifier,
53 * digest OCTET STRING
54 * }
55 */
56
57/*
58 * Initialize the library and export the descriptor
59 */
60static void init(void)
61{
Juan Castillobae6b2a2015-11-05 09:24:53 +000062 /* Initialize mbed TLS */
Juan Castilloa57a4d52015-04-02 15:44:20 +010063 mbedtls_init();
64}
65
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +010066#if CRYPTO_SUPPORT == CRYPTO_AUTH_VERIFY_ONLY || \
67CRYPTO_SUPPORT == CRYPTO_AUTH_VERIFY_AND_HASH_CALC
Juan Castilloa57a4d52015-04-02 15:44:20 +010068/*
69 * Verify a signature.
70 *
71 * Parameters are passed using the DER encoding format following the ASN.1
72 * structures detailed above.
73 */
74static int verify_signature(void *data_ptr, unsigned int data_len,
75 void *sig_ptr, unsigned int sig_len,
76 void *sig_alg, unsigned int sig_alg_len,
77 void *pk_ptr, unsigned int pk_len)
78{
Juan Castillobae6b2a2015-11-05 09:24:53 +000079 mbedtls_asn1_buf sig_oid, sig_params;
80 mbedtls_asn1_buf signature;
81 mbedtls_md_type_t md_alg;
82 mbedtls_pk_type_t pk_alg;
Soby Mathew0a68d132017-05-31 10:35:27 +010083 mbedtls_pk_context pk = {0};
Juan Castilloa57a4d52015-04-02 15:44:20 +010084 int rc;
85 void *sig_opts = NULL;
Juan Castillobae6b2a2015-11-05 09:24:53 +000086 const mbedtls_md_info_t *md_info;
Juan Castilloa57a4d52015-04-02 15:44:20 +010087 unsigned char *p, *end;
Juan Castillobae6b2a2015-11-05 09:24:53 +000088 unsigned char hash[MBEDTLS_MD_MAX_SIZE];
Juan Castilloa57a4d52015-04-02 15:44:20 +010089
90 /* Get pointers to signature OID and parameters */
91 p = (unsigned char *)sig_alg;
92 end = (unsigned char *)(p + sig_alg_len);
Juan Castillobae6b2a2015-11-05 09:24:53 +000093 rc = mbedtls_asn1_get_alg(&p, end, &sig_oid, &sig_params);
Juan Castilloa57a4d52015-04-02 15:44:20 +010094 if (rc != 0) {
95 return CRYPTO_ERR_SIGNATURE;
96 }
97
98 /* Get the actual signature algorithm (MD + PK) */
Soby Mathew0a68d132017-05-31 10:35:27 +010099 rc = mbedtls_x509_get_sig_alg(&sig_oid, &sig_params, &md_alg, &pk_alg, &sig_opts);
Juan Castilloa57a4d52015-04-02 15:44:20 +0100100 if (rc != 0) {
101 return CRYPTO_ERR_SIGNATURE;
102 }
103
104 /* Parse the public key */
Juan Castillobae6b2a2015-11-05 09:24:53 +0000105 mbedtls_pk_init(&pk);
Juan Castilloa57a4d52015-04-02 15:44:20 +0100106 p = (unsigned char *)pk_ptr;
107 end = (unsigned char *)(p + pk_len);
Juan Castillobae6b2a2015-11-05 09:24:53 +0000108 rc = mbedtls_pk_parse_subpubkey(&p, end, &pk);
Juan Castilloa57a4d52015-04-02 15:44:20 +0100109 if (rc != 0) {
Soby Mathew0a68d132017-05-31 10:35:27 +0100110 rc = CRYPTO_ERR_SIGNATURE;
111 goto end2;
Juan Castilloa57a4d52015-04-02 15:44:20 +0100112 }
113
114 /* Get the signature (bitstring) */
115 p = (unsigned char *)sig_ptr;
116 end = (unsigned char *)(p + sig_len);
117 signature.tag = *p;
Juan Castillobae6b2a2015-11-05 09:24:53 +0000118 rc = mbedtls_asn1_get_bitstring_null(&p, end, &signature.len);
Demi Marie Obenour447adc02022-12-08 15:24:10 -0500119 if ((rc != 0) || ((size_t)(end - p) != signature.len)) {
Juan Castilloa57a4d52015-04-02 15:44:20 +0100120 rc = CRYPTO_ERR_SIGNATURE;
Soby Mathew0a68d132017-05-31 10:35:27 +0100121 goto end1;
Juan Castilloa57a4d52015-04-02 15:44:20 +0100122 }
123 signature.p = p;
124
125 /* Calculate the hash of the data */
Juan Castillobae6b2a2015-11-05 09:24:53 +0000126 md_info = mbedtls_md_info_from_type(md_alg);
Juan Castilloa57a4d52015-04-02 15:44:20 +0100127 if (md_info == NULL) {
128 rc = CRYPTO_ERR_SIGNATURE;
Soby Mathew0a68d132017-05-31 10:35:27 +0100129 goto end1;
Juan Castilloa57a4d52015-04-02 15:44:20 +0100130 }
131 p = (unsigned char *)data_ptr;
Juan Castillobae6b2a2015-11-05 09:24:53 +0000132 rc = mbedtls_md(md_info, p, data_len, hash);
Juan Castilloa57a4d52015-04-02 15:44:20 +0100133 if (rc != 0) {
134 rc = CRYPTO_ERR_SIGNATURE;
Soby Mathew0a68d132017-05-31 10:35:27 +0100135 goto end1;
Juan Castilloa57a4d52015-04-02 15:44:20 +0100136 }
137
138 /* Verify the signature */
Juan Castillobae6b2a2015-11-05 09:24:53 +0000139 rc = mbedtls_pk_verify_ext(pk_alg, sig_opts, &pk, md_alg, hash,
140 mbedtls_md_get_size(md_info),
141 signature.p, signature.len);
Juan Castilloa57a4d52015-04-02 15:44:20 +0100142 if (rc != 0) {
143 rc = CRYPTO_ERR_SIGNATURE;
Soby Mathew0a68d132017-05-31 10:35:27 +0100144 goto end1;
Juan Castilloa57a4d52015-04-02 15:44:20 +0100145 }
146
147 /* Signature verification success */
148 rc = CRYPTO_SUCCESS;
149
Soby Mathew0a68d132017-05-31 10:35:27 +0100150end1:
Juan Castillobae6b2a2015-11-05 09:24:53 +0000151 mbedtls_pk_free(&pk);
Soby Mathew0a68d132017-05-31 10:35:27 +0100152end2:
153 mbedtls_free(sig_opts);
Juan Castilloa57a4d52015-04-02 15:44:20 +0100154 return rc;
155}
156
157/*
158 * Match a hash
159 *
160 * Digest info is passed in DER format following the ASN.1 structure detailed
161 * above.
162 */
163static int verify_hash(void *data_ptr, unsigned int data_len,
164 void *digest_info_ptr, unsigned int digest_info_len)
165{
Juan Castillobae6b2a2015-11-05 09:24:53 +0000166 mbedtls_asn1_buf hash_oid, params;
167 mbedtls_md_type_t md_alg;
168 const mbedtls_md_info_t *md_info;
Juan Castilloa57a4d52015-04-02 15:44:20 +0100169 unsigned char *p, *end, *hash;
Juan Castillobae6b2a2015-11-05 09:24:53 +0000170 unsigned char data_hash[MBEDTLS_MD_MAX_SIZE];
Juan Castilloa57a4d52015-04-02 15:44:20 +0100171 size_t len;
172 int rc;
173
Demi Marie Obenourae266642022-12-08 15:24:01 -0500174 /*
Demi Marie Obenourc2800782023-05-30 13:49:29 -0400175 * Digest info should be an MBEDTLS_ASN1_SEQUENCE, but padding after
176 * it is allowed. This is necessary to support multiple hash
177 * algorithms.
Demi Marie Obenourae266642022-12-08 15:24:01 -0500178 */
Juan Castilloa57a4d52015-04-02 15:44:20 +0100179 p = (unsigned char *)digest_info_ptr;
Sandrine Bailleuxdf8de2d2016-01-04 15:49:23 +0000180 end = p + digest_info_len;
Juan Castillobae6b2a2015-11-05 09:24:53 +0000181 rc = mbedtls_asn1_get_tag(&p, end, &len, MBEDTLS_ASN1_CONSTRUCTED |
182 MBEDTLS_ASN1_SEQUENCE);
Demi Marie Obenourc2800782023-05-30 13:49:29 -0400183 if (rc != 0) {
Juan Castilloa57a4d52015-04-02 15:44:20 +0100184 return CRYPTO_ERR_HASH;
185 }
186
Demi Marie Obenourc2800782023-05-30 13:49:29 -0400187 end = p + len;
188
Juan Castilloa57a4d52015-04-02 15:44:20 +0100189 /* Get the hash algorithm */
Juan Castillobae6b2a2015-11-05 09:24:53 +0000190 rc = mbedtls_asn1_get_alg(&p, end, &hash_oid, &params);
Juan Castilloa57a4d52015-04-02 15:44:20 +0100191 if (rc != 0) {
192 return CRYPTO_ERR_HASH;
193 }
194
Juan Castillobae6b2a2015-11-05 09:24:53 +0000195 rc = mbedtls_oid_get_md_alg(&hash_oid, &md_alg);
Juan Castilloa57a4d52015-04-02 15:44:20 +0100196 if (rc != 0) {
197 return CRYPTO_ERR_HASH;
198 }
199
Juan Castillobae6b2a2015-11-05 09:24:53 +0000200 md_info = mbedtls_md_info_from_type(md_alg);
Juan Castilloa57a4d52015-04-02 15:44:20 +0100201 if (md_info == NULL) {
202 return CRYPTO_ERR_HASH;
203 }
204
Demi Marie Obenourae266642022-12-08 15:24:01 -0500205 /* Hash should be octet string type and consume all bytes */
Juan Castillobae6b2a2015-11-05 09:24:53 +0000206 rc = mbedtls_asn1_get_tag(&p, end, &len, MBEDTLS_ASN1_OCTET_STRING);
Demi Marie Obenourae266642022-12-08 15:24:01 -0500207 if ((rc != 0) || ((size_t)(end - p) != len)) {
Juan Castilloa57a4d52015-04-02 15:44:20 +0100208 return CRYPTO_ERR_HASH;
209 }
210
211 /* Length of hash must match the algorithm's size */
Juan Castillobae6b2a2015-11-05 09:24:53 +0000212 if (len != mbedtls_md_get_size(md_info)) {
Juan Castilloa57a4d52015-04-02 15:44:20 +0100213 return CRYPTO_ERR_HASH;
214 }
215 hash = p;
216
217 /* Calculate the hash of the data */
218 p = (unsigned char *)data_ptr;
Juan Castillobae6b2a2015-11-05 09:24:53 +0000219 rc = mbedtls_md(md_info, p, data_len, data_hash);
Juan Castilloa57a4d52015-04-02 15:44:20 +0100220 if (rc != 0) {
221 return CRYPTO_ERR_HASH;
222 }
223
224 /* Compare values */
Antonio Nino Diaz0ca1afa2017-02-09 10:26:54 +0000225 rc = memcmp(data_hash, hash, mbedtls_md_get_size(md_info));
Juan Castilloa57a4d52015-04-02 15:44:20 +0100226 if (rc != 0) {
227 return CRYPTO_ERR_HASH;
228 }
229
230 return CRYPTO_SUCCESS;
231}
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100232#endif /* CRYPTO_SUPPORT == CRYPTO_AUTH_VERIFY_ONLY || \
233 CRYPTO_SUPPORT == CRYPTO_AUTH_VERIFY_AND_HASH_CALC */
Juan Castilloa57a4d52015-04-02 15:44:20 +0100234
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100235#if CRYPTO_SUPPORT == CRYPTO_HASH_CALC_ONLY || \
236CRYPTO_SUPPORT == CRYPTO_AUTH_VERIFY_AND_HASH_CALC
Alexei Fedorov913cb7e2020-01-23 14:27:38 +0000237/*
Manish V Badarkhee112a5a2021-10-06 23:41:50 +0100238 * Map a generic crypto message digest algorithm to the corresponding macro used
239 * by Mbed TLS.
240 */
241static inline mbedtls_md_type_t md_type(enum crypto_md_algo algo)
242{
243 switch (algo) {
244 case CRYPTO_MD_SHA512:
245 return MBEDTLS_MD_SHA512;
246 case CRYPTO_MD_SHA384:
247 return MBEDTLS_MD_SHA384;
248 case CRYPTO_MD_SHA256:
249 return MBEDTLS_MD_SHA256;
250 default:
251 /* Invalid hash algorithm. */
252 return MBEDTLS_MD_NONE;
253 }
254}
255
256/*
Alexei Fedorov913cb7e2020-01-23 14:27:38 +0000257 * Calculate a hash
258 *
259 * output points to the computed hash
260 */
Manish V Badarkhee112a5a2021-10-06 23:41:50 +0100261static int calc_hash(enum crypto_md_algo md_algo, void *data_ptr,
262 unsigned int data_len,
263 unsigned char output[CRYPTO_MD_MAX_SIZE])
Alexei Fedorov913cb7e2020-01-23 14:27:38 +0000264{
265 const mbedtls_md_info_t *md_info;
266
Manish V Badarkhee112a5a2021-10-06 23:41:50 +0100267 md_info = mbedtls_md_info_from_type(md_type(md_algo));
Alexei Fedorov913cb7e2020-01-23 14:27:38 +0000268 if (md_info == NULL) {
269 return CRYPTO_ERR_HASH;
270 }
271
Manish V Badarkhee112a5a2021-10-06 23:41:50 +0100272 /*
273 * Calculate the hash of the data, it is safe to pass the
274 * 'output' hash buffer pointer considering its size is always
275 * bigger than or equal to MBEDTLS_MD_MAX_SIZE.
276 */
Alexei Fedorov913cb7e2020-01-23 14:27:38 +0000277 return mbedtls_md(md_info, data_ptr, data_len, output);
278}
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100279#endif /* CRYPTO_SUPPORT == CRYPTO_HASH_CALC_ONLY || \
280 CRYPTO_SUPPORT == CRYPTO_AUTH_VERIFY_AND_HASH_CALC */
Alexei Fedorov913cb7e2020-01-23 14:27:38 +0000281
Sumit Garg392e4df2019-11-15 10:43:00 +0530282#if TF_MBEDTLS_USE_AES_GCM
283/*
284 * Stack based buffer allocation for decryption operation. It could
285 * be configured to balance stack usage vs execution speed.
286 */
287#define DEC_OP_BUF_SIZE 128
288
289static int aes_gcm_decrypt(void *data_ptr, size_t len, const void *key,
290 unsigned int key_len, const void *iv,
291 unsigned int iv_len, const void *tag,
292 unsigned int tag_len)
293{
294 mbedtls_gcm_context ctx;
295 mbedtls_cipher_id_t cipher = MBEDTLS_CIPHER_ID_AES;
296 unsigned char buf[DEC_OP_BUF_SIZE];
297 unsigned char tag_buf[CRYPTO_MAX_TAG_SIZE];
298 unsigned char *pt = data_ptr;
299 size_t dec_len;
300 int diff, i, rc;
Govindraj Rajadee8b6f2023-01-12 15:34:12 +0000301 size_t output_length __unused;
Sumit Garg392e4df2019-11-15 10:43:00 +0530302
303 mbedtls_gcm_init(&ctx);
304
305 rc = mbedtls_gcm_setkey(&ctx, cipher, key, key_len * 8);
306 if (rc != 0) {
307 rc = CRYPTO_ERR_DECRYPTION;
308 goto exit_gcm;
309 }
310
Govindraj Rajadee8b6f2023-01-12 15:34:12 +0000311#if (MBEDTLS_VERSION_MAJOR < 3)
Sumit Garg392e4df2019-11-15 10:43:00 +0530312 rc = mbedtls_gcm_starts(&ctx, MBEDTLS_GCM_DECRYPT, iv, iv_len, NULL, 0);
Govindraj Rajadee8b6f2023-01-12 15:34:12 +0000313#else
314 rc = mbedtls_gcm_starts(&ctx, MBEDTLS_GCM_DECRYPT, iv, iv_len);
315#endif
Sumit Garg392e4df2019-11-15 10:43:00 +0530316 if (rc != 0) {
317 rc = CRYPTO_ERR_DECRYPTION;
318 goto exit_gcm;
319 }
320
321 while (len > 0) {
322 dec_len = MIN(sizeof(buf), len);
323
Govindraj Rajadee8b6f2023-01-12 15:34:12 +0000324#if (MBEDTLS_VERSION_MAJOR < 3)
Sumit Garg392e4df2019-11-15 10:43:00 +0530325 rc = mbedtls_gcm_update(&ctx, dec_len, pt, buf);
Govindraj Rajadee8b6f2023-01-12 15:34:12 +0000326#else
327 rc = mbedtls_gcm_update(&ctx, pt, dec_len, buf, sizeof(buf), &output_length);
328#endif
329
Sumit Garg392e4df2019-11-15 10:43:00 +0530330 if (rc != 0) {
331 rc = CRYPTO_ERR_DECRYPTION;
332 goto exit_gcm;
333 }
334
335 memcpy(pt, buf, dec_len);
336 pt += dec_len;
337 len -= dec_len;
338 }
339
Govindraj Rajadee8b6f2023-01-12 15:34:12 +0000340#if (MBEDTLS_VERSION_MAJOR < 3)
Sumit Garg392e4df2019-11-15 10:43:00 +0530341 rc = mbedtls_gcm_finish(&ctx, tag_buf, sizeof(tag_buf));
Govindraj Rajadee8b6f2023-01-12 15:34:12 +0000342#else
343 rc = mbedtls_gcm_finish(&ctx, NULL, 0, &output_length, tag_buf, sizeof(tag_buf));
344#endif
345
Sumit Garg392e4df2019-11-15 10:43:00 +0530346 if (rc != 0) {
347 rc = CRYPTO_ERR_DECRYPTION;
348 goto exit_gcm;
349 }
350
351 /* Check tag in "constant-time" */
352 for (diff = 0, i = 0; i < tag_len; i++)
353 diff |= ((const unsigned char *)tag)[i] ^ tag_buf[i];
354
355 if (diff != 0) {
356 rc = CRYPTO_ERR_DECRYPTION;
357 goto exit_gcm;
358 }
359
360 /* GCM decryption success */
361 rc = CRYPTO_SUCCESS;
362
363exit_gcm:
364 mbedtls_gcm_free(&ctx);
365 return rc;
366}
367
368/*
369 * Authenticated decryption of an image
370 */
371static int auth_decrypt(enum crypto_dec_algo dec_algo, void *data_ptr,
372 size_t len, const void *key, unsigned int key_len,
373 unsigned int key_flags, const void *iv,
374 unsigned int iv_len, const void *tag,
375 unsigned int tag_len)
376{
377 int rc;
378
379 assert((key_flags & ENC_KEY_IS_IDENTIFIER) == 0);
380
381 switch (dec_algo) {
382 case CRYPTO_GCM_DECRYPT:
383 rc = aes_gcm_decrypt(data_ptr, len, key, key_len, iv, iv_len,
384 tag, tag_len);
385 if (rc != 0)
386 return rc;
387 break;
388 default:
389 return CRYPTO_ERR_DECRYPTION;
390 }
391
392 return CRYPTO_SUCCESS;
393}
394#endif /* TF_MBEDTLS_USE_AES_GCM */
395
Juan Castilloa57a4d52015-04-02 15:44:20 +0100396/*
397 * Register crypto library descriptor
398 */
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100399#if CRYPTO_SUPPORT == CRYPTO_AUTH_VERIFY_AND_HASH_CALC
Sumit Garg392e4df2019-11-15 10:43:00 +0530400#if TF_MBEDTLS_USE_AES_GCM
401REGISTER_CRYPTO_LIB(LIB_NAME, init, verify_signature, verify_hash, calc_hash,
Yann Gautierc68b8af2023-01-24 09:39:47 +0100402 auth_decrypt, NULL);
Sumit Garg392e4df2019-11-15 10:43:00 +0530403#else
404REGISTER_CRYPTO_LIB(LIB_NAME, init, verify_signature, verify_hash, calc_hash,
Yann Gautierc68b8af2023-01-24 09:39:47 +0100405 NULL, NULL);
Sumit Garg392e4df2019-11-15 10:43:00 +0530406#endif
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100407#elif CRYPTO_SUPPORT == CRYPTO_AUTH_VERIFY_ONLY
Sumit Garg392e4df2019-11-15 10:43:00 +0530408#if TF_MBEDTLS_USE_AES_GCM
Yann Gautier2b6673d2023-03-15 11:31:25 +0100409REGISTER_CRYPTO_LIB(LIB_NAME, init, verify_signature, verify_hash, NULL,
Yann Gautierc68b8af2023-01-24 09:39:47 +0100410 auth_decrypt, NULL);
Alexei Fedorov913cb7e2020-01-23 14:27:38 +0000411#else
Yann Gautier2b6673d2023-03-15 11:31:25 +0100412REGISTER_CRYPTO_LIB(LIB_NAME, init, verify_signature, verify_hash, NULL,
413 NULL, NULL);
Sumit Garg392e4df2019-11-15 10:43:00 +0530414#endif
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100415#elif CRYPTO_SUPPORT == CRYPTO_HASH_CALC_ONLY
Yann Gautier2b6673d2023-03-15 11:31:25 +0100416REGISTER_CRYPTO_LIB(LIB_NAME, init, NULL, NULL, calc_hash, NULL, NULL);
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100417#endif /* CRYPTO_SUPPORT == CRYPTO_AUTH_VERIFY_AND_HASH_CALC */