• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

inc/Module/H19-Apr-2012-2,0471,530

lib/Authen/H19-Apr-2012-963347

t/H19-Apr-2012-309214

xt/H19-Apr-2012-148

ChangesH A D19-Apr-2012497 2014

MANIFESTH A D19-Apr-2012629 3231

META.ymlH A D19-Apr-2012744 3534

Makefile.PLH A D19-Apr-2012740 2216

READMEH A D19-Apr-20121.3 KiB6841

README

1NAME
2    Authen::Simple - Simple Authentication
3
4SYNOPSIS
5        use Authen::Simple;
6        use Authen::Simple::Kerberos;
7        use Authen::Simple::SMB;
8
9        my $simple = Authen::Simple->new(
10            Authen::Simple::Kerberos->new( realm => 'REALM.COMPANY.COM' ),
11            Authen::Simple::SMB->new( domain => 'DOMAIN', pdc => 'PDC' )
12        );
13
14        if ( $simple->authenticate( $username, $password ) ) {
15            # successfull authentication
16        }
17
18DESCRIPTION
19    Simple and consistent framework for authentication.
20
21METHODS
22    *   new
23
24        This method takes an array of "Authen::Simple" adapters. Required.
25
26    *   authenticate( $username, $password )
27
28        Returns true on success and false on failure.
29
30SEE ALSO
31    Authen::Simple::ActiveDirectory.
32
33    Authen::Simple::CDBI.
34
35    Authen::Simple::DBI.
36
37    Authen::Simple::FTP.
38
39    Authen::Simple::HTTP.
40
41    Authen::Simple::Kerberos.
42
43    Authen::Simple::LDAP.
44
45    Authen::Simple::NIS.
46
47    Authen::Simple::PAM.
48
49    Authen::Simple::Passwd.
50
51    Authen::Simple::POP3.
52
53    Authen::Simple::RADIUS.
54
55    Authen::Simple::SMB.
56
57    Authen::Simple::SMTP.
58
59    Authen::Simple::SSH.
60
61AUTHOR
62    Christian Hansen "chansen@cpan.org"
63
64COPYRIGHT
65    This program is free software, you can redistribute it and/or modify it
66    under the same terms as Perl itself.
67
68