vote up 1 vote down star
1

Does anybody know of ruby implementation of RSA Data Security, Inc. MD5 Message-Digest Algorithm defined at http://tools.ietf.org/html/rfc1321

I found a javascript implementation at https://developer.openx.org/fisheye/browse/openads/branches/2.0/branches/openads-2.0.11/admin/md5.js?r=16584 ... It has a function MD5 which does the encoding. Anything similar on ruby?

flag

38% accept rate

1 Answer

vote up 3 vote down

There's plenty of them here

In fact, you're likely to find one using:

require 'digest/md5'
link|flag
I checked it out, it doesn't seem to have this particular algorithm. – Sanjay Dec 15 '08 at 0:03
It very likely does have the bog-standard MD5 algorithm. What do you mean? – Alnitak Dec 15 '08 at 0:35
The algorithm is below (pasted from javascript code) function MD5(entree) ... for (i=0;i<4;i++) ka+=shl(digestBits[15-i], (i*8)); for (i=4;i<8;i++) kb+=shl(digestBits[15-i], ((i-4)*8)); ... s=hexa(kd)+hexa(kc)+hexa(kb)+hexa(ka); return s; digest/md5 does only md5 encoding. This is more complex. – Sanjay Dec 15 '08 at 0:51
That extra stuff you've found is just hex-encoding the 128-bit result of the MD5 digest. The real MD5 algorithm is found in the stuff I posted. – Alnitak Dec 15 '08 at 9:30
and BTW, that code at openx.org is broken - it's only good for 7-bit ASCII, so if your text contains byte values < 32 || > 127 it'll produce non-conformant digests. – Alnitak Dec 15 '08 at 9:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.