Description
The foundation of ConditionallySelectable
is bitwise masking of values + XOR, using the input Choice
to generate a conditional mask, such that the mask erases one of the two values from the XOR output:
https://github.com/dalek-cryptography/subtle/blob/b4b070c/src/lib.rs#L477-L503
This seems fine for now (and is the best thing possible in a portable implementation), but may have issues with future LLVM versions which are able to deduce how to rewrite such code with a branch.
CPUs provide predication intrinsics such as x86's conditional move (a.k.a. CMOV) family of instructions. Intel has guaranteed that the CMOV family operates in constant time on all extant Intel CPUs. ARM provides conditional select (a.k.a. CSEL) instructions which perform a similar function.
Within the @RustCrypto project, we've made a cmov
crate which provides a portable abstraction for this based on the now stable inline assembly support added to Rust 1.59: https://github.com/RustCrypto/utils/tree/master/cmov
...however its implementation is simple and could be copied into subtle
to avoid a dependency.