Do you mean installing the module failed due to failing tests?

If so, try:

$ cpan cpan> force install Digest::MD5::Reverse

This will install it regardless of failed tests. Then, read its documentation and post again if you need help.

Update: there's nothing to it, you just pass an MD5 hash represented with ASCII characters ('A5F218'... instead of "\xa5\xf2\x18") to the reverse_md5() function. A simple script that lets you pass hashes from the command line:

use strict; use warnings; use Digest::MD5::Reverse; die "Usage: $0 <md5 hash in ascii>\n" unless @ARGV; my $md5 = shift; my $plaintext = reverse_md5($md5); print( defined $plaintext ? "$md5\t$plaintext" : "NOTFOUND", "\n" );

The scary thing is I recognized the hash in the docs as being the hash of the string 'foo' without passing it to reverse_md5()... :|


I'm getting sick of my 3 line sig...

In reply to Re: Reverse MD5 by missingthepoint
in thread Reverse MD5 by raj_monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.