mbedTLS + 0/1 examples
SourceVu will show references to mbedtls_mpi from the following samples and libraries:
 
Symbols
loading...
Files
loading...
SummarySyntaxRelatedExamplesReferencesInstances

Fields

Field
Declared as
Description
private_p
Pointer to limbs. This may be \c NULL if \c n is 0.
private_s
signed short MBEDTLS_PRIVATE
Sign: -1 if the mpi is negative, 1 otherwise. The number 0 must be represented with `s = +1`. Although many library functions treat all-limbs-zero as equivalent to a valid representation of 0 regardless of the sign bit, there are exceptions, so bignum functions and external callers must always set \c s to +1 for the number zero. Note that this implies that calloc() or `... = {0}` does not create a valid MPI representation. You must call mbedtls_mpi_init().
private_n
unsigned short MBEDTLS_PRIVATE
Total number of limbs in \c p.
Pointer to limbs. This may be \c NULL if \c n is 0.
signed short MBEDTLS_PRIVATE(
Sign: -1 if the mpi is negative, 1 otherwise. The number 0 must be represented with `s = +1`. Although many library functions treat all-limbs-zero as equivalent to a valid representation of 0 regardless of the sign bit, there are exceptions, so bignum functions and external callers must always set \c s to +1 for the number zero. Note that this implies that calloc() or `... = {0}` does not create a valid MPI representation. You must call mbedtls_mpi_init().
unsigned short MBEDTLS_PRIVATE(
Total number of limbs in \c p.

References

from 0/1 examples