Question

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?

Was it helpful?

Solution

There's plenty of them here

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

require 'digest/md5'
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top