pub fn ct_is_zero(data: &[u8]) -> bool
Constant-time check whether every byte in data is zero.
data
Returns true only if all bytes are 0x00. The runtime is proportional to data.len(), regardless of the actual content.
true
0x00
data.len()