mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-09 03:15:40 +00:00
Clarify comments of mpi_mul_int()
This commit is contained in:
parent
a1caf6e1e8
commit
7ab2d5daf5
|
@ -506,8 +506,9 @@ int mpi_mul_mpi( mpi *X, const mpi *A, const mpi *B );
|
|||
|
||||
/**
|
||||
* \brief Baseline multiplication: X = A * b
|
||||
* Note: b is an unsigned integer type, thus
|
||||
* Negative values of b are ignored.
|
||||
* Note: despite the functon signature, b is treated as a
|
||||
* t_uint. Negative values of b are treated as large positive
|
||||
* values.
|
||||
*
|
||||
* \param X Destination MPI
|
||||
* \param A Left-hand MPI
|
||||
|
|
Loading…
Reference in a new issue