112a9d9c8Sopenharmony_ci// bindgen-flags: --no-layout-tests
212a9d9c8Sopenharmony_citypedef unsigned mbedtls_mpi_uint;
312a9d9c8Sopenharmony_ci
412a9d9c8Sopenharmony_ci/**
512a9d9c8Sopenharmony_ci * \brief          MPI structure
612a9d9c8Sopenharmony_ci */
712a9d9c8Sopenharmony_citypedef struct
812a9d9c8Sopenharmony_ci{
912a9d9c8Sopenharmony_ci    int s;                /*!<  integer sign      */
1012a9d9c8Sopenharmony_ci    unsigned long n;      /*!<  total # of limbs  */
1112a9d9c8Sopenharmony_ci    mbedtls_mpi_uint *p;  /*!<  pointer to limbs  */
1212a9d9c8Sopenharmony_ci}
1312a9d9c8Sopenharmony_cimbedtls_mpi;
1412a9d9c8Sopenharmony_ci
15