File: README

package info (click to toggle)
libauthen-simple-perl 0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 228 kB
  • sloc: perl: 1,816; makefile: 2
file content (67 lines) | stat: -rw-r--r-- 1,349 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
NAME
    Authen::Simple - Simple Authentication

SYNOPSIS
        use Authen::Simple;
        use Authen::Simple::Kerberos;
        use Authen::Simple::SMB;

        my $simple = Authen::Simple->new(
            Authen::Simple::Kerberos->new( realm => 'REALM.COMPANY.COM' ),
            Authen::Simple::SMB->new( domain => 'DOMAIN', pdc => 'PDC' )
        );
    
        if ( $simple->authenticate( $username, $password ) ) {
            # successfull authentication
        }

DESCRIPTION
    Simple and consistent framework for authentication.

METHODS
    *   new

        This method takes an array of "Authen::Simple" adapters. Required.

    *   authenticate( $username, $password )

        Returns true on success and false on failure.

SEE ALSO
    Authen::Simple::ActiveDirectory.

    Authen::Simple::CDBI.

    Authen::Simple::DBI.

    Authen::Simple::FTP.

    Authen::Simple::HTTP.

    Authen::Simple::Kerberos.

    Authen::Simple::LDAP.

    Authen::Simple::NIS.

    Authen::Simple::PAM.

    Authen::Simple::Passwd.

    Authen::Simple::POP3.

    Authen::Simple::RADIUS.

    Authen::Simple::SMB.

    Authen::Simple::SMTP.

    Authen::Simple::SSH.

AUTHOR
    Christian Hansen "chansen@cpan.org"

COPYRIGHT
    This program is free software, you can redistribute it and/or modify it
    under the same terms as Perl itself.