pub fn is_buffer_equal_32(buf_1: &[u8], buf_2: &[u8]) -> boolExpand description
Tests two 32-byte buffers for equality
This function efficiently compares two 32-byte buffers by reading them as little-endian 64-bit integers. It’s optimized for performance and avoids byte-by-byte comparison.
§Arguments
buf_1- The first 32-byte buffer to comparebuf_2- The second 32-byte buffer to compare
§Returns
true if the buffers are equal, false otherwise