Mbed TLS v3.6.3
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ecp_alt.h
Go to the documentation of this file.
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 {
12  const mbedtls_mpi P;
13  const mbedtls_mpi A;
14  const mbedtls_mpi B;
16  const mbedtls_mpi N;
17  const size_t pbits;
18  const size_t nbits;
19 }
21 
22 #endif /* ecp_alt.h */
struct mbedtls_ecp_group mbedtls_ecp_group
const size_t pbits
Definition: ecp_alt.h:17
const mbedtls_ecp_group_id id
Definition: ecp_alt.h:11
const size_t nbits
Definition: ecp_alt.h:18
const mbedtls_mpi P
Definition: ecp_alt.h:12
const mbedtls_mpi N
Definition: ecp_alt.h:16
mbedtls_ecp_group_id
Definition: ecp.h:102
const mbedtls_mpi B
Definition: ecp_alt.h:14
const mbedtls_ecp_point G
Definition: ecp_alt.h:15
MPI structure.
Definition: bignum.h:207
The ECP point structure, in Jacobian coordinates.
Definition: ecp.h:158
const mbedtls_mpi A
Definition: ecp_alt.h:13