module RbNaCl::Util
def verify16!(one, two)
-
(Boolean)
- Well, are they equal?
Raises:
-
(ArgumentError)
- If the strings are not equal in length
Parameters:
-
two
(String
) -- String #2 -
one
(String
) -- String #1
def verify16!(one, two) check_length(one, 16, "First message") check_length(two, 16, "Second message") c_verify16(one, two) end