14f1d1c828159d5b183fb65152cc43d516d7e3dc
[platform/upstream/connectedhomeip.git] / third_party / openthread / repo / examples / platforms / efr32mg13 / crypto / efr32-mbedtls-config.h
1 /*
2  *  Copyright (c) 2020, The OpenThread Authors.
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 are met:
7  *  1. Redistributions of source code must retain the above copyright
8  *     notice, this list of conditions and the following disclaimer.
9  *  2. Redistributions in binary form must reproduce the above copyright
10  *     notice, this list of conditions and the following disclaimer in the
11  *     documentation and/or other materials provided with the distribution.
12  *  3. Neither the name of the copyright holder nor the
13  *     names of its contributors may be used to endorse or promote products
14  *     derived from this software without specific prior written permission.
15  *
16  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17  *  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  *  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20  *  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  *  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  *  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  *  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  *  POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #ifndef EFR32_MBEDTLS_CONFIG_H
30 #define EFR32_MBEDTLS_CONFIG_H
31
32 #include "em_device.h"
33
34 /**
35  * \def MBEDTLS_AES_ALT
36  *
37  * Enable hardware acceleration for the AES block cipher
38  *
39  * Module:  sl_crypto/src/crypto_aes.c for devices with CRYPTO
40  *          sl_crypto/src/aes_aes.c for devices with AES
41  *
42  * See MBEDTLS_AES_C for more information.
43  */
44 #define MBEDTLS_AES_ALT
45
46 /**
47  * \def MBEDTLS_ECP_INTERNAL_ALT
48  * \def ECP_SHORTWEIERSTRASS
49  * \def MBEDTLS_ECP_ADD_MIXED_ALT
50  * \def MBEDTLS_ECP_DOUBLE_JAC_ALT
51  * \def MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT
52  * \def MBEDTLS_ECP_NORMALIZE_JAC_ALT
53  *
54  * Enable hardware acceleration for the elliptic curve over GF(p) library.
55  *
56  * Module:  sl_crypto/src/crypto_ecp.c
57  * Caller:  library/ecp.c
58  *
59  * Requires: MBEDTLS_BIGNUM_C, MBEDTLS_ECP_C and at least one
60  * MBEDTLS_ECP_DP_XXX_ENABLED and (CRYPTO_COUNT > 0)
61  */
62 #if defined(CRYPTO_COUNT) && (CRYPTO_COUNT > 0)
63 #define MBEDTLS_ECP_INTERNAL_ALT
64 #define ECP_SHORTWEIERSTRASS
65 #define MBEDTLS_ECP_ADD_MIXED_ALT
66 #define MBEDTLS_ECP_DOUBLE_JAC_ALT
67 #define MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT
68 #define MBEDTLS_ECP_NORMALIZE_JAC_ALT
69 #define MBEDTLS_ECP_RANDOMIZE_JAC_ALT
70 #endif
71
72 /**
73  * \def MBEDTLS_SHA256_ALT
74  *
75  * Enable hardware acceleration for the SHA-224 and SHA-256 cryptographic
76  * hash algorithms.
77  *
78  * Module:  sl_crypto/src/crypto_sha.c
79  * Caller:  library/entropy.c
80  *          library/mbedtls_md.c
81  *          library/ssl_cli.c
82  *          library/ssl_srv.c
83  *          library/ssl_tls.c
84  *
85  * Requires: MBEDTLS_SHA256_C and (CRYPTO_COUNT > 0)
86  * See MBEDTLS_SHA256_C for more information.
87  */
88 #if defined(CRYPTO_COUNT) && (CRYPTO_COUNT > 0)
89 #define MBEDTLS_SHA256_ALT
90 #endif
91
92 #endif // EFR32_MBEDTLS_CONFIG_H