fn timingSafeEql(comptime T: type, a: T, b: T) bool
[src]
Compares two arrays in constant time (for a given length) and returns whether they are equal. This function was designed to compare short cryptographic secrets (MACs, signatures). For all other applications, use mem.eql() instead.