xref: /aosp_15_r20/external/mbedtls/tests/include/alt-dummy/ecp_alt.h (revision 62c56f9862f102b96d72393aff6076c951fb8148)
1 /* ecp_alt.h with dummy types for MBEDTLS_ECP_ALT */
2 /*
3  *  Copyright The Mbed TLS Contributors
4  *  SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
5  */
6 
7 #ifndef ECP_ALT_H
8 #define ECP_ALT_H
9 
10 typedef struct mbedtls_ecp_group {
11     const mbedtls_ecp_group_id id;
12     const mbedtls_mpi P;
13     const mbedtls_mpi A;
14     const mbedtls_mpi B;
15     const mbedtls_ecp_point G;
16     const mbedtls_mpi N;
17     const size_t pbits;
18     const size_t nbits;
19 }
20 mbedtls_ecp_group;
21 
22 #endif /* ecp_alt.h */
23