Skip to content

Instantly share code, notes, and snippets.

@dx7
Created May 13, 2021 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dx7/db894276c13f62d961457cd00a2dd5ef to your computer and use it in GitHub Desktop.
Save dx7/db894276c13f62d961457cd00a2dd5ef to your computer and use it in GitHub Desktop.
module Base16
def self.strict_encode16(s)
s.unpack1('H*')
end
def self.strict_decode16(s)
[s].pack('H*')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment