mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-26 10:25:11 +00:00
Bignum: Document assumptions about the sign field
This commit is contained in:
parent
9332ecefc8
commit
9741fa6e2b
|
@ -179,7 +179,7 @@ extern "C" {
|
|||
*/
|
||||
typedef struct
|
||||
{
|
||||
int s; /*!< integer sign */
|
||||
int s; /*!< Sign: -1 if the mpi is negative, 1 otherwise */
|
||||
size_t n; /*!< total # of limbs */
|
||||
mbedtls_mpi_uint *p; /*!< pointer to limbs */
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue