2015-03-16 16:55:02 -07:00
|
|
|
package DDG::Goodie::MD4;
|
|
|
|
# ABSTRACT: Computes the MD4 cryptographic hash function
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use DDG::Goodie;
|
|
|
|
use Digest::MD4;
|
|
|
|
|
|
|
|
zci answer_type => "md4";
|
|
|
|
zci is_cached => 1;
|
|
|
|
|
|
|
|
triggers start => "md4", "md4sum";
|
|
|
|
|
|
|
|
handle remainder => sub {
|
|
|
|
return unless $_ =~ /^(?<enc>hex|base64|)\s*(?<str>.*)$/i;
|
|
|
|
|
|
|
|
my $enc = lc $+{'enc'} || 'hex';
|
|
|
|
my $str = $+{'str'} || '';
|
|
|
|
$str =~ s/^hash\s+(.*\S+)/$1/; # Remove 'hash' in queries like 'md4 hash this'
|
|
|
|
$str =~ s/^of\s+(.*\S+)/$1/; # Remove 'of' in queries like 'md4 hash of this'
|
|
|
|
$str =~ s/^\"(.+)\"$/$1/; # remove quotes (e.g. md4 "this string")
|
|
|
|
return unless $str;
|
|
|
|
|
|
|
|
my $func_name = 'Digest::MD4::md4_' . $enc;
|
|
|
|
my $func = \&$func_name;
|
|
|
|
|
|
|
|
my $out = $func->($str);
|
|
|
|
|
|
|
|
# By convention, CPAN Digest modules do not pad their Base64 output. So any
|
|
|
|
# necessary padding will be implemented here
|
|
|
|
if ($enc eq 'base64'){
|
|
|
|
while (length($out) % 4) {
|
|
|
|
$out .= '=';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-17 05:14:52 -07:00
|
|
|
return $out, structured_answer => {
|
|
|
|
data => {
|
|
|
|
title => html_enc($out),
|
|
|
|
subtitle => html_enc('MD4 ' . $enc . ' hash').": " .html_enc($str)
|
|
|
|
},
|
|
|
|
templates => {
|
|
|
|
group => 'text'
|
|
|
|
}
|
|
|
|
};
|
2015-03-16 16:55:02 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
1;
|