module BytesHelper
Public Instance Methods
bytes_to_hex( str )
click to toggle source
# File lib/bytes.rb, line 72 def bytes_to_hex( str ) Bytes.to_hex( str ); end
hex_to_bytes( hexstr )
click to toggle source
# File lib/bytes.rb, line 68 def hex_to_bytes( hexstr ) Bytes.from_hex( hexstr); end