pub fn is_equal(a: &[u8], b: &[u8]) -> bool
Check if two slices are equal, this is equivalent to a == b and is only exposed here as a replacement for parity-crypto version which uses constant time compare from ring.
a == b
parity-crypto
ring