in reply to Re: Password Format Checking
in thread Password Format Checking

Nope, I think that Authen::Pam provides an interface to the PAM library, which is a library for providing alternative authentication (eg smart cards)
--

Zigster

Replies are listed 'Best First'.
Re: Re: Re: Password Format Checking
by TheoPetersen (Priest) on Feb 19, 2001 at 21:33 UTC
    Err, no. PAM is a layer on various forms of authentication, from Unix passwd and shadow files to distributed systems like Kerberos. Application developers like PAM because it frees applications from (most) knowledge of how authentication is done.

    Here is the FAQ for the Perl interface.

    That said, arturo's solution is probably better for Daddio's actual question, but Authen::PAM is a good choice for Perl apps that need to authentication services.