mpi_mul_hlp() function
Helper for mbedtls_mpi multiplication. Add \p b * \p s to \p d.
Arguments
i
The number of limbs of \p s.
s
A bignum to multiply, of size \p i. It may overlap with \p d, but only if \p d <= \p s. Its leading limb must not be \c 0.
d
The bignum to add to. It must be sufficiently large to store the result of the multiplication. This means \p i + 1 limbs if \p d[\p i - 1] started as 0 and \p b is not known a priori.