Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ruby Implementation of RSA Data Security, Inc. MD5 Message-Digest Algorithm

Tags:

ruby

md5

rsa

Does anybody know of ruby implementation of RSA Data Security, Inc. MD5 Message-Digest Algorithm defined at https://www.rfc-editor.org/rfc/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?

like image 224
Sanjay Avatar asked Dec 14 '08 22:12

Sanjay


1 Answers

There's plenty of them here

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

require 'digest/md5'
like image 107
Alnitak Avatar answered Sep 22 '22 10:09

Alnitak