How calculate md4 hash?

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

:frowning:

路路路

--

here are more things in heaven and earth,

horatio, than are dreamt of in your philosophy.

Hi,

dave <dave.m@email.it> writes:

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

路路路

--
eban

% 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.