Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Base-36 representation of Digest

I would like to be able to take an arbitrary string, run it through a hashing function (like MD5), and then interpret the resulting digest in base-36.

I know there already exists a Digest library in Ruby, but as far as I can tell I can't get at the raw bytes of a digest; the to_s function is mapped to hexdigest, which is, of course, base-16.

like image 718
Shaggy Frog Avatar asked Mar 23 '11 23:03

Shaggy Frog


2 Answers

Fixnum#to_s accepts a base as the argument. So does string#to_i. Because of this, you can convert from the base-16 string to an int, then to base 36 string:

i = hexstring.to_i(16)
base_36 = i.to_s(36)
like image 128
Sammy Larbi Avatar answered Sep 21 '22 09:09

Sammy Larbi


You can access the raw digest bytes using Digest::Class#digest:

Digest::SHA1.digest("test")
# => "\xA9J\x8F\xE5\xCC\xB1\x9B\xA6\x1CL\bs\xD3\x91\xE9\x87\x98/\xBB\xD3"

Unfortunately from that point I'm not sure how to get it into base36 without first going via another number base like in Sammy Larbi's answer..

bytes = Digest::SHA1.digest("test")
Digest.hexencode(bytes).to_i(16).to_s(36)

Hopefully you can find a better way to go from raw bytes to base36.

like image 37
Paul Annesley Avatar answered Sep 19 '22 09:09

Paul Annesley