how calculate md4 hash?

D

dave

i would calculate an md4 hash in ruby.
i've found 'openssl' lib, but i have not any code sample.

:(


--
here are more things in heaven and earth,
horatio, than are dreamt of in your philosophy.
 
W

WATANABE Hirofumi

Hi,

dave said:
i would calculate an md4 hash in ruby.
i've found 'openssl' lib, but i have not any code sample.

% ruby -ropenssl -e 'puts OpenSSL::Digest::MD4.hexdigest("foo")'
0ac6700c491d70fb8650940b1ca1e4b2
% echo -n foo | openssl dgst -md4
0ac6700c491d70fb8650940b1ca1e4b2
 
D

dave

% ruby -ropenssl -e 'puts OpenSSL::Digest::MD4.hexdigest("foo")'
0ac6700c491d70fb8650940b1ca1e4b2

tnx.

i needed it to calculate ed2k links from console.

---
require 'openssl'

$*.each{|f|
puts "ed2k://|file|#{File.basename(f)}|#{File.size(f)}|
#{OpenSSL::Digest::MD4.hexdigest(File.read(f))}|"
}



--
here are more things in heaven and earth,
horatio, than are dreamt of in your philosophy.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top