mbedtls_ct_size_bool_eq() function
Constant-flow boolean "equal" comparison: return x == y This is equivalent to \p x == \p y, but is likely to be compiled to code using bitwise operation rather than a branch.
Syntax
unsigned mbedtls_ct_size_bool_eq(size_t x,
size_t y);
Arguments
x
The first value to analyze.
y
The second value to analyze.
Return value
1 if \p x equals to \p y, otherwise 0.