mbedtls_ct_uchar_in_range_if() function
Constant-flow char selection
Syntax
static inline unsigned char mbedtls_ct_uchar_in_range_if(unsigned char low,
unsigned char high,
unsigned char c,
unsigned char t);
Arguments
low
Secret. Bottom of range
c
Secret. Value to compare to range
t
Secret. Value to return, if in range
Return value
\p t if \p low <= \p c <= \p high, 0 otherwise.