module RbNaCl::KeyComparator

def compare32(other)

def compare32(other)
  if Util.verify32(to_bytes, other)
    0
  elsif to_bytes > other
    1
  else
    -1
  end
end