mbedtls_ct_mpi_uint_cond_assign() function
Conditionally assign a value without branches. This is equivalent to `if ( condition ) dest = src`, but is likely to be compiled to code using bitwise operation rather than a branch.
Arguments
n
\p dest and \p src must be arrays of limbs of size n.
dest
The MPI to conditionally assign to. This must point to an initialized MPI.
src
The MPI to be assigned from. This must point to an initialized MPI.
condition
Condition to test, must be 0 or 1.