Module: Wampproto::Auth::Helpers::ClassMethods
- Defined in:
- lib/wampproto/auth/helpers.rb
Overview
class methods
Instance Method Summary collapse
Instance Method Details
#binary_to_hex(binary_string) ⇒ Object
19 20 21 |
# File 'lib/wampproto/auth/helpers.rb', line 19 def binary_to_hex(binary_string) binary_string.unpack1("H*") end |
#hex_to_binary(hex_string) ⇒ Object
15 16 17 |
# File 'lib/wampproto/auth/helpers.rb', line 15 def hex_to_binary(hex_string) [hex_string].pack("H*") end |