Authen::Users 0.02 released

From: Bill (wherrera_at_lynxview.com)
Date: 02/07/04


Date: Sat, 7 Feb 2004 15:29:34 GMT

Authen::Users, an authentication package written in Perl and using
SQLite or MySQL, has been uploaded to CPAN.

NAME

Authen::Users

DESCRIPTION

General password authentication using DBI-capable databases. Currently
supports
MySQL and SQLite databases.

Default is to use a SQLite database to store and access user information.

This module is not an authentication protocol. For that see something
such as Authen::AuthenDBI.

SYNOPSIS

use Authen::Users qw(:SQLite);

my $authen = new Athen::Users(dbtype => 'SQLite', dbname => 'mydbname');

my $a_ok = $authen->authenticate($group, $user, $password);

my $result = $authen->add_user(
     $group, $user, $password, $fullname, $email, $question, $answer);


Quantcast