diff options
author | erwin <erwin@FreeBSD.org> | 2005-12-18 05:45:20 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2005-12-18 05:45:20 +0800 |
commit | 9bf2ca4b7fa8482c801f0bc67ea585b357da6b2f (patch) | |
tree | 8fd5a7acf9ac1f76ed285313fabad3b05eaf521d /security | |
parent | 8fc0f22ab06eecadca5e5f1049b5e246328ba411 (diff) | |
download | freebsd-ports-gnome-9bf2ca4b7fa8482c801f0bc67ea585b357da6b2f.tar.gz freebsd-ports-gnome-9bf2ca4b7fa8482c801f0bc67ea585b357da6b2f.tar.zst freebsd-ports-gnome-9bf2ca4b7fa8482c801f0bc67ea585b357da6b2f.zip |
MD5 sums (see RFC 1321 - The MD5 Message-Digest Algorithm) are used as a
one-way hash of data. Due to the nature of the formula used, it is impossible
to reverse it.
This module provides functions to search several online MD5 hashes database and
return the results (or return undefined if no match found).
WWW: http://search.cpan.org/dist/Digest-MD5-Reverse
PR: ports/90576
Submitted by: Gabor Kovesdan
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/p5-Digest-MD5-Reverse/Makefile | 24 | ||||
-rw-r--r-- | security/p5-Digest-MD5-Reverse/distinfo | 3 | ||||
-rw-r--r-- | security/p5-Digest-MD5-Reverse/pkg-descr | 7 | ||||
-rw-r--r-- | security/p5-Digest-MD5-Reverse/pkg-plist | 7 |
5 files changed, 42 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 7e85c974ca8a..0cea1c273e96 100644 --- a/security/Makefile +++ b/security/Makefile @@ -347,6 +347,7 @@ SUBDIR += p5-Digest-MD5 SUBDIR += p5-Digest-MD5-File SUBDIR += p5-Digest-MD5-M4p + SUBDIR += p5-Digest-MD5-Reverse SUBDIR += p5-Digest-Nilsimsa SUBDIR += p5-Digest-SHA SUBDIR += p5-Digest-SHA1 diff --git a/security/p5-Digest-MD5-Reverse/Makefile b/security/p5-Digest-MD5-Reverse/Makefile new file mode 100644 index 000000000000..3867322ec252 --- /dev/null +++ b/security/p5-Digest-MD5-Reverse/Makefile @@ -0,0 +1,24 @@ +# Ports collection Makefile for: p5-Digest-MD5-Reverse +# Date created: 17 Dec 2005 +# Whom: Gabor Kovesdan +# $FreeBSD$ + +PORTNAME= Digest-MD5-Reverse +PORTVERSION= 1.0 +CATEGORIES= security perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Digest +PKGNAMEPREFIX= p5- + +MAINTAINER= gkovesdan@t-hosting.hu +COMMENT= Perl extension that looks for MD5 hashes in several databases + +PERL_CONFIGURE= yes + +MAN3= Digest::MD5::Reverse.3 + +.include <bsd.port.pre.mk> +.if ${PERL_LEVEL} <= 500503 +IGNORE= requires Perl 5.6. Intall lang/perl5 or lang/perl5.8, and try again +.endif +.include <bsd.port.post.mk> diff --git a/security/p5-Digest-MD5-Reverse/distinfo b/security/p5-Digest-MD5-Reverse/distinfo new file mode 100644 index 000000000000..6ce46c86712c --- /dev/null +++ b/security/p5-Digest-MD5-Reverse/distinfo @@ -0,0 +1,3 @@ +MD5 (Digest-MD5-Reverse-1.0.tar.gz) = 58e37a698f5ba8beeb6f7f8978f6685e +SHA256 (Digest-MD5-Reverse-1.0.tar.gz) = 3e350768648d348f963bdff7a08afc3bc23fb33fb04e19149cbfd950ed7ac6c9 +SIZE (Digest-MD5-Reverse-1.0.tar.gz) = 2969 diff --git a/security/p5-Digest-MD5-Reverse/pkg-descr b/security/p5-Digest-MD5-Reverse/pkg-descr new file mode 100644 index 000000000000..c25c3554c74e --- /dev/null +++ b/security/p5-Digest-MD5-Reverse/pkg-descr @@ -0,0 +1,7 @@ +MD5 sums (see RFC 1321 - The MD5 Message-Digest Algorithm) are used as a +one-way hash of data. Due to the nature of the formula used, it is impossible +to reverse it. +This module provides functions to search several online MD5 hashes database and +return the results (or return undefined if no match found). + +WWW: http://search.cpan.org/dist/Digest-MD5-Reverse diff --git a/security/p5-Digest-MD5-Reverse/pkg-plist b/security/p5-Digest-MD5-Reverse/pkg-plist new file mode 100644 index 000000000000..09db6ffa52f4 --- /dev/null +++ b/security/p5-Digest-MD5-Reverse/pkg-plist @@ -0,0 +1,7 @@ +%%SITE_PERL%%/Digest/MD5/Reverse.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Digest/MD5/Reverse/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Digest/MD5/Reverse/ +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Digest/MD5 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Digest/ 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Digest/MD5 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Digest/ 2>/dev/null || true |