mpi_sub_hlp() function
Helper for mbedtls_mpi subtraction. Calculate l - r where l and r have the same size. This function operates modulo (2^ciL)^n and returns the carry (1 if there was a wraparound, i.e. if `l < r`, and 0 otherwise). d may be aliased to l or r.
Arguments
n
Number of limbs of \p d, \p l and \p r.
d
The result of the subtraction.
Return value
1 if `l < r`. 0 if `l >= r`.