diff options
author | erwin <erwin@FreeBSD.org> | 2005-12-19 06:06:01 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2005-12-19 06:06:01 +0800 |
commit | 24ac34e6e75b35cbff87326b843eae6ffb7d9ee5 (patch) | |
tree | 08730b7bd0f2c88743aa27ad9c58c36804674d21 /security/p5-Crypt-Lite | |
parent | 4d29f546062f49bca09b5d6fdc2e35eef79fba6d (diff) | |
download | freebsd-ports-gnome-24ac34e6e75b35cbff87326b843eae6ffb7d9ee5.tar.gz freebsd-ports-gnome-24ac34e6e75b35cbff87326b843eae6ffb7d9ee5.tar.zst freebsd-ports-gnome-24ac34e6e75b35cbff87326b843eae6ffb7d9ee5.zip |
Sometimes it's necessary to protect some certain data against plain reading
or you intend to send information through the Internet. Another reason might
be to assure users cannot modify their previously entered data in a follow-up
step of a long Web transaction where you don't want to deal with server-side
session data. The goal of Crypt::Lite was to have a pretty simple way to
encrypt and decrypt data without the need to install and compile huge
packages with lots of dependencies.
Crypt::Lite generates every time a different encrypted hash when you
re-encrypt the same data with the same secret string. Nevertheless you
are able to make double or tripple-encryption with any data to increase
the security. Decryption works also on hashes that have been encrypted
on a foreign host (try this with an unpatched IDEA installation ;-).
WWW: http://search.cpan.org/dist/Crypt-Lite
PR: ports/90614
Submitted by: Gabor Kovesdan
Diffstat (limited to 'security/p5-Crypt-Lite')
-rw-r--r-- | security/p5-Crypt-Lite/Makefile | 24 | ||||
-rw-r--r-- | security/p5-Crypt-Lite/distinfo | 3 | ||||
-rw-r--r-- | security/p5-Crypt-Lite/pkg-descr | 14 | ||||
-rw-r--r-- | security/p5-Crypt-Lite/pkg-plist | 7 |
4 files changed, 48 insertions, 0 deletions
diff --git a/security/p5-Crypt-Lite/Makefile b/security/p5-Crypt-Lite/Makefile new file mode 100644 index 000000000000..cac66ed10c53 --- /dev/null +++ b/security/p5-Crypt-Lite/Makefile @@ -0,0 +1,24 @@ +# New ports collection Makefile for: p5-Crypt-Lite +# Date created: 18 Dec 2006 +# Whom: Gabor Kovesdan +# $FreeBSD$ + +PORTNAME= Crypt-Lite +PORTVERSION= 0.82.06 +CATEGORIES= security perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Crypt +PKGNAMEPREFIX= p5- + +MAINTAINER= gkovesdan@t-hosting.hu +COMMENT= Perl extension for a symmetric data encryption and decryption + +PERL_CONFIGURE= yes + +MAN3= Crypt::Lite.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-Crypt-Lite/distinfo b/security/p5-Crypt-Lite/distinfo new file mode 100644 index 000000000000..6a0acd449233 --- /dev/null +++ b/security/p5-Crypt-Lite/distinfo @@ -0,0 +1,3 @@ +MD5 (Crypt-Lite-0.82.06.tar.gz) = cd7e2f77ef8b257f4404614676c62186 +SHA256 (Crypt-Lite-0.82.06.tar.gz) = 5258e4c770a643d03edc4e3e9bbd3392022403f1ca432cdf35ade67cda26e07b +SIZE (Crypt-Lite-0.82.06.tar.gz) = 13181 diff --git a/security/p5-Crypt-Lite/pkg-descr b/security/p5-Crypt-Lite/pkg-descr new file mode 100644 index 000000000000..dd67af50f72d --- /dev/null +++ b/security/p5-Crypt-Lite/pkg-descr @@ -0,0 +1,14 @@ +Sometimes it's necessary to protect some certain data against plain reading +or you intend to send information through the Internet. Another reason might +be to assure users cannot modify their previously entered data in a follow-up +step of a long Web transaction where you don't want to deal with server-side +session data. The goal of Crypt::Lite was to have a pretty simple way to +encrypt and decrypt data without the need to install and compile huge +packages with lots of dependencies. +Crypt::Lite generates every time a different encrypted hash when you +re-encrypt the same data with the same secret string. Nevertheless you +are able to make double or tripple-encryption with any data to increase +the security. Decryption works also on hashes that have been encrypted +on a foreign host (try this with an unpatched IDEA installation ;-). + +WWW: http://search.cpan.org/dist/Crypt-Lite diff --git a/security/p5-Crypt-Lite/pkg-plist b/security/p5-Crypt-Lite/pkg-plist new file mode 100644 index 000000000000..6a9d69d2d300 --- /dev/null +++ b/security/p5-Crypt-Lite/pkg-plist @@ -0,0 +1,7 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/Crypt/Lite.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt/Lite/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt/Lite/Lite.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt/Lite/Lite.so +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt/Lite/ +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Crypt 2>/dev/null || true |