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
|
Source: libapache-authcookie-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 4.0.2), dpatch
Build-Depends-Indep: perl (>= 5.8.8-1)
Maintainer: Stephen Quinney <sjq@debian.org>
Standards-Version: 3.7.2
Package: libapache-authcookie-perl
Architecture: all
Depends: perl (>= 5.8.8-1), libapache2-mod-perl2 (>= 2.0) | libapache-mod-perl (>= 1.24)
Description: Apache/mod_perl Authentication and Authorization via cookies
This package contains a Perl module, Apache::AuthCookie, which can be
used to simplify the creation of mod_perl based web sites that require
user authentication. This module is used by various Web application
frameworks written in Perl.
.
Apache::AuthCookie allows you to intercept a user's first
unauthenticated access to a protected document. The user will be
presented with a custom form where they can enter authentication
credentials. The credentials are posted to the server where AuthCookie
verifies them and returns a session key.
.
The session key is returned to the user's browser as a cookie. As a
cookie, the browser will pass the session key on every subsequent
accesses. AuthCookie will verify the session key and re-authenticate
the user.
|