Bignum: Document assumptions about the sign field
This commit is contained in:
parent
0ac9557c86
commit
1f32b5bea4
1 changed files with 1 additions and 1 deletions
|
@ -185,7 +185,7 @@ extern "C" {
|
||||||
*/
|
*/
|
||||||
typedef struct mbedtls_mpi
|
typedef struct mbedtls_mpi
|
||||||
{
|
{
|
||||||
int s; /*!< integer sign */
|
int s; /*!< Sign: -1 if the mpi is negative, 1 otherwise */
|
||||||
size_t n; /*!< total # of limbs */
|
size_t n; /*!< total # of limbs */
|
||||||
mbedtls_mpi_uint *p; /*!< pointer to limbs */
|
mbedtls_mpi_uint *p; /*!< pointer to limbs */
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue