pub fn constant_time_eq(a: &[u8], b: &[u8]) -> bool
恒定时间字节切片比较
遍历所有字节,使用 XOR + OR 累积差异位, 不进行提前返回。
a
b
bool