aboutsummaryrefslogtreecommitdiff
path: root/security/p5-Crypt-PBKDF2/pkg-plist
Commit message (Collapse)AuthorAgeFilesLines
* - Update to 0.150900Sunpoet Po-Chuan Hsieh2015-04-021-6/+6
| | | | | | | | | | - Remove leading definite article from COMMENT - Sort PLIST Changes: http://search.cpan.org/dist/Crypt-PBKDF2/Changes Notes: svn path=/head/; revision=383057
* Change the way Perl modules are installed, update the default Perl to 5.18.Mathieu Arnold2014-11-261-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, we had: site_perl : lib/perl5/site_perl/5.18 site_perl/perl_arch : lib/perl5/site_perl/5.18/mach perl_man3 : lib/perl5/5.18/man/man3 Now we have: site_perl : lib/perl5/site_perl site_arch : lib/perl5/site_perl/mach/5.18 perl_man3 : lib/perl5/site_perl/man/man3 Modules without any .so will be installed at the same place regardless of the Perl version, minimizing the upgrade when the major Perl version is changed. It uses a version dependent directory for modules with compiled bits. As PERL_ARCH is no longer needed in plists, it has been removed from PLIST_SUB. The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now always removed, as is perllocal.pod. The old site_perl and site_perl/arch directories have been kept in the default Perl @INC for all Perl ports, and will be phased out as these old Perl versions expire. PR: 194969 Differential Revision: https://reviews.freebsd.org/D1019 Exp-run by: antoine Reviewed by: perl@ Approved by: portmgr Notes: svn path=/head/; revision=373448
* Remove useless @dirBaptiste Daroussin2014-11-081-5/+0
| | | | Notes: svn path=/head/; revision=372334
* - Update to 0.142390Philippe Audeoud2014-11-071-5/+7
| | | | Notes: svn path=/head/; revision=372269
* Support STAGEDIR.Vanilla I. Shu2013-11-061-0/+5
| | | | Notes: svn path=/head/; revision=332949
* - only 13% of the p5- ports embed @comment $FreeBSD$:Philip M. Gollucci2010-09-241-1/+0
| | | | | | | | | so standarize and remove it With Hat: perl@ Notes: svn path=/head/; revision=261743
* PBKDF2 is a secure password hashing algorithm that uses the techniques ofMartin Wilke2010-06-071-0/+12
"key strengthening" to make the complexity of a brute-force attack arbitrarily high. PBKDF2 uses any other cryptographic hash or cipher (by convention, usually HMAC-SHA1, but Crypt::PBKDF2 is fully pluggable), and allows for an arbitrary number of iterations of the hashing function, and a nearly unlimited output hash size (up to 2**32 - 1 times the size of the output of the backend hash). The hash is salted, as any password hash should be, and the salt may also be of arbitrary size. See also: RFC2898, PKCS#5 version 2.0: http://tools.ietf.org/html/rfc2898 WWW: http://search.cpan.org/dist/Crypt-PBKDF2/ PR: ports/146847 Submitted by: Victor Popov <v.a.popov at gmail.com> Notes: svn path=/head/; revision=256005