--- /dev/null
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'Apache2::Authen::Passphrase',
+ VERSION_FROM => 'lib/Apache2/Authen/Passphrase.pm',
+ ABSTRACT_FROM => 'lib/Apache2/Authen/Passphrase.pm',
+ AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
+ MIN_PERL_VERSION => '5.14.0',
+ LICENSE => 'perl',
+ PREREQ_PM => {
+ Apache2::RequestRec => 0,
+ Apache2::Access => 0,
+ Apache2::Const => 0,
+ Authen::Passphrase => 0,
+ Authen::Passphrase::BlowfishCrypt => 0,
+ YAML::Any => 0,
+ },
+);
--- /dev/null
+Apache2-Authen-Passphrase version 0.001
+=======================================
+
+Apache2::Authen::Passphrase is a perl module which provides easy-to-use Apache2 authentication. It exports some utility functions and it contains a PerlAuthenHandler.
+
+Please read the Apache2::Authen::Passphrase POD for detailed information.
+
+INSTALLATION
+
+To install this module type the following:
+
+ perl Makefile.PL
+ make
+ make test
+ make install
+
+DEPENDENCIES
+
+This module requires these other modules and libraries:
+
+* mod_perl2
+* Authen::Passphrase
+* YAML::Any
+
+COPYRIGHT AND LICENCE
+
+Copyright (C) 2013 by Marius Gavrilescu
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself, either Perl version 5.14.2 or,
+at your option, any later version of Perl 5 you may have available.
--- /dev/null
+package Apache2::Authen::Passphrase 0.001;
+
+use 5.014000;
+use strict;
+use warnings;
+use parent qw/Exporter/;
+
+use constant +{
+ USER_REGEX => qr/^\w{2,20}$/pa,
+ PASSPHRASE_VERSION => 1,
+ INVALID_USER => "invalid-user\n",
+ BAD_PASSWORD => "bad-password\n",
+};
+
+use Apache2::RequestRec;
+use Apache2::Access;
+use Apache2::Const qw/OK HTTP_UNAUTHORIZED/;
+use Authen::Passphrase;
+use Authen::Passphrase::BlowfishCrypt;
+use YAML::Any qw/LoadFile DumpFile/;
+
+our @EXPORT_OK = qw/pwset pwcheck pwhash USER_REGEX PASSPHRASE_VERSION INVALID_USER BAD_PASSWORD/;
+
+##################################################
+
+our $rootdir;
+
+sub pwhash{
+ my ($pass)=@_;
+
+ my $ppr=Authen::Passphrase::BlowfishCrypt->new(
+ cost => 10,
+ passphrase => $pass,
+ salt_random => 1,
+ );
+
+ $ppr->as_rfc2307
+}
+
+sub pwset{
+ my ($user, $pass)=@_;
+
+ my $file = "$rootdir/us/$user.yml";
+ my $conf = eval { LoadFile $file } // undef;
+ $conf->{passphrase}=pwhash $pass;
+ $conf->{passphrase_version}=PASSPHRASE_VERSION;
+ DumpFile $file, $conf;
+
+ chmod 0660, $file;
+}
+
+sub pwcheck{
+ my ($user, $pass)=@_;
+ die INVALID_USER unless $user =~ USER_REGEX;
+ $user=${^MATCH};# Make taint shut up
+ my $conf=LoadFile "$rootdir/us/$user.yml";
+
+ die BAD_PASSWORD unless keys $conf;# Empty hash means no such user
+ die BAD_PASSWORD unless Authen::Passphrase->from_rfc2307($conf->{passphrase})->match($pass);
+ pwset $user, $pass if $conf->{passphrase_version} < PASSPHRASE_VERSION
+}
+
+sub handler{
+ my $r=shift;
+
+ my ($rc, $pass) = $r->get_basic_auth_pw;
+ return $rc unless $rc == OK;
+
+ my $user=$r->user;
+ unless (eval { pwcheck $user, $pass; 1 }) {
+ $r->note_basic_auth_failure;
+ return HTTP_UNAUTHORIZED
+ }
+
+ OK
+}
+
+1;
+__END__
+
+=head1 NAME
+
+Apache2::Authen::Passphrase - basic authentication with Authen::Passphrase
+
+=head1 SYNOPSIS
+
+ use Apache2::Authen::Passphrase qw/pwcheck pwset pwhash/;
+ my $hash = pwhash $username, $password;
+ pwset $username, "pass123";
+ eval { pwcheck $username, "pass123" };
+
+ # In Apache2 config
+ <Location /secret>
+ PerlAuthenHandler Apache2::Authen::Passphrase
+ AuthName MyAuth
+ Require valid-user
+ </Location>
+
+=head1 DESCRIPTION
+
+Apache2::Authen::Passphrase is a perl module which provides easy-to-use Apache2 authentication. It exports some utility functions and it contains a PerlAuthenHandler.
+
+=head1 FUNCTIONS
+
+=over
+
+=item B<pwhash>()
+
+Takes the password as a single argument and returns the password hash.
+
+=item B<pwset>(I<$username>, I<$password>)
+
+Sets the password of $username to $password.
+
+=item B<pwcheck>(I<$username>, I<$password>)
+
+Checks the given username and password, throwing an exception if the username is invalid or the password is incorrect.
+
+=item B<handler>
+
+The PerlAuthenHandler for use in apache2. It uses Basic Access Authentication.
+
+=item B<USER_REGEX>
+
+A regex that matches valid usernames. Usernames must be at least 2 characters, at most 20 characters, and they may only contain word characters (C<[A-Za-z0-9_]>).
+
+=item B<INVALID_USER>
+
+Exception thrown if the username does not match C<USER_REGEX>.
+
+=item B<BAD_PASSWORD>
+
+Exception thrown if the password is different from the one stored in the user's yml file.
+
+=item B<PASSPHRASE_VERSION>
+
+The version of the passphrase. It is incremented each time the passphrase hashing scheme is changed. Versions so far:
+
+=over
+
+=item Version 1 B<(current)>
+
+Uses C<Authen::Passphrase::BlowfishCrypt> with a cost factor of 10
+
+=back
+
+=back
+
+=head1 AUTHOR
+
+Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
+
+=head1 COPYRIGHT AND LICENSE
+
+Copyright (C) 2013 by Marius Gavrilescu
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself, either Perl version 5.14.2 or,
+at your option, any later version of Perl 5 you may have available.
+
+
+=cut
--- /dev/null
+use v5.14;
+use strict;
+use warnings;
+
+use File::Temp qw/tempdir/;
+use Test::More tests => 7;
+BEGIN { use_ok('Apache2::Authen::Passphrase', qw/pwset pwcheck/) };
+
+my $tempdir = tempdir CLEANUP => 1;
+mkdir "$tempdir/us";
+$Apache2::Authen::Passphrase::rootdir = $tempdir;
+
+sub pw_ok {
+ my ($user, $pass, $testname) = @_;
+ eval { pwcheck $user, $pass };
+ is $@, '', $testname;
+}
+
+sub pw_nok {
+ my ($user, $pass, $testname) = @_;
+ eval { pwcheck $user, $pass };
+ isnt $@, '', $testname;
+}
+
+pwset marius => 'password';
+pw_ok marius => 'password', 'Set password and check it';
+pw_nok marius => 'anotherpassword', 'Check an incorrect password';
+
+pwset marius => 'anotherpassword';
+pw_ok marius => 'anotherpassword', 'Change the password and check it';
+
+pw_nok 'BadUsername++', 'a', 'Bad username';
+pw_nok 'a', 'a', 'Short username';
+pw_nok 'asfwe0g3girg4ih45jho45ih45hi45h045jh4oh', 'a', 'Long username';