1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00

This is the base class for a system of objects that encapsulate

passphrases.  An object of this type is a passphrase recogniser: its
job is to recognise whether an offered passphrase is the right one.
For security, such passphrase recognisers usually do not themselves
know the passphrase they are looking for; they can merely recognise it
when they see it.  There are many schemes in use to achieve this
effect, and the intent of this class is to provide a consistent
interface to them all, hiding the details.

The CPAN package Authen::Passphrase contains implementations of
several specific passphrase schemes in addition to the base class.

WWW: http://search.cpan.org/dist/Authen-Passphrase/

Approved by:	erwin (mentor)
This commit is contained in:
Henrik Brix Andersen 2008-06-01 21:01:12 +00:00
parent dd297c8112
commit 5027b59c5e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=214156
5 changed files with 97 additions and 0 deletions

View File

@ -335,6 +335,7 @@
SUBDIR += p5-Authen-NTLM
SUBDIR += p5-Authen-PAAS
SUBDIR += p5-Authen-PAM
SUBDIR += p5-Authen-Passphrase
SUBDIR += p5-Authen-PluggableCaptcha
SUBDIR += p5-Authen-Radius
SUBDIR += p5-Authen-SASL

View File

@ -0,0 +1,56 @@
# New ports collection makefile for: Authen-Passphrase
# Date created: 01 Jun 2008
# Whom: brix@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= Authen-Passphrase
PORTVERSION= 0.005
CATEGORIES= security perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= brix@FreeBSD.org
COMMENT= Perl module for handling hashed passwords/passphrases as objects
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Authen/DecHpwd.pm:${PORTSDIR}/security/p5-Authen-DecHpwd \
${SITE_PERL}/${PERL_ARCH}/Crypt/Blowfish.pm:${PORTSDIR}/security/p5-Crypt-Blowfish \
${SITE_PERL}/${PERL_ARCH}/Crypt/DES.pm:${PORTSDIR}/security/p5-Crypt-DES \
${SITE_PERL}/${PERL_ARCH}/Crypt/Eksblowfish.pm:${PORTSDIR}/security/p5-Crypt-Eksblowfish \
${SITE_PERL}/${PERL_ARCH}/Crypt/MySQL.pm:${PORTSDIR}/security/p5-Crypt-MySQL \
${SITE_PERL}/Crypt/PasswdMD5.pm:${PORTSDIR}/security/p5-Crypt-PasswdMD5 \
${SITE_PERL}/${PERL_ARCH}/Crypt/UnixCrypt_XS.pm:${PORTSDIR}/security/p5-Crypt-UnixCrypt_XS \
${SITE_PERL}/Data/Entropy/Algorithms.pm:${PORTSDIR}/security/p5-Data-Entropy \
${SITE_PERL}/Digest.pm:${PORTSDIR}/security/p5-Digest \
${SITE_PERL}/${PERL_ARCH}/Digest/MD4.pm:${PORTSDIR}/security/p5-Digest-MD4 \
${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \
${SITE_PERL}/${PERL_ARCH}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 \
${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 \
${SITE_PERL}/Module/Runtime.pm:${PORTSDIR}/devel/p5-Module-Runtime \
${SITE_PERL}/Params/Classify.pm:${PORTSDIR}/devel/p5-Params-Classify
RUN_DEPENDS= ${BUILD_DEPENDS}
PERL_CONFIGURE= yes
MAN3= Authen::Passphrase.3 \
Authen::Passphrase::AcceptAll.3 \
Authen::Passphrase::BigCrypt.3 \
Authen::Passphrase::BlowfishCrypt.3 \
Authen::Passphrase::Clear.3 \
Authen::Passphrase::Crypt16.3 \
Authen::Passphrase::DESCrypt.3 \
Authen::Passphrase::EggdropBlowfish.3 \
Authen::Passphrase::LANManager.3 \
Authen::Passphrase::LANManagerHalf.3 \
Authen::Passphrase::MD5Crypt.3 \
Authen::Passphrase::MySQL323.3 \
Authen::Passphrase::MySQL41.3 \
Authen::Passphrase::NTHash.3 \
Authen::Passphrase::NetscapeMail.3 \
Authen::Passphrase::PHPass.3 \
Authen::Passphrase::RejectAll.3 \
Authen::Passphrase::SaltedDigest.3 \
Authen::Passphrase::VMSPurdy.3
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (Authen-Passphrase-0.005.tar.gz) = c1838c1bd51025db1440c377a93b54e8
SHA256 (Authen-Passphrase-0.005.tar.gz) = 1f010683b6ed6658dff2574d9f9cda1b4c0b77bdabd57ff6fa5cbc2853dca4ef
SIZE (Authen-Passphrase-0.005.tar.gz) = 40023

View File

@ -0,0 +1,13 @@
This is the base class for a system of objects that encapsulate
passphrases. An object of this type is a passphrase recogniser: its
job is to recognise whether an offered passphrase is the right one.
For security, such passphrase recognisers usually do not themselves
know the passphrase they are looking for; they can merely recognise it
when they see it. There are many schemes in use to achieve this
effect, and the intent of this class is to provide a consistent
interface to them all, hiding the details.
The CPAN package Authen::Passphrase contains implementations of
several specific passphrase schemes in addition to the base class.
WWW: http://search.cpan.org/dist/Authen-Passphrase/

View File

@ -0,0 +1,24 @@
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Authen/Passphrase/.packlist
%%SITE_PERL%%/Authen/Passphrase.pm
%%SITE_PERL%%/Authen/Passphrase/AcceptAll.pm
%%SITE_PERL%%/Authen/Passphrase/BigCrypt.pm
%%SITE_PERL%%/Authen/Passphrase/BlowfishCrypt.pm
%%SITE_PERL%%/Authen/Passphrase/Clear.pm
%%SITE_PERL%%/Authen/Passphrase/Crypt16.pm
%%SITE_PERL%%/Authen/Passphrase/DESCrypt.pm
%%SITE_PERL%%/Authen/Passphrase/EggdropBlowfish.pm
%%SITE_PERL%%/Authen/Passphrase/LANManager.pm
%%SITE_PERL%%/Authen/Passphrase/LANManagerHalf.pm
%%SITE_PERL%%/Authen/Passphrase/MD5Crypt.pm
%%SITE_PERL%%/Authen/Passphrase/MySQL323.pm
%%SITE_PERL%%/Authen/Passphrase/MySQL41.pm
%%SITE_PERL%%/Authen/Passphrase/NTHash.pm
%%SITE_PERL%%/Authen/Passphrase/NetscapeMail.pm
%%SITE_PERL%%/Authen/Passphrase/PHPass.pm
%%SITE_PERL%%/Authen/Passphrase/RejectAll.pm
%%SITE_PERL%%/Authen/Passphrase/SaltedDigest.pm
%%SITE_PERL%%/Authen/Passphrase/VMSPurdy.pm
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Authen/Passphrase
@dirrm %%SITE_PERL%%/Authen/Passphrase
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Authen
@dirrmtry %%SITE_PERL%%/Authen