Skip to content

Instantly share code, notes, and snippets.

@genaromadrid
Created February 3, 2015 18:09
Show Gist options
  • Save genaromadrid/d303b09a0ecefa0756c4 to your computer and use it in GitHub Desktop.
Save genaromadrid/d303b09a0ecefa0756c4 to your computer and use it in GitHub Desktop.
Binary & hex conversion functions
def bin_to_hex(s)
s.scrub.unpack('H*').first
end
def hex_to_bin(s)
s.scan(/../).map { |x| x.hex }.pack('c*')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment