mbedtls_ct_uint_if() function
Choose between two unsigned values. Functionally equivalent to: condition ? if1 : if0.
Arguments
condition
Condition to test.
if1
Value to use if \p condition == MBEDTLS_CT_TRUE.
if0
Value to use if \p condition == MBEDTLS_CT_FALSE.
Return value
\c if1 if \p condition == MBEDTLS_CT_TRUE, otherwise \c if0.