module RbNaCl::Util

def verify64(one, two)

Returns:
  • (Boolean) - Well, are they equal?

Parameters:
  • two (String) -- String #2
  • one (String) -- String #1
def verify64(one, two)
  return false unless two.bytesize == 64 && one.bytesize == 64
  c_verify64(one, two)
end